diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2022-01-11 12:35:47 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2022-01-11 12:35:47 +0100 |
commit | 19985dbb8c0aa66dc4bf7905abc1148de909097d (patch) | |
tree | 2cd5a5d20d7e80fc2a51adf60d838d8a2c40999e /utils | |
download | 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.gz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.bz2 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.lz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.xz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.zst 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.zip |
Diffstat (limited to 'utils')
33 files changed, 33991 insertions, 0 deletions
diff --git a/utils/.htaccess b/utils/.htaccess new file mode 100644 index 0000000..b0e37d7 --- /dev/null +++ b/utils/.htaccess @@ -0,0 +1 @@ +RewriteEngine Off
\ No newline at end of file diff --git a/utils/1kaCron/class.CronJobs.php b/utils/1kaCron/class.CronJobs.php new file mode 100644 index 0000000..4ae6444 --- /dev/null +++ b/utils/1kaCron/class.CronJobs.php @@ -0,0 +1,283 @@ +<?php
+
+/**
+*
+* Class, ki skrbi za vse cronjobe, ki se izvajajo na anketah
+*
+*/
+
+
+class CronJobs {
+
+
+ function __construct () {
+
+ }
+
+
+ /**
+ * izvede ustrezno akcijo
+ *
+ */
+ public function executeAction($action = '') {
+
+ // Izvedemo ustrezno akcijo
+ if(method_exists('CronJobs', $action) && $action != '')
+ $this->$action();
+ else
+ echo 'Method '.$action.' does not exist!';
+ }
+
+
+ // Brisanje pobrisanih anket (anekte, ki so bile pobrisane pred vec kot 1 mesecem)
+ private function surveyDeleteFromDB(){
+
+ // Loop po pobrisanih anketah, ki so bile nazadnje urejane vec kot 1 mesec nazaj
+ $sql = sisplet_query("SELECT * FROM srv_anketa WHERE active='-1' AND edit_time < NOW() - INTERVAL 1 MONTH");
+ if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
+
+ $s = new SurveyAdmin();
+
+ while ($row = mysqli_fetch_array($sql)) {
+ $s->anketa_delete_from_db($row['id']);
+ }
+ }
+
+
+ // Brisanje pobrisanih podatkov anket (podatki, ki so bili pobrisani pred vec kot 3 meseci)
+ private function userDeleteFromDB(){
+
+ $sql = sisplet_query("DELETE FROM srv_user WHERE deleted='1' AND time_edit < NOW() - INTERVAL 3 MONTH");
+ if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
+ }
+
+ // Brisanje podatkov za "ping test" (pingdom) anketo (da ne polni baze brez potrebe)
+ private function userPingdomDeleteFromDB(){
+ global $mysql_database_name;
+ global $site_domain;
+
+ // Array vseh anket, ki se uporabljajo za monitoring (pingdom, uptime robot)
+ $uptime_surveys = array(
+ 'www.1ka.si' => array(
+ '142750', // cloud (www.1ka.si)
+ '10347' // cloud (www.1ka.si) - stara
+ ),
+ 'izobrazevanja.safe.si' => array(
+ '122358', // tus (virtualke)
+ '10347' // tus (virtualke) - stara
+ ),
+ 'vist.1ka.si' => array(
+ '356' // tus (vist.1ka.si)
+ ),
+ 'gov-ankete.si' => array(
+ '24' // tus (gov-ankete.si)
+ ),
+ 'tools.evoli.si' => array(
+ '73' // tus (tools.evoli.si)
+ ),
+ 'test.1ka.si' => array(
+ '6066' // nero (test.1ka.si)
+ )
+ );
+
+ // Ce imamo nastavljen streznik - za virtualke uporabimo kar izobrazevanja.safe.si
+ if(in_array($site_domain, array('www.1ka.si', 'izobrazevanja.safe.si', 'vist.1ka.si', 'tools.evoli.si', 'test.1ka.si'))){
+
+ // Loop po vseh monitoring anketah na strezniku
+ foreach($uptime_surveys[$site_domain] as $ank_id){
+
+ $sqlPingTest = sisplet_query("DELETE FROM srv_user WHERE ank_id='".$ank_id."'");
+ if (!$sqlPingTest) echo mysqli_error($GLOBALS['connect_db']);
+ }
+ }
+ }
+
+
+ // Kesiranje grafov
+ private function cacheCharts(){
+
+ // Kesriamo grafe za anketo, ki je bila urejana manj kot 10 dni nazaj - NE DELA ZARADI STATICNIH RAZREDOV
+ /*$expire_time = 20;
+
+ // loop cez vse ankete za katere urejamo cache
+ $sql = sisplet_query("SELECT id FROM srv_anketa WHERE active!='-1' AND edit_time >= NOW() - INTERVAL ".$expire_time." DAY");
+ while($row = mysqli_fetch_assoc($sql)){
+
+ echo $row['id'].':<br />';
+
+ SurveyChart::Init($row['id']);
+ SurveyChart::createCache($charts_num = 5);
+
+ if (SurveyChart::$returnChartAsHtml == false) {
+ flush();
+ ob_flush();
+ }
+
+ echo '<br /><br />';
+ }*/
+
+ // Na koncu pobrisemo vse stare grafe - ki so bili ustvarjeni vec kot 30 dni nazaj
+ SurveyChart::clearCache(30);
+ }
+
+ // Kesiranje podatkovnih datotek
+ private function cacheData(){
+ global $site_url;
+ global $site_path;
+
+ // Po novem je to preneseno sem iz admin/survey/prepareDataIncremental.php
+ ob_start();
+ session_start();
+
+
+ $SL = new SurveyLog();
+ $SL->addMessage(SurveyLog::INFO, "- - - - - - - - - - - - - - - - -");
+ $SL->addMessage(SurveyLog::INFO, "Klic masovnega generiranja - start");
+
+
+ $interval = 'INTERVAL 1 MONTH';
+
+ # polovimo ankete ki so ble spremenjene v zadnjih treh mesecih
+ $ids = array();
+ $sql = "SELECT id AS ank_id " .
+ "FROM srv_anketa " .
+ "WHERE active IN (0,1) " .
+ "AND (insert_time > DATE_SUB(NOW(), {$interval}) " .
+ " OR edit_time > DATE_SUB(NOW(), {$interval})) " .
+ "UNION " .
+ "SELECT ank_id " .
+ "FROM srv_user " .
+ "WHERE preview = '0' " .
+ "AND deleted='0' " .
+ "AND ank_id > 0 " .
+ "AND (time_insert > DATE_SUB(NOW(), {$interval}) " .
+ " OR time_edit > DATE_SUB(NOW(), {$interval}))";
+ $qry1 = sisplet_query($sql);
+ while ($row = mysqli_fetch_assoc($qry1)) {
+ $ids[] = $row['ank_id'];
+ };
+
+
+ $SL->addMessage(SurveyLog::INFO, "Klic masovnega generiranja - start");
+ $SL->addMessage(SurveyLog::INFO, $sql);
+
+ if (count($ids) > 0) {
+ $SL->addMessage(SurveyLog::INFO, "St. anket: ".(int)count($ids));
+
+ foreach ($ids AS $ank_id) {
+
+ if ($ank_id > 0) {
+
+ $SDF = SurveyDataFile::get_instance();
+ $SDF->init($ank_id);
+ $SDF->prepareFiles();
+ }
+ }
+ }
+
+ $SL->addMessage(SurveyLog::INFO, "Klic masovnega generiranja - stop");
+ $SL->write();
+
+ ob_flush();
+ }
+
+
+ // Posiljanje obvestil o ??zakljucenih?? anketah - TODO
+ private function surveySendAlert(){
+ global $lang;
+ global $site_path;
+ global $site_url;
+ global $global_user_id;
+ global $admin_type;
+ global $mysql_database_name;
+
+
+ // Shranimo izbrano bazo
+ $oldDb = $mysql_database_name;
+
+ // Preklopimo na bazo za crontab
+ mysqli_select_db($GLOBALS['connect_db'], 'surveycrontab');
+
+ // Preberemo zapise na katere moramo poslati emaile
+ $today = date("Y-m-d");
+ $qry = sisplet_query("SELECT * FROM srv_alert WHERE send_date <= '".$today."' AND status = 0");
+ if (mysqli_num_rows($qry) > 0 ) {
+
+ while ($row = mysqli_fetch_assoc($qry)) {
+ $emails = array();
+ $emails = explode(",",$row['emails']);
+
+ // preprečimo večkratno pošiljanje na iste naslove
+ array_unique($emails);
+ $spisek = "";
+ $send_success = $send_errors = array();
+ $subject = iconv('utf-8', 'iso-8859-2', $row['subject']);
+
+ // posljemo maile, vseeno preverimo ali imamo kak zapis
+ if (count($emails)) {
+ foreach ($emails AS $email) {
+ $email = trim($email);
+ if (strlen ($email) > 1 && strpos ($spisek, $email)===false || strlen ($spisek) == 0) {
+
+ try{
+ $MA = new MailAdapter();
+
+ $MA->setMailFrom($row['MailFrom']);
+ $MA->setMailReplyTo($row['MailReply']);
+ $MA->addRecipients($email);
+
+ $resultX = $MA->sendMail(stripslashes($row['text']), $subject);
+
+ $spisek .= $email ."|";
+ }
+ catch (Exception $e){
+ }
+
+ if ($resultX) {
+ $send_success[] = $email;
+ }
+ else {
+ $send_errors[] = $email;
+ }
+ }
+ }
+
+ // popravimo zapis v crontab tabeli
+ mysqli_select_db($GLOBALS['connect_db'], 'surveycrontab');
+ $sqlUpdate = sisplet_query("UPDATE srv_alert SET status = 1, emails_success='".implode(",",$send_success)."', emails_failed='".implode(",",$send_errors)."' WHERE id = '".$row['id']."'");
+ }
+ }
+ }
+ else
+ echo 'Nothing to send';
+
+
+ // Vrnemo nazaj na staro bazo
+ mysqli_select_db($GLOBALS['connect_db'], $oldDb);
+ }
+
+ // Posljemo mail adminom, da si spremenijo geslo - TODO
+ private function adminResetPassword(){
+ global $site_url;
+ global $site_path;
+
+
+ }
+
+ // Posljemo mail metaadminom in avtorju ankete 5 let po aktivaciji, da naj pobrisejo podatke - TODO
+ private function gdprMailExpired(){
+ global $site_url;
+ global $site_path;
+
+
+ }
+
+ // Posljemo vsem MAZA aplikacijam pretecene/deaktivirane ankete
+ private function mazaCheckExpiredSurveys(){
+ $SL = new SurveyList();
+ $SL -> checkSurveyExpire();
+ }
+
+}
+
+?>
\ No newline at end of file diff --git a/utils/Docker/Dockerfile b/utils/Docker/Dockerfile new file mode 100644 index 0000000..65b2f53 --- /dev/null +++ b/utils/Docker/Dockerfile @@ -0,0 +1,35 @@ +FROM php:7.4-apache-buster
+
+# Apache packages
+RUN apt-get update -y \
+ && apt-get upgrade -y \
+ && apt-get install -y \
+ libgd-dev \
+ libfreetype6-dev \
+ libjpeg62-turbo-dev \
+ libpng-dev \
+ libxml2-dev \
+ zlib1g-dev \
+ texlive-full \
+ latex2rtf \
+ libzip-dev \
+ zip \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*
+
+# PHP configure freetype
+RUN docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
+
+# PHP modules
+RUN /usr/local/bin/docker-php-ext-install \
+ mysqli \
+ pdo \
+ pdo_mysql \
+ bcmath \
+ soap \
+ gd \
+ zip
+
+# Enable rewrite module
+RUN a2enmod rewrite
+
diff --git a/utils/Docker/Dockerfile_latest b/utils/Docker/Dockerfile_latest new file mode 100644 index 0000000..a616f52 --- /dev/null +++ b/utils/Docker/Dockerfile_latest @@ -0,0 +1,35 @@ +FROM php:7.4-apache-buster
+
+# Apache packages
+RUN apt-get update -y \
+ && apt-get upgrade -y \
+ && apt-get install -y \
+ libgd-dev \
+ libfreetype6-dev \
+ libjpeg62-turbo-dev \
+ libpng-dev \
+ libxml2-dev \
+ zlib1g-dev \
+ texlive-full \
+ latex2rtf \
+ libzip-dev \
+ zip \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*
+
+# PHP configure freetype
+RUN docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
+
+# PHP modules
+RUN /usr/local/bin/docker-php-ext-install \
+ mysqli \
+ pdo \
+ pdo_mysql \
+ bcmath \
+ soap \
+ gd \
+ zip
+
+# Enable rewrite module
+RUN a2enmod rewrite
+
diff --git a/utils/Docker/Latest/Dockerfile b/utils/Docker/Latest/Dockerfile new file mode 100644 index 0000000..8072b4a --- /dev/null +++ b/utils/Docker/Latest/Dockerfile @@ -0,0 +1,35 @@ +FROM php:7.4-apache-buster
+
+# Apache packages
+RUN apt-get update -y \
+ && apt-get upgrade -y \
+ && apt-get install -y \
+ libgd-dev \
+ libfreetype6-dev \
+ libjpeg62-turbo-dev \
+ libpng-dev \
+ libxml2-dev \
+ zlib1g-dev \
+ #texlive-full \
+ #latex2rtf \
+ libzip-dev \
+ zip \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*
+
+# PHP configure freetype
+RUN docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
+
+# PHP modules
+RUN /usr/local/bin/docker-php-ext-install \
+ mysqli \
+ pdo \
+ pdo_mysql \
+ bcmath \
+ soap \
+ gd \
+ zip
+
+# Enable rewrite module
+RUN a2enmod rewrite
+
diff --git a/utils/Docker/Latest/docker-compose.yml b/utils/Docker/Latest/docker-compose.yml new file mode 100644 index 0000000..986104a --- /dev/null +++ b/utils/Docker/Latest/docker-compose.yml @@ -0,0 +1,54 @@ +version: "3"
+
+services:
+
+ www:
+ container_name: www_1ka_latest
+ restart: always
+ build:
+ context: .
+ dockerfile: Dockerfile
+ depends_on:
+ - mysql
+ ports:
+ - "80:80"
+ volumes:
+ - ../../../:/var/www/html/
+ - ./www/config/php-7.4.ini:/usr/local/etc/php/php.ini
+ - ./www/config/php-local.ini:/usr/local/etc/php/conf.d/local.ini
+ - ./www/config/1ka.test:/etc/apache2/sites-available/1ka.test
+ - ./www/log/:/var/log/apache2/
+ networks:
+ - default
+
+ mysql:
+ container_name: mysql_1ka_latest
+ image: mysql:5.7
+ ports:
+ - "6032:3306"
+ volumes:
+ - ./sql/database:/var/lib/mysql
+ - ./sql/log:/var/log/mysql
+ - ./sql/config:/etc/mysql
+ networks:
+ - default
+ environment:
+ - MYSQL_USER=root
+ - MYSQL_ROOT_PASSWORD=1234
+ - MYSQL_PASSWORD=1234
+ - MYSQL_DATABASE=1ka
+
+ phpmyadmin:
+ container_name: phpmyadmin_1ka_latest
+ image: phpmyadmin/phpmyadmin
+ depends_on:
+ - mysql
+ ports:
+ - "8080:80"
+ environment:
+ - PMA_HOST=mysql
+ - PMA_PORT=3306
+ networks:
+ - default
+
+
\ No newline at end of file diff --git a/utils/Docker/Latest/www/config/php-8.0.ini/php.ini b/utils/Docker/Latest/www/config/php-8.0.ini/php.ini new file mode 100644 index 0000000..472a87e --- /dev/null +++ b/utils/Docker/Latest/www/config/php-8.0.ini/php.ini @@ -0,0 +1,1945 @@ +[PHP] + +;;;;;;;;;;;;;;;;;;; +; About php.ini ; +;;;;;;;;;;;;;;;;;;; +; PHP's initialization file, generally called php.ini, is responsible for +; configuring many of the aspects of PHP's behavior. + +; PHP attempts to find and load this configuration from a number of locations. +; The following is a summary of its search order: +; 1. SAPI module specific location. +; 2. The PHPRC environment variable. (As of PHP 5.2.0) +; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) +; 4. Current working directory (except CLI) +; 5. The web server's directory (for SAPI modules), or directory of PHP +; (otherwise in Windows) +; 6. The directory from the --with-config-file-path compile time option, or the +; Windows directory (usually C:\windows) +; See the PHP docs for more specific information. +; http://php.net/configuration.file + +; The syntax of the file is extremely simple. Whitespace and lines +; beginning with a semicolon are silently ignored (as you probably guessed). +; Section headers (e.g. [Foo]) are also silently ignored, even though +; they might mean something in the future. + +; Directives following the section heading [PATH=/www/mysite] only +; apply to PHP files in the /www/mysite directory. Directives +; following the section heading [HOST=www.example.com] only apply to +; PHP files served from www.example.com. Directives set in these +; special sections cannot be overridden by user-defined INI files or +; at runtime. Currently, [PATH=] and [HOST=] sections only work under +; CGI/FastCGI. +; http://php.net/ini.sections + +; Directives are specified using the following syntax: +; directive = value +; Directive names are *case sensitive* - foo=bar is different from FOO=bar. +; Directives are variables used to configure PHP or PHP extensions. +; There is no name validation. If PHP can't find an expected +; directive because it is not set or is mistyped, a default value will be used. + +; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one +; of the INI constants (On, Off, True, False, Yes, No and None) or an expression +; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a +; previously set variable or directive (e.g. ${foo}) + +; Expressions in the INI file are limited to bitwise operators and parentheses: +; | bitwise OR +; ^ bitwise XOR +; & bitwise AND +; ~ bitwise NOT +; ! boolean NOT + +; Boolean flags can be turned on using the values 1, On, True or Yes. +; They can be turned off using the values 0, Off, False or No. + +; An empty string can be denoted by simply not writing anything after the equal +; sign, or by using the None keyword: + +; foo = ; sets foo to an empty string +; foo = None ; sets foo to an empty string +; foo = "None" ; sets foo to the string 'None' + +; If you use constants in your value, and these constants belong to a +; dynamically loaded extension (either a PHP extension or a Zend extension), +; you may only use these constants *after* the line that loads the extension. + +;;;;;;;;;;;;;;;;;;; +; About this file ; +;;;;;;;;;;;;;;;;;;; +; PHP comes packaged with two INI files. One that is recommended to be used +; in production environments and one that is recommended to be used in +; development environments. + +; php.ini-production contains settings which hold security, performance and +; best practices at its core. But please be aware, these settings may break +; compatibility with older or less security conscience applications. We +; recommending using the production ini in production and testing environments. + +; php.ini-development is very similar to its production variant, except it is +; much more verbose when it comes to errors. We recommend using the +; development version only in development environments, as errors shown to +; application users can inadvertently leak otherwise secure information. + +; This is the php.ini-production INI file. + +;;;;;;;;;;;;;;;;;;; +; Quick Reference ; +;;;;;;;;;;;;;;;;;;; + +; The following are all the settings which are different in either the production +; or development versions of the INIs with respect to PHP's default behavior. +; Please see the actual settings later in the document for more details as to why +; we recommend these changes in PHP's behavior. + +; display_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; display_startup_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; error_reporting +; Default Value: E_ALL +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT + +; log_errors +; Default Value: Off +; Development Value: On +; Production Value: On + +; max_input_time +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) + +; output_buffering +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 + +; register_argc_argv +; Default Value: On +; Development Value: Off +; Production Value: Off + +; request_order +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" + +; session.gc_divisor +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 + +; session.sid_bits_per_character +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 + +; short_open_tag +; Default Value: On +; Development Value: Off +; Production Value: Off + +; variables_order +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS" + +; zend.exception_ignore_args +; Default Value: Off +; Development Value: Off +; Production Value: On + +; zend.exception_string_param_max_len +; Default Value: 15 +; Development Value: 15 +; Production Value: 0 + +;;;;;;;;;;;;;;;;;;;; +; php.ini Options ; +;;;;;;;;;;;;;;;;;;;; +; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" +;user_ini.filename = ".user.ini" + +; To disable this feature set this option to an empty value +;user_ini.filename = + +; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) +;user_ini.cache_ttl = 300 + +;;;;;;;;;;;;;;;;;;;; +; Language Options ; +;;;;;;;;;;;;;;;;;;;; + +; Enable the PHP scripting language engine under Apache. +; http://php.net/engine +engine = On + +; This directive determines whether or not PHP will recognize code between +; <? and ?> tags as PHP source which should be processed as such. It is +; generally recommended that <?php and ?> should be used and that this feature +; should be disabled, as enabling it may result in issues when generating XML +; documents, however this remains supported for backward compatibility reasons. +; Note that this directive does not control the <?= shorthand tag, which can be +; used regardless of this directive. +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://php.net/short-open-tag +short_open_tag = Off + +; The number of significant digits displayed in floating point numbers. +; http://php.net/precision +precision = 14 + +; Output buffering is a mechanism for controlling how much output data +; (excluding headers and cookies) PHP should keep internally before pushing that +; data to the client. If your application's output exceeds this setting, PHP +; will send that data in chunks of roughly the size you specify. +; Turning on this setting and managing its maximum buffer size can yield some +; interesting side-effects depending on your application and web server. +; You may be able to send headers and cookies after you've already sent output +; through print or echo. You also may see performance benefits if your server is +; emitting less packets due to buffered output versus PHP streaming the output +; as it gets it. On production servers, 4096 bytes is a good setting for performance +; reasons. +; Note: Output buffering can also be controlled via Output Buffering Control +; functions. +; Possible Values: +; On = Enabled and buffer is unlimited. (Use with caution) +; Off = Disabled +; Integer = Enables the buffer and sets its maximum size in bytes. +; Note: This directive is hardcoded to Off for the CLI SAPI +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 +; http://php.net/output-buffering +output_buffering = 4096 + +; You can redirect all of the output of your scripts to a function. For +; example, if you set output_handler to "mb_output_handler", character +; encoding will be transparently converted to the specified encoding. +; Setting any output handler automatically turns on output buffering. +; Note: People who wrote portable scripts should not depend on this ini +; directive. Instead, explicitly set the output handler using ob_start(). +; Using this ini directive may cause problems unless you know what script +; is doing. +; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" +; and you cannot use both "ob_gzhandler" and "zlib.output_compression". +; Note: output_handler must be empty if this is set 'On' !!!! +; Instead you must use zlib.output_handler. +; http://php.net/output-handler +;output_handler = + +; URL rewriter function rewrites URL on the fly by using +; output buffer. You can set target tags by this configuration. +; "form" tag is special tag. It will add hidden input tag to pass values. +; Refer to session.trans_sid_tags for usage. +; Default Value: "form=" +; Development Value: "form=" +; Production Value: "form=" +;url_rewriter.tags + +; URL rewriter will not rewrite absolute URL nor form by default. To enable +; absolute URL rewrite, allowed hosts must be defined at RUNTIME. +; Refer to session.trans_sid_hosts for more details. +; Default Value: "" +; Development Value: "" +; Production Value: "" +;url_rewriter.hosts + +; Transparent output compression using the zlib library +; Valid values for this option are 'off', 'on', or a specific buffer size +; to be used for compression (default is 4KB) +; Note: Resulting chunk size may vary due to nature of compression. PHP +; outputs chunks that are few hundreds bytes each as a result of +; compression. If you prefer a larger chunk size for better +; performance, enable output_buffering in addition. +; Note: You need to use zlib.output_handler instead of the standard +; output_handler, or otherwise the output will be corrupted. +; http://php.net/zlib.output-compression +zlib.output_compression = Off + +; http://php.net/zlib.output-compression-level +;zlib.output_compression_level = -1 + +; You cannot specify additional output handlers if zlib.output_compression +; is activated here. This setting does the same as output_handler but in +; a different order. +; http://php.net/zlib.output-handler +;zlib.output_handler = + +; Implicit flush tells PHP to tell the output layer to flush itself +; automatically after every output block. This is equivalent to calling the +; PHP function flush() after each and every call to print() or echo() and each +; and every HTML block. Turning this option on has serious performance +; implications and is generally recommended for debugging purposes only. +; http://php.net/implicit-flush +; Note: This directive is hardcoded to On for the CLI SAPI +implicit_flush = Off + +; The unserialize callback function will be called (with the undefined class' +; name as parameter), if the unserializer finds an undefined class +; which should be instantiated. A warning appears if the specified function is +; not defined, or if the function doesn't include/implement the missing class. +; So only set this entry, if you really want to implement such a +; callback-function. +unserialize_callback_func = + +; The unserialize_max_depth specifies the default depth limit for unserialized +; structures. Setting the depth limit too high may result in stack overflows +; during unserialization. The unserialize_max_depth ini setting can be +; overridden by the max_depth option on individual unserialize() calls. +; A value of 0 disables the depth limit. +;unserialize_max_depth = 4096 + +; When floats & doubles are serialized, store serialize_precision significant +; digits after the floating point. The default value ensures that when floats +; are decoded with unserialize, the data will remain the same. +; The value is also used for json_encode when encoding double values. +; If -1 is used, then dtoa mode 0 is used which automatically select the best +; precision. +serialize_precision = -1 + +; open_basedir, if set, limits all file operations to the defined directory +; and below. This directive makes most sense if used in a per-directory +; or per-virtualhost web server configuration file. +; Note: disables the realpath cache +; http://php.net/open-basedir +;open_basedir = + +; This directive allows you to disable certain functions. +; It receives a comma-delimited list of function names. +; http://php.net/disable-functions +disable_functions = + +; This directive allows you to disable certain classes. +; It receives a comma-delimited list of class names. +; http://php.net/disable-classes +disable_classes = + +; Colors for Syntax Highlighting mode. Anything that's acceptable in +; <span style="color: ???????"> would work. +; http://php.net/syntax-highlighting +;highlight.string = #DD0000 +;highlight.comment = #FF9900 +;highlight.keyword = #007700 +;highlight.default = #0000BB +;highlight.html = #000000 + +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long requests, which may end up +; being interrupted by the user or a browser timing out. PHP's default behavior +; is to disable this feature. +; http://php.net/ignore-user-abort +;ignore_user_abort = On + +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; Note: if open_basedir is set, the cache is disabled +; http://php.net/realpath-cache-size +;realpath_cache_size = 4096k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; http://php.net/realpath-cache-ttl +;realpath_cache_ttl = 120 + +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + +; If enabled, scripts may be written in encodings that are incompatible with +; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such +; encodings. To use this feature, mbstring extension must be enabled. +;zend.multibyte = Off + +; Allows to set the default encoding for the scripts. This value will be used +; unless "declare(encoding=...)" directive appears at the top of the script. +; Only affects if zend.multibyte is set. +;zend.script_encoding = + +; Allows to include or exclude arguments from stack traces generated for exceptions. +; In production, it is recommended to turn this setting on to prohibit the output +; of sensitive information in stack traces +; Default Value: Off +; Development Value: Off +; Production Value: On +zend.exception_ignore_args = On + +; Allows setting the maximum string length in an argument of a stringified stack trace +; to a value between 0 and 1000000. +; This has no effect when zend.exception_ignore_args is enabled. +; Default Value: 15 +; Development Value: 15 +; Production Value: 0 +; In production, it is recommended to set this to 0 to reduce the output +; of sensitive information in stack traces. +zend.exception_string_param_max_len = 0 + +;;;;;;;;;;;;;;;;; +; Miscellaneous ; +;;;;;;;;;;;;;;;;; + +; Decides whether PHP may expose the fact that it is installed on the server +; (e.g. by adding its signature to the Web server header). It is no security +; threat in any way, but it makes it possible to determine whether you use PHP +; on your server or not. +; http://php.net/expose-php +expose_php = On + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +; Maximum execution time of each script, in seconds +; http://php.net/max-execution-time +; Note: This directive is hardcoded to 0 for the CLI SAPI +max_execution_time = 30 + +; Maximum amount of time each script may spend parsing request data. It's a good +; idea to limit this time on productions servers in order to eliminate unexpectedly +; long running scripts. +; Note: This directive is hardcoded to -1 for the CLI SAPI +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) +; http://php.net/max-input-time +max_input_time = 60 + +; Maximum input variable nesting level +; http://php.net/max-input-nesting-level +;max_input_nesting_level = 64 + +; How many GET/POST/COOKIE input variables may be accepted +;max_input_vars = 1000 + +; Maximum amount of memory a script may consume +; http://php.net/memory-limit +memory_limit = 128M + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; This directive informs PHP of which errors, warnings and notices you would like +; it to take action for. The recommended way of setting values for this +; directive is through the use of the error level constants and bitwise +; operators. The error level constants are below here for convenience as well as +; some common settings and their meanings. +; By default, PHP is set to take action on all errors, notices and warnings EXCEPT +; those related to E_NOTICE and E_STRICT, which together cover best practices and +; recommended coding standards in PHP. For performance reasons, this is the +; recommend error reporting setting. Your production server shouldn't be wasting +; resources complaining about best practices and coding standards. That's what +; development servers and development settings are for. +; Note: The php.ini-development file has this setting as E_ALL. This +; means it pretty much reports everything which is exactly what you want during +; development and early testing. +; +; Error Level Constants: +; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0) +; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors +; E_WARNING - run-time warnings (non-fatal errors) +; E_PARSE - compile-time parse errors +; E_NOTICE - run-time notices (these are warnings which often result +; from a bug in your code, but it's possible that it was +; intentional (e.g., using an uninitialized variable and +; relying on the fact it is automatically initialized to an +; empty string) +; E_STRICT - run-time notices, enable to have PHP suggest changes +; to your code which will ensure the best interoperability +; and forward compatibility of your code +; E_CORE_ERROR - fatal errors that occur during PHP's initial startup +; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's +; initial startup +; E_COMPILE_ERROR - fatal compile-time errors +; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) +; E_USER_ERROR - user-generated error message +; E_USER_WARNING - user-generated warning message +; E_USER_NOTICE - user-generated notice message +; E_DEPRECATED - warn about code that will not work in future versions +; of PHP +; E_USER_DEPRECATED - user-generated deprecation warnings +; +; Common Values: +; E_ALL (Show all errors, warnings and notices including coding standards.) +; E_ALL & ~E_NOTICE (Show all errors, except for notices) +; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) +; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) +; Default Value: E_ALL +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT +; http://php.net/error-reporting +error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT + +; This directive controls whether or not and where PHP will output errors, +; notices and warnings too. Error output is very useful during development, but +; it could be very dangerous in production environments. Depending on the code +; which is triggering the error, sensitive information could potentially leak +; out of your application such as database usernames and passwords or worse. +; For production environments, we recommend logging errors rather than +; sending them to STDOUT. +; Possible Values: +; Off = Do not display any errors +; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) +; On or stdout = Display errors to STDOUT +; Default Value: On +; Development Value: On +; Production Value: Off +; http://php.net/display-errors +display_errors = Off + +; The display of errors which occur during PHP's startup sequence are handled +; separately from display_errors. We strongly recommend you set this to 'off' +; for production servers to avoid leaking configuration details. +; Default Value: On +; Development Value: On +; Production Value: Off +; http://php.net/display-startup-errors +display_startup_errors = Off + +; Besides displaying errors, PHP can also log errors to locations such as a +; server-specific log, STDERR, or a location specified by the error_log +; directive found below. While errors should not be displayed on productions +; servers they should still be monitored and logging is a great way to do that. +; Default Value: Off +; Development Value: On +; Production Value: On +; http://php.net/log-errors +log_errors = On + +; Set maximum length of log_errors. In error_log information about the source is +; added. The default is 1024 and 0 allows to not apply any maximum length at all. +; http://php.net/log-errors-max-len +log_errors_max_len = 1024 + +; Do not log repeated messages. Repeated errors must occur in same file on same +; line unless ignore_repeated_source is set true. +; http://php.net/ignore-repeated-errors +ignore_repeated_errors = Off + +; Ignore source of message when ignoring repeated messages. When this setting +; is On you will not log errors with repeated messages from different files or +; source lines. +; http://php.net/ignore-repeated-source +ignore_repeated_source = Off + +; If this parameter is set to Off, then memory leaks will not be shown (on +; stdout or in the log). This is only effective in a debug compile, and if +; error reporting includes E_WARNING in the allowed list +; http://php.net/report-memleaks +report_memleaks = On + +; This setting is off by default. +;report_zend_debug = 0 + +; Turn off normal error reporting and emit XML-RPC error XML +; http://php.net/xmlrpc-errors +;xmlrpc_errors = 0 + +; An XML-RPC faultCode +;xmlrpc_error_number = 0 + +; When PHP displays or logs an error, it has the capability of formatting the +; error message as HTML for easier reading. This directive controls whether +; the error message is formatted as HTML or not. +; Note: This directive is hardcoded to Off for the CLI SAPI +; http://php.net/html-errors +;html_errors = On + +; If html_errors is set to On *and* docref_root is not empty, then PHP +; produces clickable error messages that direct to a page describing the error +; or function causing the error in detail. +; You can download a copy of the PHP manual from http://php.net/docs +; and change docref_root to the base URL of your local copy including the +; leading '/'. You must also specify the file extension being used including +; the dot. PHP's default behavior is to leave these settings empty, in which +; case no links to documentation are generated. +; Note: Never use this feature for production boxes. +; http://php.net/docref-root +; Examples +;docref_root = "/phpmanual/" + +; http://php.net/docref-ext +;docref_ext = .html + +; String to output before an error message. PHP's default behavior is to leave +; this setting blank. +; http://php.net/error-prepend-string +; Example: +;error_prepend_string = "<span style='color: #ff0000'>" + +; String to output after an error message. PHP's default behavior is to leave +; this setting blank. +; http://php.net/error-append-string +; Example: +;error_append_string = "</span>" + +; Log errors to specified file. PHP's default behavior is to leave this value +; empty. +; http://php.net/error-log +; Example: +;error_log = php_errors.log +; Log errors to syslog (Event Log on Windows). +;error_log = syslog + +; The syslog ident is a string which is prepended to every message logged +; to syslog. Only used when error_log is set to syslog. +;syslog.ident = php + +; The syslog facility is used to specify what type of program is logging +; the message. Only used when error_log is set to syslog. +;syslog.facility = user + +; Set this to disable filtering control characters (the default). +; Some loggers only accept NVT-ASCII, others accept anything that's not +; control characters. If your logger accepts everything, then no filtering +; is needed at all. +; Allowed values are: +; ascii (all printable ASCII characters and NL) +; no-ctrl (all characters except control characters) +; all (all characters) +; raw (like "all", but messages are not split at newlines) +; http://php.net/syslog.filter +;syslog.filter = ascii + +;windows.show_crt_warning +; Default value: 0 +; Development value: 0 +; Production value: 0 + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; + +; The separator used in PHP generated URLs to separate arguments. +; PHP's default setting is "&". +; http://php.net/arg-separator.output +; Example: +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; PHP's default setting is "&". +; NOTE: Every character in this directive is considered as separator! +; http://php.net/arg-separator.input +; Example: +;arg_separator.input = ";&" + +; This directive determines which super global arrays are registered when PHP +; starts up. G,P,C,E & S are abbreviations for the following respective super +; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty +; paid for the registration of these arrays and because ENV is not as commonly +; used as the others, ENV is not recommended on productions servers. You +; can still get access to the environment variables through getenv() should you +; need to. +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS"; +; http://php.net/variables-order +variables_order = "GPCS" + +; This directive determines which super global data (G,P & C) should be +; registered into the super global array REQUEST. If so, it also determines +; the order in which that data is registered. The values for this directive +; are specified in the same manner as the variables_order directive, +; EXCEPT one. Leaving this value empty will cause PHP to use the value set +; in the variables_order directive. It does not mean it will leave the super +; globals array REQUEST empty. +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" +; http://php.net/request-order +request_order = "GP" + +; This directive determines whether PHP registers $argv & $argc each time it +; runs. $argv contains an array of all the arguments passed to PHP when a script +; is invoked. $argc contains an integer representing the number of arguments +; that were passed when the script was invoked. These arrays are extremely +; useful when running scripts from the command line. When this directive is +; enabled, registering these variables consumes CPU cycles and memory each time +; a script is executed. For performance reasons, this feature should be disabled +; on production servers. +; Note: This directive is hardcoded to On for the CLI SAPI +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://php.net/register-argc-argv +register_argc_argv = Off + +; When enabled, the ENV, REQUEST and SERVER variables are created when they're +; first used (Just In Time) instead of when the script starts. If these +; variables are not used within a script, having this directive on will result +; in a performance gain. The PHP directive register_argc_argv must be disabled +; for this directive to have any effect. +; http://php.net/auto-globals-jit +auto_globals_jit = On + +; Whether PHP will read the POST data. +; This option is enabled by default. +; Most likely, you won't want to disable this option globally. It causes $_POST +; and $_FILES to always be empty; the only way you will be able to read the +; POST data will be through the php://input stream wrapper. This can be useful +; to proxy requests or to process the POST data in a memory efficient fashion. +; http://php.net/enable-post-data-reading +;enable_post_data_reading = Off + +; Maximum size of POST data that PHP will accept. +; Its value may be 0 to disable the limit. It is ignored if POST data reading +; is disabled through enable_post_data_reading. +; http://php.net/post-max-size +post_max_size = 8M + +; Automatically add files before PHP document. +; http://php.net/auto-prepend-file +auto_prepend_file = + +; Automatically add files after PHP document. +; http://php.net/auto-append-file +auto_append_file = + +; By default, PHP will output a media type using the Content-Type header. To +; disable this, simply set it to be empty. +; +; PHP's built-in default media type is set to text/html. +; http://php.net/default-mimetype +default_mimetype = "text/html" + +; PHP's default character set is set to UTF-8. +; http://php.net/default-charset +default_charset = "UTF-8" + +; PHP internal character encoding is set to empty. +; If empty, default_charset is used. +; http://php.net/internal-encoding +;internal_encoding = + +; PHP input character encoding is set to empty. +; If empty, default_charset is used. +; http://php.net/input-encoding +;input_encoding = + +; PHP output character encoding is set to empty. +; If empty, default_charset is used. +; See also output_buffer. +; http://php.net/output-encoding +;output_encoding = + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +; UNIX: "/path1:/path2" +;include_path = ".:/php/includes" +; +; Windows: "\path1;\path2" +;include_path = ".;c:\php\includes" +; +; PHP's default setting for include_path is ".;/path/to/php/pear" +; http://php.net/include-path + +; The root of the PHP pages, used only if nonempty. +; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root +; if you are running php as a CGI under any web server (other than IIS) +; see documentation for security issues. The alternate is to use the +; cgi.force_redirect configuration below +; http://php.net/doc-root +doc_root = + +; The directory under which PHP opens the script using /~username used only +; if nonempty. +; http://php.net/user-dir +user_dir = + +; Directory in which the loadable extensions (modules) reside. +; http://php.net/extension-dir +;extension_dir = "./" +; On windows: +;extension_dir = "ext" + +; Directory where the temporary files should be placed. +; Defaults to the system default (see sys_get_temp_dir) +;sys_temp_dir = "/tmp" + +; Whether or not to enable the dl() function. The dl() function does NOT work +; properly in multithreaded servers, such as IIS or Zeus, and is automatically +; disabled on them. +; http://php.net/enable-dl +enable_dl = Off + +; cgi.force_redirect is necessary to provide security running PHP as a CGI under +; most web servers. Left undefined, PHP turns this on by default. You can +; turn it off here AT YOUR OWN RISK +; **You CAN safely turn this off for IIS, in fact, you MUST.** +; http://php.net/cgi.force-redirect +;cgi.force_redirect = 1 + +; if cgi.nph is enabled it will force cgi to always sent Status: 200 with +; every request. PHP's default behavior is to disable this feature. +;cgi.nph = 1 + +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; (iPlanet) web servers, you MAY need to set an environment variable name that PHP +; will look for to know it is OK to continue execution. Setting this variable MAY +; cause security issues, KNOW WHAT YOU ARE DOING FIRST. +; http://php.net/cgi.redirect-status-env +;cgi.redirect_status_env = + +; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's +; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok +; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting +; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting +; of zero causes PHP to behave as before. Default is 1. You should fix your scripts +; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. +; http://php.net/cgi.fix-pathinfo +;cgi.fix_pathinfo=1 + +; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside +; of the web tree and people will not be able to circumvent .htaccess security. +;cgi.discard_path=1 + +; FastCGI under IIS supports the ability to impersonate +; security tokens of the calling client. This allows IIS to define the +; security context that the request runs under. mod_fastcgi under Apache +; does not currently support this feature (03/17/2002) +; Set to 1 if running under IIS. Default is zero. +; http://php.net/fastcgi.impersonate +;fastcgi.impersonate = 1 + +; Disable logging through FastCGI connection. PHP's default behavior is to enable +; this feature. +;fastcgi.logging = 0 + +; cgi.rfc2616_headers configuration option tells PHP what type of headers to +; use when sending HTTP response code. If set to 0, PHP sends Status: header that +; is supported by Apache. When this option is set to 1, PHP will send +; RFC2616 compliant header. +; Default is zero. +; http://php.net/cgi.rfc2616-headers +;cgi.rfc2616_headers = 0 + +; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #! +; (shebang) at the top of the running script. This line might be needed if the +; script support running both as stand-alone script and via PHP CGI<. PHP in CGI +; mode skips this line and ignores its content if this directive is turned on. +; http://php.net/cgi.check-shebang-line +;cgi.check_shebang_line=1 + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +; Whether to allow HTTP file uploads. +; http://php.net/file-uploads +file_uploads = On + +; Temporary directory for HTTP uploaded files (will use system default if not +; specified). +; http://php.net/upload-tmp-dir +;upload_tmp_dir = + +; Maximum allowed size for uploaded files. +; http://php.net/upload-max-filesize +upload_max_filesize = 2M + +; Maximum number of files that can be uploaded via a single request +max_file_uploads = 20 + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +; http://php.net/allow-url-fopen +allow_url_fopen = On + +; Whether to allow include/require to open URLs (like http:// or ftp://) as files. +; http://php.net/allow-url-include +allow_url_include = Off + +; Define the anonymous ftp password (your email address). PHP's default setting +; for this is empty. +; http://php.net/from +;from="john@doe.com" + +; Define the User-Agent string. PHP's default setting for this is empty. +; http://php.net/user-agent +;user_agent="PHP" + +; Default timeout for socket based streams (seconds) +; http://php.net/default-socket-timeout +default_socket_timeout = 60 + +; If your scripts have to deal with files from Macintosh systems, +; or you are running on a Mac and need to deal with files from +; unix or win32 systems, setting this flag will cause PHP to +; automatically detect the EOL character in those files so that +; fgets() and file() will work regardless of the source of the file. +; http://php.net/auto-detect-line-endings +;auto_detect_line_endings = Off + +;;;;;;;;;;;;;;;;;;;;;; +; Dynamic Extensions ; +;;;;;;;;;;;;;;;;;;;;;; + +; If you wish to have an extension loaded automatically, use the following +; syntax: +; +; extension=modulename +; +; For example: +; +; extension=mysqli +; +; When the extension library to load is not located in the default extension +; directory, You may specify an absolute path to the library file: +; +; extension=/path/to/extension/mysqli.so +; +; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and +; 'extension='php_<ext>.dll') is supported for legacy reasons and may be +; deprecated in a future PHP major version. So, when it is possible, please +; move to the new ('extension=<ext>) syntax. +; +; Notes for Windows environments : +; +; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+) +; extension folders as well as the separate PECL DLL download (PHP 5+). +; Be sure to appropriately set the extension_dir directive. +; +;extension=bz2 +;extension=curl +;extension=ffi +;extension=ftp +;extension=fileinfo +;extension=gd +;extension=gettext +;extension=gmp +;extension=intl +;extension=imap +;extension=ldap +;extension=mbstring +;extension=exif ; Must be after mbstring as it depends on it +;extension=mysqli +;extension=oci8_12c ; Use with Oracle Database 12c Instant Client +;extension=odbc +;extension=openssl +;extension=pdo_firebird +;extension=pdo_mysql +;extension=pdo_oci +;extension=pdo_odbc +;extension=pdo_pgsql +;extension=pdo_sqlite +;extension=pgsql +;extension=shmop + +; The MIBS data available in the PHP distribution must be installed. +; See http://www.php.net/manual/en/snmp.installation.php +;extension=snmp + +;extension=soap +;extension=sockets +;extension=sodium +;extension=sqlite3 +;extension=tidy +;extension=xsl + +;zend_extension=opcache + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[CLI Server] +; Whether the CLI web server uses ANSI color coding in its terminal output. +cli_server.color = On + +[Date] +; Defines the default timezone used by the date functions +; http://php.net/date.timezone +;date.timezone = + +; http://php.net/date.default-latitude +;date.default_latitude = 31.7667 + +; http://php.net/date.default-longitude +;date.default_longitude = 35.2333 + +; http://php.net/date.sunrise-zenith +;date.sunrise_zenith = 90.833333 + +; http://php.net/date.sunset-zenith +;date.sunset_zenith = 90.833333 + +[filter] +; http://php.net/filter.default +;filter.default = unsafe_raw + +; http://php.net/filter.default-flags +;filter.default_flags = + +[iconv] +; Use of this INI entry is deprecated, use global input_encoding instead. +; If empty, default_charset or input_encoding or iconv.input_encoding is used. +; The precedence is: default_charset < input_encoding < iconv.input_encoding +;iconv.input_encoding = + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;iconv.internal_encoding = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; If empty, default_charset or output_encoding or iconv.output_encoding is used. +; The precedence is: default_charset < output_encoding < iconv.output_encoding +; To use an output encoding conversion, iconv's output handler must be set +; otherwise output encoding conversion cannot be performed. +;iconv.output_encoding = + +[imap] +; rsh/ssh logins are disabled by default. Use this INI entry if you want to +; enable them. Note that the IMAP library does not filter mailbox names before +; passing them to rsh/ssh command, thus passing untrusted data to this function +; with rsh/ssh enabled is insecure. +;imap.enable_insecure_rsh=0 + +[intl] +;intl.default_locale = +; This directive allows you to produce PHP errors when some error +; happens within intl functions. The value is the level of the error produced. +; Default is 0, which does not produce any errors. +;intl.error_level = E_WARNING +;intl.use_exceptions = 0 + +[sqlite3] +; Directory pointing to SQLite3 extensions +; http://php.net/sqlite3.extension-dir +;sqlite3.extension_dir = + +; SQLite defensive mode flag (only available from SQLite 3.26+) +; When the defensive flag is enabled, language features that allow ordinary +; SQL to deliberately corrupt the database file are disabled. This forbids +; writing directly to the schema, shadow tables (eg. FTS data tables), or +; the sqlite_dbpage virtual table. +; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html +; (for older SQLite versions, this flag has no use) +;sqlite3.defensive = 1 + +[Pcre] +; PCRE library backtracking limit. +; http://php.net/pcre.backtrack-limit +;pcre.backtrack_limit=100000 + +; PCRE library recursion limit. +; Please note that if you set this value to a high number you may consume all +; the available process stack and eventually crash PHP (due to reaching the +; stack size limit imposed by the Operating System). +; http://php.net/pcre.recursion-limit +;pcre.recursion_limit=100000 + +; Enables or disables JIT compilation of patterns. This requires the PCRE +; library to be compiled with JIT support. +;pcre.jit=1 + +[Pdo] +; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" +; http://php.net/pdo-odbc.connection-pooling +;pdo_odbc.connection_pooling=strict + +[Pdo_mysql] +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +pdo_mysql.default_socket= + +[Phar] +; http://php.net/phar.readonly +;phar.readonly = On + +; http://php.net/phar.require-hash +;phar.require_hash = On + +;phar.cache_list = + +[mail function] +; For Win32 only. +; http://php.net/smtp +SMTP = localhost +; http://php.net/smtp-port +smtp_port = 25 + +; For Win32 only. +; http://php.net/sendmail-from +;sendmail_from = me@example.com + +; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +; http://php.net/sendmail-path +;sendmail_path = + +; Force the addition of the specified parameters to be passed as extra parameters +; to the sendmail binary. These parameters will always replace the value of +; the 5th parameter to mail(). +;mail.force_extra_parameters = + +; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename +mail.add_x_header = Off + +; The path to a log file that will log all mail() calls. Log entries include +; the full path of the script, line number, To address and headers. +;mail.log = +; Log mail to syslog (Event Log on Windows). +;mail.log = syslog + +[ODBC] +; http://php.net/odbc.default-db +;odbc.default_db = Not yet implemented + +; http://php.net/odbc.default-user +;odbc.default_user = Not yet implemented + +; http://php.net/odbc.default-pw +;odbc.default_pw = Not yet implemented + +; Controls the ODBC cursor model. +; Default: SQL_CURSOR_STATIC (default). +;odbc.default_cursortype + +; Allow or prevent persistent links. +; http://php.net/odbc.allow-persistent +odbc.allow_persistent = On + +; Check that a connection is still valid before reuse. +; http://php.net/odbc.check-persistent +odbc.check_persistent = On + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/odbc.max-persistent +odbc.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +; http://php.net/odbc.max-links +odbc.max_links = -1 + +; Handling of LONG fields. Returns number of bytes to variables. 0 means +; passthru. +; http://php.net/odbc.defaultlrl +odbc.defaultlrl = 4096 + +; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. +; See the documentation on odbc_binmode and odbc_longreadlen for an explanation +; of odbc.defaultlrl and odbc.defaultbinmode +; http://php.net/odbc.defaultbinmode +odbc.defaultbinmode = 1 + +[MySQLi] + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/mysqli.max-persistent +mysqli.max_persistent = -1 + +; Allow accessing, from PHP's perspective, local files with LOAD DATA statements +; http://php.net/mysqli.allow_local_infile +;mysqli.allow_local_infile = On + +; Allow or prevent persistent links. +; http://php.net/mysqli.allow-persistent +mysqli.allow_persistent = On + +; Maximum number of links. -1 means no limit. +; http://php.net/mysqli.max-links +mysqli.max_links = -1 + +; Default port number for mysqli_connect(). If unset, mysqli_connect() will use +; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the +; compile-time value defined MYSQL_PORT (in that order). Win32 will only look +; at MYSQL_PORT. +; http://php.net/mysqli.default-port +mysqli.default_port = 3306 + +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +; http://php.net/mysqli.default-socket +mysqli.default_socket = + +; Default host for mysqli_connect() (doesn't apply in safe mode). +; http://php.net/mysqli.default-host +mysqli.default_host = + +; Default user for mysqli_connect() (doesn't apply in safe mode). +; http://php.net/mysqli.default-user +mysqli.default_user = + +; Default password for mysqli_connect() (doesn't apply in safe mode). +; Note that this is generally a *bad* idea to store passwords in this file. +; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") +; and reveal this password! And of course, any users with read access to this +; file will be able to reveal the password as well. +; http://php.net/mysqli.default-pw +mysqli.default_pw = + +; Allow or prevent reconnect +mysqli.reconnect = Off + +[mysqlnd] +; Enable / Disable collection of general statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_statistics = On + +; Enable / Disable collection of memory usage statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_memory_statistics = Off + +; Records communication from all extensions using mysqlnd to the specified log +; file. +; http://php.net/mysqlnd.debug +;mysqlnd.debug = + +; Defines which queries will be logged. +;mysqlnd.log_mask = 0 + +; Default size of the mysqlnd memory pool, which is used by result sets. +;mysqlnd.mempool_default_size = 16000 + +; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. +;mysqlnd.net_cmd_buffer_size = 2048 + +; Size of a pre-allocated buffer used for reading data sent by the server in +; bytes. +;mysqlnd.net_read_buffer_size = 32768 + +; Timeout for network requests in seconds. +;mysqlnd.net_read_timeout = 31536000 + +; SHA-256 Authentication Plugin related. File with the MySQL server public RSA +; key. +;mysqlnd.sha256_server_public_key = + +[OCI8] + +; Connection: Enables privileged connections using external +; credentials (OCI_SYSOPER, OCI_SYSDBA) +; http://php.net/oci8.privileged-connect +;oci8.privileged_connect = Off + +; Connection: The maximum number of persistent OCI8 connections per +; process. Using -1 means no limit. +; http://php.net/oci8.max-persistent +;oci8.max_persistent = -1 + +; Connection: The maximum number of seconds a process is allowed to +; maintain an idle persistent connection. Using -1 means idle +; persistent connections will be maintained forever. +; http://php.net/oci8.persistent-timeout +;oci8.persistent_timeout = -1 + +; Connection: The number of seconds that must pass before issuing a +; ping during oci_pconnect() to check the connection validity. When +; set to 0, each oci_pconnect() will cause a ping. Using -1 disables +; pings completely. +; http://php.net/oci8.ping-interval +;oci8.ping_interval = 60 + +; Connection: Set this to a user chosen connection class to be used +; for all pooled server requests with Oracle 11g Database Resident +; Connection Pooling (DRCP). To use DRCP, this value should be set to +; the same string for all web servers running the same application, +; the database pool must be configured, and the connection string must +; specify to use a pooled server. +;oci8.connection_class = + +; High Availability: Using On lets PHP receive Fast Application +; Notification (FAN) events generated when a database node fails. The +; database must also be configured to post FAN events. +;oci8.events = Off + +; Tuning: This option enables statement caching, and specifies how +; many statements to cache. Using 0 disables statement caching. +; http://php.net/oci8.statement-cache-size +;oci8.statement_cache_size = 20 + +; Tuning: Enables statement prefetching and sets the default number of +; rows that will be fetched automatically after statement execution. +; http://php.net/oci8.default-prefetch +;oci8.default_prefetch = 100 + +; Compatibility. Using On means oci_close() will not close +; oci_connect() and oci_new_connect() connections. +; http://php.net/oci8.old-oci-close-semantics +;oci8.old_oci_close_semantics = Off + +[PostgreSQL] +; Allow or prevent persistent links. +; http://php.net/pgsql.allow-persistent +pgsql.allow_persistent = On + +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. +; http://php.net/pgsql.auto-reset-persistent +pgsql.auto_reset_persistent = Off + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/pgsql.max-persistent +pgsql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +; http://php.net/pgsql.max-links +pgsql.max_links = -1 + +; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. +; http://php.net/pgsql.ignore-notice +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Notice message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +; http://php.net/pgsql.log-notice +pgsql.log_notice = 0 + +[bcmath] +; Number of decimal digits for all bcmath functions. +; http://php.net/bcmath.scale +bcmath.scale = 0 + +[browscap] +; http://php.net/browscap +;browscap = extra/browscap.ini + +[Session] +; Handler used to store/retrieve data. +; http://php.net/session.save-handler +session.save_handler = files + +; Argument passed to save_handler. In the case of files, this is the path +; where data files are stored. Note: Windows users have to change this +; variable in order to use PHP's session functions. +; +; The path can be defined as: +; +; session.save_path = "N;/path" +; +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if +; your OS has problems with many files in one directory, and is +; a more efficient layout for servers that handle many sessions. +; +; NOTE 1: PHP will not create this directory structure automatically. +; You can use the script in the ext/session dir for that purpose. +; NOTE 2: See the section on garbage collection below if you choose to +; use subdirectories for session storage +; +; The file storage module creates files using mode 600 by default. +; You can change that by using +; +; session.save_path = "N;MODE;/path" +; +; where MODE is the octal representation of the mode. Note that this +; does not overwrite the process's umask. +; http://php.net/session.save-path +;session.save_path = "/tmp" + +; Whether to use strict session mode. +; Strict session mode does not accept an uninitialized session ID, and +; regenerates the session ID if the browser sends an uninitialized session ID. +; Strict mode protects applications from session fixation via a session adoption +; vulnerability. It is disabled by default for maximum compatibility, but +; enabling it is encouraged. +; https://wiki.php.net/rfc/strict_sessions +session.use_strict_mode = 0 + +; Whether to use cookies. +; http://php.net/session.use-cookies +session.use_cookies = 1 + +; http://php.net/session.cookie-secure +;session.cookie_secure = + +; This option forces PHP to fetch and use a cookie for storing and maintaining +; the session id. We encourage this operation as it's very helpful in combating +; session hijacking when not specifying and managing your own session id. It is +; not the be-all and end-all of session hijacking defense, but it's a good start. +; http://php.net/session.use-only-cookies +session.use_only_cookies = 1 + +; Name of the session (used as cookie name). +; http://php.net/session.name +session.name = PHPSESSID + +; Initialize session on request startup. +; http://php.net/session.auto-start +session.auto_start = 0 + +; Lifetime in seconds of cookie or, if 0, until browser is restarted. +; http://php.net/session.cookie-lifetime +session.cookie_lifetime = 0 + +; The path for which the cookie is valid. +; http://php.net/session.cookie-path +session.cookie_path = / + +; The domain for which the cookie is valid. +; http://php.net/session.cookie-domain +session.cookie_domain = + +; Whether or not to add the httpOnly flag to the cookie, which makes it +; inaccessible to browser scripting languages such as JavaScript. +; http://php.net/session.cookie-httponly +session.cookie_httponly = + +; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF) +; Current valid values are "Strict", "Lax" or "None". When using "None", +; make sure to include the quotes, as `none` is interpreted like `false` in ini files. +; https://tools.ietf.org/html/draft-west-first-party-cookies-07 +session.cookie_samesite = + +; Handler used to serialize data. php is the standard serializer of PHP. +; http://php.net/session.serialize-handler +session.serialize_handler = php + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; http://php.net/session.gc-probability +session.gc_probability = 1 + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. +; For high volume production servers, using a value of 1000 is a more efficient approach. +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 +; http://php.net/session.gc-divisor +session.gc_divisor = 1000 + +; After this number of seconds, stored data will be seen as 'garbage' and +; cleaned up by the garbage collection process. +; http://php.net/session.gc-maxlifetime +session.gc_maxlifetime = 1440 + +; NOTE: If you are using the subdirectory option for storing session files +; (see session.save_path above), then garbage collection does *not* +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. +; For example, the following script is the equivalent of setting +; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): +; find /path/to/sessions -cmin +24 -type f | xargs rm + +; Check HTTP Referer to invalidate externally stored URLs containing ids. +; HTTP_REFERER has to contain this substring for the session to be +; considered as valid. +; http://php.net/session.referer-check +session.referer_check = + +; Set to {nocache,private,public,} to determine HTTP caching aspects +; or leave this empty to avoid sending anti-caching headers. +; http://php.net/session.cache-limiter +session.cache_limiter = nocache + +; Document expires after n minutes. +; http://php.net/session.cache-expire +session.cache_expire = 180 + +; trans sid support is disabled by default. +; Use of trans sid may risk your users' security. +; Use this option with caution. +; - User may send URL contains active session ID +; to other person via. email/irc/etc. +; - URL that contains active session ID may be stored +; in publicly accessible computer. +; - User may access your site with the same session ID +; always using URL stored in browser's history or bookmarks. +; http://php.net/session.use-trans-sid +session.use_trans_sid = 0 + +; Set session ID character length. This value could be between 22 to 256. +; Shorter length than default is supported only for compatibility reason. +; Users should use 32 or more chars. +; http://php.net/session.sid-length +; Default Value: 32 +; Development Value: 26 +; Production Value: 26 +session.sid_length = 26 + +; The URL rewriter will look for URLs in a defined set of HTML tags. +; <form> is special; if you include them here, the rewriter will +; add a hidden <input> field with the info which is otherwise appended +; to URLs. <form> tag's action attribute URL will not be modified +; unless it is specified. +; Note that all valid entries require a "=", even if no value follows. +; Default Value: "a=href,area=href,frame=src,form=" +; Development Value: "a=href,area=href,frame=src,form=" +; Production Value: "a=href,area=href,frame=src,form=" +; http://php.net/url-rewriter.tags +session.trans_sid_tags = "a=href,area=href,frame=src,form=" + +; URL rewriter does not rewrite absolute URLs by default. +; To enable rewrites for absolute paths, target hosts must be specified +; at RUNTIME. i.e. use ini_set() +; <form> tags is special. PHP will check action attribute's URL regardless +; of session.trans_sid_tags setting. +; If no host is defined, HTTP_HOST will be used for allowed host. +; Example value: php.net,www.php.net,wiki.php.net +; Use "," for multiple hosts. No spaces are allowed. +; Default Value: "" +; Development Value: "" +; Production Value: "" +;session.trans_sid_hosts="" + +; Define how many bits are stored in each character when converting +; the binary hash data to something readable. +; Possible values: +; 4 (4 bits: 0-9, a-f) +; 5 (5 bits: 0-9, a-v) +; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 +; http://php.net/session.hash-bits-per-character +session.sid_bits_per_character = 5 + +; Enable upload progress tracking in $_SESSION +; Default Value: On +; Development Value: On +; Production Value: On +; http://php.net/session.upload-progress.enabled +;session.upload_progress.enabled = On + +; Cleanup the progress information as soon as all POST data has been read +; (i.e. upload completed). +; Default Value: On +; Development Value: On +; Production Value: On +; http://php.net/session.upload-progress.cleanup +;session.upload_progress.cleanup = On + +; A prefix used for the upload progress key in $_SESSION +; Default Value: "upload_progress_" +; Development Value: "upload_progress_" +; Production Value: "upload_progress_" +; http://php.net/session.upload-progress.prefix +;session.upload_progress.prefix = "upload_progress_" + +; The index name (concatenated with the prefix) in $_SESSION +; containing the upload progress information +; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" +; http://php.net/session.upload-progress.name +;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" + +; How frequently the upload progress should be updated. +; Given either in percentages (per-file), or in bytes +; Default Value: "1%" +; Development Value: "1%" +; Production Value: "1%" +; http://php.net/session.upload-progress.freq +;session.upload_progress.freq = "1%" + +; The minimum delay between updates, in seconds +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; http://php.net/session.upload-progress.min-freq +;session.upload_progress.min_freq = "1" + +; Only write session data when session data is changed. Enabled by default. +; http://php.net/session.lazy-write +;session.lazy_write = On + +[Assertion] +; Switch whether to compile assertions at all (to have no overhead at run-time) +; -1: Do not compile at all +; 0: Jump over assertion at run-time +; 1: Execute assertions +; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1) +; Default Value: 1 +; Development Value: 1 +; Production Value: -1 +; http://php.net/zend.assertions +zend.assertions = -1 + +; Assert(expr); active by default. +; http://php.net/assert.active +;assert.active = On + +; Throw an AssertionError on failed assertions +; http://php.net/assert.exception +;assert.exception = On + +; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) +; http://php.net/assert.warning +;assert.warning = On + +; Don't bail out by default. +; http://php.net/assert.bail +;assert.bail = Off + +; User-function to be called if an assertion fails. +; http://php.net/assert.callback +;assert.callback = 0 + +[COM] +; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs +; http://php.net/com.typelib-file +;com.typelib_file = + +; allow Distributed-COM calls +; http://php.net/com.allow-dcom +;com.allow_dcom = true + +; autoregister constants of a component's typlib on com_load() +; http://php.net/com.autoregister-typelib +;com.autoregister_typelib = true + +; register constants casesensitive +; http://php.net/com.autoregister-casesensitive +;com.autoregister_casesensitive = false + +; show warnings on duplicate constant registrations +; http://php.net/com.autoregister-verbose +;com.autoregister_verbose = true + +; The default character set code-page to use when passing strings to and from COM objects. +; Default: system ANSI code page +;com.code_page= + +; The version of the .NET framework to use. The value of the setting are the first three parts +; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319". +;com.dotnet_version= + +[mbstring] +; language for internal character representation. +; This affects mb_send_mail() and mbstring.detect_order. +; http://php.net/mbstring.language +;mbstring.language = Japanese + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; internal/script encoding. +; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;mbstring.internal_encoding = + +; Use of this INI entry is deprecated, use global input_encoding instead. +; http input encoding. +; mbstring.encoding_translation = On is needed to use this setting. +; If empty, default_charset or input_encoding or mbstring.input is used. +; The precedence is: default_charset < input_encoding < mbsting.http_input +; http://php.net/mbstring.http-input +;mbstring.http_input = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; http output encoding. +; mb_output_handler must be registered as output buffer to function. +; If empty, default_charset or output_encoding or mbstring.http_output is used. +; The precedence is: default_charset < output_encoding < mbstring.http_output +; To use an output encoding conversion, mbstring's output handler must be set +; otherwise output encoding conversion cannot be performed. +; http://php.net/mbstring.http-output +;mbstring.http_output = + +; enable automatic encoding translation according to +; mbstring.internal_encoding setting. Input chars are +; converted to internal encoding by setting this to On. +; Note: Do _not_ use automatic encoding translation for +; portable libs/applications. +; http://php.net/mbstring.encoding-translation +;mbstring.encoding_translation = Off + +; automatic encoding detection order. +; "auto" detect order is changed according to mbstring.language +; http://php.net/mbstring.detect-order +;mbstring.detect_order = auto + +; substitute_character used when character cannot be converted +; one from another +; http://php.net/mbstring.substitute-character +;mbstring.substitute_character = none + +; Enable strict encoding detection. +;mbstring.strict_detection = Off + +; This directive specifies the regex pattern of content types for which mb_output_handler() +; is activated. +; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) +;mbstring.http_output_conv_mimetype= + +; This directive specifies maximum stack depth for mbstring regular expressions. It is similar +; to the pcre.recursion_limit for PCRE. +;mbstring.regex_stack_limit=100000 + +; This directive specifies maximum retry count for mbstring regular expressions. It is similar +; to the pcre.backtrack_limit for PCRE. +;mbstring.regex_retry_limit=1000000 + +[gd] +; Tell the jpeg decode to ignore warnings and try to create +; a gd image. The warning will then be displayed as notices +; disabled by default +; http://php.net/gd.jpeg-ignore-warning +;gd.jpeg_ignore_warning = 1 + +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +; http://php.net/exif.encode-unicode +;exif.encode_unicode = ISO-8859-15 + +; http://php.net/exif.decode-unicode-motorola +;exif.decode_unicode_motorola = UCS-2BE + +; http://php.net/exif.decode-unicode-intel +;exif.decode_unicode_intel = UCS-2LE + +; http://php.net/exif.encode-jis +;exif.encode_jis = + +; http://php.net/exif.decode-jis-motorola +;exif.decode_jis_motorola = JIS + +; http://php.net/exif.decode-jis-intel +;exif.decode_jis_intel = JIS + +[Tidy] +; The path to a default tidy configuration file to use when using tidy +; http://php.net/tidy.default-config +;tidy.default_config = /usr/local/lib/php/default.tcfg + +; Should tidy clean and repair output automatically? +; WARNING: Do not use this option if you are generating non-html content +; such as dynamic images +; http://php.net/tidy.clean-output +tidy.clean_output = Off + +[soap] +; Enables or disables WSDL caching feature. +; http://php.net/soap.wsdl-cache-enabled +soap.wsdl_cache_enabled=1 + +; Sets the directory name where SOAP extension will put cache files. +; http://php.net/soap.wsdl-cache-dir +soap.wsdl_cache_dir="/tmp" + +; (time to live) Sets the number of second while cached file will be used +; instead of original one. +; http://php.net/soap.wsdl-cache-ttl +soap.wsdl_cache_ttl=86400 + +; Sets the size of the cache limit. (Max. number of WSDL files to cache) +soap.wsdl_cache_limit = 5 + +[sysvshm] +; A default size of the shared memory segment +;sysvshm.init_mem = 10000 + +[ldap] +; Sets the maximum number of open links or -1 for unlimited. +ldap.max_links = -1 + +[dba] +;dba.default_handler= + +[opcache] +; Determines if Zend OPCache is enabled +;opcache.enable=1 + +; Determines if Zend OPCache is enabled for the CLI version of PHP +;opcache.enable_cli=0 + +; The OPcache shared memory storage size. +;opcache.memory_consumption=128 + +; The amount of memory for interned strings in Mbytes. +;opcache.interned_strings_buffer=8 + +; The maximum number of keys (scripts) in the OPcache hash table. +; Only numbers between 200 and 1000000 are allowed. +;opcache.max_accelerated_files=10000 + +; The maximum percentage of "wasted" memory until a restart is scheduled. +;opcache.max_wasted_percentage=5 + +; When this directive is enabled, the OPcache appends the current working +; directory to the script key, thus eliminating possible collisions between +; files with the same name (basename). Disabling the directive improves +; performance, but may break existing applications. +;opcache.use_cwd=1 + +; When disabled, you must reset the OPcache manually or restart the +; webserver for changes to the filesystem to take effect. +;opcache.validate_timestamps=1 + +; How often (in seconds) to check file timestamps for changes to the shared +; memory storage allocation. ("1" means validate once per second, but only +; once per request. "0" means always validate) +;opcache.revalidate_freq=2 + +; Enables or disables file search in include_path optimization +;opcache.revalidate_path=0 + +; If disabled, all PHPDoc comments are dropped from the code to reduce the +; size of the optimized code. +;opcache.save_comments=1 + +; If enabled, compilation warnings (including notices and deprecations) will +; be recorded and replayed each time a file is included. Otherwise, compilation +; warnings will only be emitted when the file is first cached. +;opcache.record_warnings=0 + +; Allow file existence override (file_exists, etc.) performance feature. +;opcache.enable_file_override=0 + +; A bitmask, where each bit enables or disables the appropriate OPcache +; passes +;opcache.optimization_level=0x7FFFBFFF + +;opcache.dups_fix=0 + +; The location of the OPcache blacklist file (wildcards allowed). +; Each OPcache blacklist file is a text file that holds the names of files +; that should not be accelerated. The file format is to add each filename +; to a new line. The filename may be a full path or just a file prefix +; (i.e., /var/www/x blacklists all the files and directories in /var/www +; that start with 'x'). Line starting with a ; are ignored (comments). +;opcache.blacklist_filename= + +; Allows exclusion of large files from being cached. By default all files +; are cached. +;opcache.max_file_size=0 + +; Check the cache checksum each N requests. +; The default value of "0" means that the checks are disabled. +;opcache.consistency_checks=0 + +; How long to wait (in seconds) for a scheduled restart to begin if the cache +; is not being accessed. +;opcache.force_restart_timeout=180 + +; OPcache error_log file name. Empty string assumes "stderr". +;opcache.error_log= + +; All OPcache errors go to the Web server log. +; By default, only fatal errors (level 0) or errors (level 1) are logged. +; You can also enable warnings (level 2), info messages (level 3) or +; debug messages (level 4). +;opcache.log_verbosity_level=1 + +; Preferred Shared Memory back-end. Leave empty and let the system decide. +;opcache.preferred_memory_model= + +; Protect the shared memory from unexpected writing during script execution. +; Useful for internal debugging only. +;opcache.protect_memory=0 + +; Allows calling OPcache API functions only from PHP scripts which path is +; started from specified string. The default "" means no restriction +;opcache.restrict_api= + +; Mapping base of shared memory segments (for Windows only). All the PHP +; processes have to map shared memory into the same address space. This +; directive allows to manually fix the "Unable to reattach to base address" +; errors. +;opcache.mmap_base= + +; Facilitates multiple OPcache instances per user (for Windows only). All PHP +; processes with the same cache ID and user share an OPcache instance. +;opcache.cache_id= + +; Enables and sets the second level cache directory. +; It should improve performance when SHM memory is full, at server restart or +; SHM reset. The default "" disables file based caching. +;opcache.file_cache= + +; Enables or disables opcode caching in shared memory. +;opcache.file_cache_only=0 + +; Enables or disables checksum validation when script loaded from file cache. +;opcache.file_cache_consistency_checks=1 + +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + +; Enables or disables copying of PHP code (text segment) into HUGE PAGES. +; This should improve performance, but requires appropriate OS configuration. +;opcache.huge_code_pages=1 + +; Validate cached file permissions. +;opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +;opcache.validate_root=0 + +; If specified, it produces opcode dumps for debugging different stages of +; optimizations. +;opcache.opt_debug_level=0 + +; Specifies a PHP script that is going to be compiled and executed at server +; start-up. +; http://php.net/opcache.preload +;opcache.preload= + +; Preloading code as root is not allowed for security reasons. This directive +; facilitates to let the preloading to be run as another user. +; http://php.net/opcache.preload_user +;opcache.preload_user= + +; Prevents caching files that are less than this number of seconds old. It +; protects from caching of incompletely updated files. In case all file updates +; on your site are atomic, you may increase performance by setting it to "0". +;opcache.file_update_protection=2 + +; Absolute path used to store shared lockfiles (for *nix only). +;opcache.lockfile_path=/tmp + +[curl] +; A default value for the CURLOPT_CAINFO option. This is required to be an +; absolute path. +;curl.cainfo = + +[openssl] +; The location of a Certificate Authority (CA) file on the local filesystem +; to use when verifying the identity of SSL/TLS peers. Most users should +; not specify a value for this directive as PHP will attempt to use the +; OS-managed cert stores in its absence. If specified, this value may still +; be overridden on a per-stream basis via the "cafile" SSL stream context +; option. +;openssl.cafile= + +; If openssl.cafile is not specified or if the CA file is not found, the +; directory pointed to by openssl.capath is searched for a suitable +; certificate. This value must be a correctly hashed certificate directory. +; Most users should not specify a value for this directive as PHP will +; attempt to use the OS-managed cert stores in its absence. If specified, +; this value may still be overridden on a per-stream basis via the "capath" +; SSL stream context option. +;openssl.capath= + +[ffi] +; FFI API restriction. Possible values: +; "preload" - enabled in CLI scripts and preloaded files (default) +; "false" - always disabled +; "true" - always enabled +;ffi.enable=preload + +; List of headers files to preload, wildcard patterns allowed. +;ffi.preload= diff --git a/utils/Docker/docker-compose.yml b/utils/Docker/docker-compose.yml new file mode 100644 index 0000000..1a7dcf6 --- /dev/null +++ b/utils/Docker/docker-compose.yml @@ -0,0 +1,56 @@ +version: "3"
+
+services:
+
+ www:
+ container_name: www_1ka
+ restart: always
+ build:
+ context: .
+ dockerfile: Dockerfile
+ depends_on:
+ - mysql
+ ports:
+ - "80:80"
+ volumes:
+ - ../../:/var/www/html/
+ - ./www/config/php-7.2.ini:/usr/local/etc/php/php.ini
+ - ./www/config/php-local.ini:/usr/local/etc/php/conf.d/local.ini
+ - ./www/config/1ka.test:/etc/apache2/sites-available/1ka.test
+ - ./www/log/:/var/log/apache2/
+ networks:
+ - default
+
+ mysql:
+ container_name: mysql_1ka
+ ##image: mariadb:10.3
+ image: mysql:5.6.40
+ ports:
+ - "3306:3306"
+ volumes:
+ - ./sql/database:/var/lib/mysql
+ - ./sql/log:/var/log/mysql
+ - ./sql/config:/etc/mysql/conf.d
+ networks:
+ - default
+ environment:
+ - MYSQL_USER=root
+ - MYSQL_ROOT_PASSWORD=1234
+ - MYSQL_PASSWORD=1234
+ - MYSQL_DATABASE=1ka
+ - MYSQL_ALLOW_EMPTY_PASSWORD=true
+
+ phpmyadmin:
+ container_name: phpmyadmin_1ka
+ image: phpmyadmin/phpmyadmin
+ depends_on:
+ - mysql
+ ports:
+ - "8080:80"
+ environment:
+ - PMA_HOST=mysql
+ - PMA_PORT=3306
+ networks:
+ - default
+
+
\ No newline at end of file diff --git a/utils/Docker/docker-compose_latest.yml b/utils/Docker/docker-compose_latest.yml new file mode 100644 index 0000000..eaffcdd --- /dev/null +++ b/utils/Docker/docker-compose_latest.yml @@ -0,0 +1,55 @@ +version: "3"
+
+services:
+
+ www:
+ container_name: www_1ka
+ restart: always
+ build:
+ context: .
+ dockerfile: Dockerfile_latest
+ depends_on:
+ - mysql
+ ports:
+ - "80:80"
+ volumes:
+ - ../../:/var/www/html/
+ - ./www/config/php-7.4.ini:/usr/local/etc/php/php.ini
+ - ./www/config/php-local.ini:/usr/local/etc/php/conf.d/local.ini
+ - ./www/config/1ka.test:/etc/apache2/sites-available/1ka.test
+ - ./www/log/:/var/log/apache2/
+ networks:
+ - default
+
+ mysql:
+ container_name: mysql_1ka
+ image: mysql:8.0.22
+ ports:
+ - "3306:3306"
+ volumes:
+ - ./sql/database:/var/lib/mysql
+ - ./sql/log:/var/log/mysql
+ - ./sql/config:/etc/mysql/conf.d
+ networks:
+ - default
+ environment:
+ - MYSQL_USER=root
+ - MYSQL_ROOT_PASSWORD=1234
+ - MYSQL_PASSWORD=1234
+ - MYSQL_DATABASE=1ka
+ - MYSQL_ALLOW_EMPTY_PASSWORD=true
+
+ phpmyadmin:
+ container_name: phpmyadmin_1ka
+ image: phpmyadmin/phpmyadmin
+ depends_on:
+ - mysql
+ ports:
+ - "8080:80"
+ environment:
+ - PMA_HOST=mysql
+ - PMA_PORT=3306
+ networks:
+ - default
+
+
\ No newline at end of file diff --git a/utils/Docker/sql/config/mysql.cnf b/utils/Docker/sql/config/mysql.cnf new file mode 100644 index 0000000..9d5652c --- /dev/null +++ b/utils/Docker/sql/config/mysql.cnf @@ -0,0 +1,2 @@ +[mysqld]
+log-error = /var/log/mysql/error.log
\ No newline at end of file diff --git a/utils/Docker/www/config/1ka.test b/utils/Docker/www/config/1ka.test new file mode 100644 index 0000000..d477b23 --- /dev/null +++ b/utils/Docker/www/config/1ka.test @@ -0,0 +1,15 @@ +# Potrebno je na računalniku nastaviti še preusmeritev
+# Windows: C:\Windows\System32\drivers\etc\hosts
+# Vnos: 127.0.0.1 1ka.test
+
+<VirtualHost *:80>
+ DocumentRoot "/var/www/html/"
+ ServerName 1ka.test
+
+ <Directory "/var/www/html/">
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride All
+ Order allow,deny
+ allow from all
+ </Directory>
+</VirtualHost>
diff --git a/utils/Docker/www/config/browscap.ini b/utils/Docker/www/config/browscap.ini new file mode 100644 index 0000000..b6239bc --- /dev/null +++ b/utils/Docker/www/config/browscap.ini @@ -0,0 +1,28335 @@ +;;; Provided courtesy of http://browscap.org/ +;;; Created on Tuesday, May 4, 2021 at 07:10 AM GMT+0000 +;;; Keep up with the latest goings-on with the project: +;;; Follow us on Twitter <https://twitter.com/browscap>, or... +;;; Like us on Facebook <https://facebook.com/browscap>, or... +;;; Collaborate on GitHub <https://github.com/browscap>. + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version + +[GJK_Browscap_Version] +Version=6000045 +Released=Tue, 04 May 2021 07:10:07 +0000 +Format=php +Type=LITE + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties + +[DefaultProperties] +Comment="DefaultProperties" +Browser="DefaultProperties" +Version="0.0" +Platform="unknown" +isMobileDevice="false" +isTablet="false" +Device_Type="unknown" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 99.0 + +[Chromium 99.0] +Parent="DefaultProperties" +Comment="Chromium 99.0" +Browser="Chromium" +Version="99.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/99.*Chrome/*Safari/*] +Parent="Chromium 99.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/99.*Chrome/*Safari/*] +Parent="Chromium 99.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/99.*Safari/*] +Parent="Chromium 99.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 98.0 + +[Chromium 98.0] +Parent="DefaultProperties" +Comment="Chromium 98.0" +Browser="Chromium" +Version="98.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/98.*Chrome/*Safari/*] +Parent="Chromium 98.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/98.*Chrome/*Safari/*] +Parent="Chromium 98.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/98.*Safari/*] +Parent="Chromium 98.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 97.0 + +[Chromium 97.0] +Parent="DefaultProperties" +Comment="Chromium 97.0" +Browser="Chromium" +Version="97.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/97.*Chrome/*Safari/*] +Parent="Chromium 97.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/97.*Chrome/*Safari/*] +Parent="Chromium 97.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/97.*Safari/*] +Parent="Chromium 97.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 96.0 + +[Chromium 96.0] +Parent="DefaultProperties" +Comment="Chromium 96.0" +Browser="Chromium" +Version="96.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/96.*Chrome/*Safari/*] +Parent="Chromium 96.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/96.*Chrome/*Safari/*] +Parent="Chromium 96.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/96.*Safari/*] +Parent="Chromium 96.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 95.0 + +[Chromium 95.0] +Parent="DefaultProperties" +Comment="Chromium 95.0" +Browser="Chromium" +Version="95.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/95.*Chrome/*Safari/*] +Parent="Chromium 95.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/95.*Chrome/*Safari/*] +Parent="Chromium 95.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/95.*Safari/*] +Parent="Chromium 95.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 94.0 + +[Chromium 94.0] +Parent="DefaultProperties" +Comment="Chromium 94.0" +Browser="Chromium" +Version="94.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/94.*Chrome/*Safari/*] +Parent="Chromium 94.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/94.*Chrome/*Safari/*] +Parent="Chromium 94.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/94.*Safari/*] +Parent="Chromium 94.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 93.0 + +[Chromium 93.0] +Parent="DefaultProperties" +Comment="Chromium 93.0" +Browser="Chromium" +Version="93.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/93.*Chrome/*Safari/*] +Parent="Chromium 93.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/93.*Chrome/*Safari/*] +Parent="Chromium 93.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/93.*Safari/*] +Parent="Chromium 93.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 92.0 + +[Chromium 92.0] +Parent="DefaultProperties" +Comment="Chromium 92.0" +Browser="Chromium" +Version="92.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/92.*Chrome/*Safari/*] +Parent="Chromium 92.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/92.*Chrome/*Safari/*] +Parent="Chromium 92.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/92.*Safari/*] +Parent="Chromium 92.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 91.0 + +[Chromium 91.0] +Parent="DefaultProperties" +Comment="Chromium 91.0" +Browser="Chromium" +Version="91.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/91.*Chrome/*Safari/*] +Parent="Chromium 91.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/91.*Chrome/*Safari/*] +Parent="Chromium 91.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/91.*Safari/*] +Parent="Chromium 91.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 90.0 + +[Chromium 90.0] +Parent="DefaultProperties" +Comment="Chromium 90.0" +Browser="Chromium" +Version="90.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/90.*Chrome/*Safari/*] +Parent="Chromium 90.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/90.*Chrome/*Safari/*] +Parent="Chromium 90.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/90.*Safari/*] +Parent="Chromium 90.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 89.0 + +[Chromium 89.0] +Parent="DefaultProperties" +Comment="Chromium 89.0" +Browser="Chromium" +Version="89.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/89.*Chrome/*Safari/*] +Parent="Chromium 89.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/89.*Chrome/*Safari/*] +Parent="Chromium 89.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/89.*Safari/*] +Parent="Chromium 89.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 88.0 + +[Chromium 88.0] +Parent="DefaultProperties" +Comment="Chromium 88.0" +Browser="Chromium" +Version="88.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/88.*Chrome/*Safari/*] +Parent="Chromium 88.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/88.*Chrome/*Safari/*] +Parent="Chromium 88.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/88.*Safari/*] +Parent="Chromium 88.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 87.0 + +[Chromium 87.0] +Parent="DefaultProperties" +Comment="Chromium 87.0" +Browser="Chromium" +Version="87.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/87.*Chrome/*Safari/*] +Parent="Chromium 87.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/87.*Chrome/*Safari/*] +Parent="Chromium 87.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/87.*Safari/*] +Parent="Chromium 87.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 86.0 + +[Chromium 86.0] +Parent="DefaultProperties" +Comment="Chromium 86.0" +Browser="Chromium" +Version="86.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/86.*Chrome/*Safari/*] +Parent="Chromium 86.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/86.*Chrome/*Safari/*] +Parent="Chromium 86.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/86.*Safari/*] +Parent="Chromium 86.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 85.0 + +[Chromium 85.0] +Parent="DefaultProperties" +Comment="Chromium 85.0" +Browser="Chromium" +Version="85.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/85.*Chrome/*Safari/*] +Parent="Chromium 85.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/85.*Chrome/*Safari/*] +Parent="Chromium 85.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/85.*Safari/*] +Parent="Chromium 85.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 84.0 + +[Chromium 84.0] +Parent="DefaultProperties" +Comment="Chromium 84.0" +Browser="Chromium" +Version="84.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/84.*Chrome/*Safari/*] +Parent="Chromium 84.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/84.*Chrome/*Safari/*] +Parent="Chromium 84.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/84.*Safari/*] +Parent="Chromium 84.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 83.0 + +[Chromium 83.0] +Parent="DefaultProperties" +Comment="Chromium 83.0" +Browser="Chromium" +Version="83.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/83.*Chrome/*Safari/*] +Parent="Chromium 83.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/83.*Chrome/*Safari/*] +Parent="Chromium 83.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/83.*Safari/*] +Parent="Chromium 83.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 82.0 + +[Chromium 82.0] +Parent="DefaultProperties" +Comment="Chromium 82.0" +Browser="Chromium" +Version="82.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/82.*Chrome/*Safari/*] +Parent="Chromium 82.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/82.*Chrome/*Safari/*] +Parent="Chromium 82.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/82.*Safari/*] +Parent="Chromium 82.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 81.0 + +[Chromium 81.0] +Parent="DefaultProperties" +Comment="Chromium 81.0" +Browser="Chromium" +Version="81.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/81.*Chrome/*Safari/*] +Parent="Chromium 81.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/81.*Chrome/*Safari/*] +Parent="Chromium 81.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/81.*Safari/*] +Parent="Chromium 81.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 80.0 + +[Chromium 80.0] +Parent="DefaultProperties" +Comment="Chromium 80.0" +Browser="Chromium" +Version="80.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/80.*Chrome/*Safari/*] +Parent="Chromium 80.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/80.*Chrome/*Safari/*] +Parent="Chromium 80.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/80.*Safari/*] +Parent="Chromium 80.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 79.0 + +[Chromium 79.0] +Parent="DefaultProperties" +Comment="Chromium 79.0" +Browser="Chromium" +Version="79.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/79.*Chrome/*Safari/*] +Parent="Chromium 79.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/79.*Chrome/*Safari/*] +Parent="Chromium 79.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/79.*Safari/*] +Parent="Chromium 79.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 78.0 + +[Chromium 78.0] +Parent="DefaultProperties" +Comment="Chromium 78.0" +Browser="Chromium" +Version="78.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/78.*Chrome/*Safari/*] +Parent="Chromium 78.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/78.*Chrome/*Safari/*] +Parent="Chromium 78.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/78.*Safari/*] +Parent="Chromium 78.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 77.0 + +[Chromium 77.0] +Parent="DefaultProperties" +Comment="Chromium 77.0" +Browser="Chromium" +Version="77.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/77.*Chrome/*Safari/*] +Parent="Chromium 77.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/77.*Chrome/*Safari/*] +Parent="Chromium 77.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/77.*Safari/*] +Parent="Chromium 77.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 76.0 + +[Chromium 76.0] +Parent="DefaultProperties" +Comment="Chromium 76.0" +Browser="Chromium" +Version="76.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/76.*Chrome/*Safari/*] +Parent="Chromium 76.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/76.*Chrome/*Safari/*] +Parent="Chromium 76.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/76.*Safari/*] +Parent="Chromium 76.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 75.0 + +[Chromium 75.0] +Parent="DefaultProperties" +Comment="Chromium 75.0" +Browser="Chromium" +Version="75.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/75.*Chrome/*Safari/*] +Parent="Chromium 75.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/75.*Chrome/*Safari/*] +Parent="Chromium 75.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/75.*Safari/*] +Parent="Chromium 75.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 74.0 + +[Chromium 74.0] +Parent="DefaultProperties" +Comment="Chromium 74.0" +Browser="Chromium" +Version="74.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/74.*Chrome/*Safari/*] +Parent="Chromium 74.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/74.*Chrome/*Safari/*] +Parent="Chromium 74.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/74.*Safari/*] +Parent="Chromium 74.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 73.0 + +[Chromium 73.0] +Parent="DefaultProperties" +Comment="Chromium 73.0" +Browser="Chromium" +Version="73.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/73.*Chrome/*Safari/*] +Parent="Chromium 73.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/73.*Chrome/*Safari/*] +Parent="Chromium 73.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/73.*Safari/*] +Parent="Chromium 73.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 72.0 + +[Chromium 72.0] +Parent="DefaultProperties" +Comment="Chromium 72.0" +Browser="Chromium" +Version="72.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/72.*Chrome/*Safari/*] +Parent="Chromium 72.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/72.*Chrome/*Safari/*] +Parent="Chromium 72.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/72.*Safari/*] +Parent="Chromium 72.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 71.0 + +[Chromium 71.0] +Parent="DefaultProperties" +Comment="Chromium 71.0" +Browser="Chromium" +Version="71.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/71.*Chrome/*Safari/*] +Parent="Chromium 71.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/71.*Chrome/*Safari/*] +Parent="Chromium 71.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/71.*Safari/*] +Parent="Chromium 71.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 70.0 + +[Chromium 70.0] +Parent="DefaultProperties" +Comment="Chromium 70.0" +Browser="Chromium" +Version="70.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/70.*Chrome/*Safari/*] +Parent="Chromium 70.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/70.*Chrome/*Safari/*] +Parent="Chromium 70.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/70.*Safari/*] +Parent="Chromium 70.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 69.0 + +[Chromium 69.0] +Parent="DefaultProperties" +Comment="Chromium 69.0" +Browser="Chromium" +Version="69.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/69.*Chrome/*Safari/*] +Parent="Chromium 69.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/69.*Chrome/*Safari/*] +Parent="Chromium 69.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/69.*Safari/*] +Parent="Chromium 69.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 68.0 + +[Chromium 68.0] +Parent="DefaultProperties" +Comment="Chromium 68.0" +Browser="Chromium" +Version="68.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/68.*Chrome/*Safari/*] +Parent="Chromium 68.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/68.*Chrome/*Safari/*] +Parent="Chromium 68.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/68.*Safari/*] +Parent="Chromium 68.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 67.0 + +[Chromium 67.0] +Parent="DefaultProperties" +Comment="Chromium 67.0" +Browser="Chromium" +Version="67.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/67.*Chrome/*Safari/*] +Parent="Chromium 67.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/67.*Chrome/*Safari/*] +Parent="Chromium 67.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/67.*Safari/*] +Parent="Chromium 67.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 66.0 + +[Chromium 66.0] +Parent="DefaultProperties" +Comment="Chromium 66.0" +Browser="Chromium" +Version="66.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/66.*Chrome/*Safari/*] +Parent="Chromium 66.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/66.*Chrome/*Safari/*] +Parent="Chromium 66.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/66.*Safari/*] +Parent="Chromium 66.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 65.0 + +[Chromium 65.0] +Parent="DefaultProperties" +Comment="Chromium 65.0" +Browser="Chromium" +Version="65.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/65.*Chrome/*Safari/*] +Parent="Chromium 65.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/65.*Chrome/*Safari/*] +Parent="Chromium 65.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/65.*Safari/*] +Parent="Chromium 65.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 64.0 + +[Chromium 64.0] +Parent="DefaultProperties" +Comment="Chromium 64.0" +Browser="Chromium" +Version="64.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/64.*Chrome/*Safari/*] +Parent="Chromium 64.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/64.*Chrome/*Safari/*] +Parent="Chromium 64.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/64.*Safari/*] +Parent="Chromium 64.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 63.0 + +[Chromium 63.0] +Parent="DefaultProperties" +Comment="Chromium 63.0" +Browser="Chromium" +Version="63.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/63.*Chrome/*Safari/*] +Parent="Chromium 63.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/63.*Chrome/*Safari/*] +Parent="Chromium 63.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/63.*Safari/*] +Parent="Chromium 63.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 62.0 + +[Chromium 62.0] +Parent="DefaultProperties" +Comment="Chromium 62.0" +Browser="Chromium" +Version="62.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/62.*Chrome/*Safari/*] +Parent="Chromium 62.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/62.*Chrome/*Safari/*] +Parent="Chromium 62.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/62.*Safari/*] +Parent="Chromium 62.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 61.0 + +[Chromium 61.0] +Parent="DefaultProperties" +Comment="Chromium 61.0" +Browser="Chromium" +Version="61.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/61.*Chrome/*Safari/*] +Parent="Chromium 61.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/61.*Chrome/*Safari/*] +Parent="Chromium 61.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/61.*Safari/*] +Parent="Chromium 61.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 60.0 + +[Chromium 60.0] +Parent="DefaultProperties" +Comment="Chromium 60.0" +Browser="Chromium" +Version="60.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/60.*Chrome/*Safari/*] +Parent="Chromium 60.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/60.*Chrome/*Safari/*] +Parent="Chromium 60.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/60.*Safari/*] +Parent="Chromium 60.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 59.0 + +[Chromium 59.0] +Parent="DefaultProperties" +Comment="Chromium 59.0" +Browser="Chromium" +Version="59.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/59.*Chrome/*Safari/*] +Parent="Chromium 59.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/59.*Chrome/*Safari/*] +Parent="Chromium 59.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/59.*Safari/*] +Parent="Chromium 59.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 58.0 + +[Chromium 58.0] +Parent="DefaultProperties" +Comment="Chromium 58.0" +Browser="Chromium" +Version="58.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/58.*Chrome/*Safari/*] +Parent="Chromium 58.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/58.*Chrome/*Safari/*] +Parent="Chromium 58.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/58.*Safari/*] +Parent="Chromium 58.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 57.0 + +[Chromium 57.0] +Parent="DefaultProperties" +Comment="Chromium 57.0" +Browser="Chromium" +Version="57.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/57.*Chrome/*Safari/*] +Parent="Chromium 57.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/57.*Chrome/*Safari/*] +Parent="Chromium 57.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/57.*Safari/*] +Parent="Chromium 57.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 56.0 + +[Chromium 56.0] +Parent="DefaultProperties" +Comment="Chromium 56.0" +Browser="Chromium" +Version="56.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/56.*Chrome/*Safari/*] +Parent="Chromium 56.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/56.*Chrome/*Safari/*] +Parent="Chromium 56.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/56.*Safari/*] +Parent="Chromium 56.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 55.0 + +[Chromium 55.0] +Parent="DefaultProperties" +Comment="Chromium 55.0" +Browser="Chromium" +Version="55.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/55.*Chrome/*Safari/*] +Parent="Chromium 55.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/55.*Chrome/*Safari/*] +Parent="Chromium 55.0" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/55.*Safari/*] +Parent="Chromium 55.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 54.0 + +[Chromium 54.0] +Parent="DefaultProperties" +Comment="Chromium 54.0" +Browser="Chromium" +Version="54.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/54.*Chrome/*Safari/*] +Parent="Chromium 54.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/54.*Chrome/*Safari/*] +Parent="Chromium 54.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 53.0 + +[Chromium 53.0] +Parent="DefaultProperties" +Comment="Chromium 53.0" +Browser="Chromium" +Version="53.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/53.*Chrome/*Safari/*] +Parent="Chromium 53.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/53.*Chrome/*Safari/*] +Parent="Chromium 53.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 52.0 + +[Chromium 52.0] +Parent="DefaultProperties" +Comment="Chromium 52.0" +Browser="Chromium" +Version="52.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/52.*Chrome/*Safari/*] +Parent="Chromium 52.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/52.*Chrome/*Safari/*] +Parent="Chromium 52.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 51.0 + +[Chromium 51.0] +Parent="DefaultProperties" +Comment="Chromium 51.0" +Browser="Chromium" +Version="51.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/51.*Chrome/*Safari/*] +Parent="Chromium 51.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/51.*Chrome/*Safari/*] +Parent="Chromium 51.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 50.0 + +[Chromium 50.0] +Parent="DefaultProperties" +Comment="Chromium 50.0" +Browser="Chromium" +Version="50.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/50.*Chrome/*Safari/*] +Parent="Chromium 50.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/50.*Chrome/*Safari/*] +Parent="Chromium 50.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 49.0 + +[Chromium 49.0] +Parent="DefaultProperties" +Comment="Chromium 49.0" +Browser="Chromium" +Version="49.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/49.*Chrome/*Safari/*] +Parent="Chromium 49.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/49.*Chrome/*Safari/*] +Parent="Chromium 49.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 48.0 + +[Chromium 48.0] +Parent="DefaultProperties" +Comment="Chromium 48.0" +Browser="Chromium" +Version="48.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/48.*Chrome/*Safari/*] +Parent="Chromium 48.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/48.*Chrome/*Safari/*] +Parent="Chromium 48.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 47.0 + +[Chromium 47.0] +Parent="DefaultProperties" +Comment="Chromium 47.0" +Browser="Chromium" +Version="47.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/47.*Chrome/*Safari/*] +Parent="Chromium 47.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/47.*Chrome/*Safari/*] +Parent="Chromium 47.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 46.0 + +[Chromium 46.0] +Parent="DefaultProperties" +Comment="Chromium 46.0" +Browser="Chromium" +Version="46.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/46.*Chrome/*Safari/*] +Parent="Chromium 46.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/46.*Chrome/*Safari/*] +Parent="Chromium 46.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 45.0 + +[Chromium 45.0] +Parent="DefaultProperties" +Comment="Chromium 45.0" +Browser="Chromium" +Version="45.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/45.*Chrome/*Safari/*] +Parent="Chromium 45.0" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/45.*Chrome/*Safari/*] +Parent="Chromium 45.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 82.0 + +[Android WebView 82.0] +Parent="DefaultProperties" +Comment="Android WebView 82.0" +Browser="Android WebView" +Version="82.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/82.0*Mobile*Safari*] +Parent="Android WebView 82.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/82.0*Safari*] +Parent="Android WebView 82.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 81.0 + +[Android WebView 81.0] +Parent="DefaultProperties" +Comment="Android WebView 81.0" +Browser="Android WebView" +Version="81.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/81.0*Mobile*Safari*] +Parent="Android WebView 81.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/81.0*Safari*] +Parent="Android WebView 81.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 80.0 + +[Android WebView 80.0] +Parent="DefaultProperties" +Comment="Android WebView 80.0" +Browser="Android WebView" +Version="80.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/80.0*Mobile*Safari*] +Parent="Android WebView 80.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/80.0*Safari*] +Parent="Android WebView 80.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 79.0 + +[Android WebView 79.0] +Parent="DefaultProperties" +Comment="Android WebView 79.0" +Browser="Android WebView" +Version="79.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/79.0*Mobile*Safari*] +Parent="Android WebView 79.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/79.0*Safari*] +Parent="Android WebView 79.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 78.0 + +[Android WebView 78.0] +Parent="DefaultProperties" +Comment="Android WebView 78.0" +Browser="Android WebView" +Version="78.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/78.0*Mobile*Safari*] +Parent="Android WebView 78.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/78.0*Safari*] +Parent="Android WebView 78.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 77.0 + +[Android WebView 77.0] +Parent="DefaultProperties" +Comment="Android WebView 77.0" +Browser="Android WebView" +Version="77.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/77.0*Mobile*Safari*] +Parent="Android WebView 77.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/77.0*Safari*] +Parent="Android WebView 77.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 76.0 + +[Android WebView 76.0] +Parent="DefaultProperties" +Comment="Android WebView 76.0" +Browser="Android WebView" +Version="76.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/76.0*Mobile*Safari*] +Parent="Android WebView 76.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/76.0*Safari*] +Parent="Android WebView 76.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 75.0 + +[Android WebView 75.0] +Parent="DefaultProperties" +Comment="Android WebView 75.0" +Browser="Android WebView" +Version="75.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/75.0*Mobile*Safari*] +Parent="Android WebView 75.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/75.0*Safari*] +Parent="Android WebView 75.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 74.0 + +[Android WebView 74.0] +Parent="DefaultProperties" +Comment="Android WebView 74.0" +Browser="Android WebView" +Version="74.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/74.0*Mobile*Safari*] +Parent="Android WebView 74.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/74.0*Safari*] +Parent="Android WebView 74.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 73.0 + +[Android WebView 73.0] +Parent="DefaultProperties" +Comment="Android WebView 73.0" +Browser="Android WebView" +Version="73.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/73.0*Mobile*Safari*] +Parent="Android WebView 73.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/73.0*Safari*] +Parent="Android WebView 73.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 72.0 + +[Android WebView 72.0] +Parent="DefaultProperties" +Comment="Android WebView 72.0" +Browser="Android WebView" +Version="72.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/72.0*Mobile*Safari*] +Parent="Android WebView 72.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/72.0*Safari*] +Parent="Android WebView 72.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 71.0 + +[Android WebView 71.0] +Parent="DefaultProperties" +Comment="Android WebView 71.0" +Browser="Android WebView" +Version="71.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/71.0*Mobile*Safari*] +Parent="Android WebView 71.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/71.0*Safari*] +Parent="Android WebView 71.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 70.0 + +[Android WebView 70.0] +Parent="DefaultProperties" +Comment="Android WebView 70.0" +Browser="Android WebView" +Version="70.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/70.0*Mobile*Safari*] +Parent="Android WebView 70.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/70.0*Safari*] +Parent="Android WebView 70.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 69.0 + +[Android WebView 69.0] +Parent="DefaultProperties" +Comment="Android WebView 69.0" +Browser="Android WebView" +Version="69.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/69.0*Mobile*Safari*] +Parent="Android WebView 69.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/69.0*Safari*] +Parent="Android WebView 69.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 68.0 + +[Android WebView 68.0] +Parent="DefaultProperties" +Comment="Android WebView 68.0" +Browser="Android WebView" +Version="68.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/68.0*Mobile*Safari*] +Parent="Android WebView 68.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/68.0*Safari*] +Parent="Android WebView 68.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 67.0 + +[Android WebView 67.0] +Parent="DefaultProperties" +Comment="Android WebView 67.0" +Browser="Android WebView" +Version="67.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/67.0*Mobile*Safari*] +Parent="Android WebView 67.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/67.0*Safari*] +Parent="Android WebView 67.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 66.0 + +[Android WebView 66.0] +Parent="DefaultProperties" +Comment="Android WebView 66.0" +Browser="Android WebView" +Version="66.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/66.0*Mobile*Safari*] +Parent="Android WebView 66.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/66.0*Safari*] +Parent="Android WebView 66.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 65.0 + +[Android WebView 65.0] +Parent="DefaultProperties" +Comment="Android WebView 65.0" +Browser="Android WebView" +Version="65.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/65.0*Mobile*Safari*] +Parent="Android WebView 65.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/65.0*Safari*] +Parent="Android WebView 65.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 64.0 + +[Android WebView 64.0] +Parent="DefaultProperties" +Comment="Android WebView 64.0" +Browser="Android WebView" +Version="64.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/64.0*Mobile*Safari*] +Parent="Android WebView 64.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/64.0*Safari*] +Parent="Android WebView 64.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 63.0 + +[Android WebView 63.0] +Parent="DefaultProperties" +Comment="Android WebView 63.0" +Browser="Android WebView" +Version="63.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/63.0*Mobile*Safari*] +Parent="Android WebView 63.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/63.0*Safari*] +Parent="Android WebView 63.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 62.0 + +[Android WebView 62.0] +Parent="DefaultProperties" +Comment="Android WebView 62.0" +Browser="Android WebView" +Version="62.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/62.0*Mobile*Safari*] +Parent="Android WebView 62.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/62.0*Safari*] +Parent="Android WebView 62.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 61.0 + +[Android WebView 61.0] +Parent="DefaultProperties" +Comment="Android WebView 61.0" +Browser="Android WebView" +Version="61.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/61.0*Mobile*Safari*] +Parent="Android WebView 61.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/61.0*Safari*] +Parent="Android WebView 61.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 60.0 + +[Android WebView 60.0] +Parent="DefaultProperties" +Comment="Android WebView 60.0" +Browser="Android WebView" +Version="60.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/60.0*Mobile*Safari*] +Parent="Android WebView 60.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/60.0*Safari*] +Parent="Android WebView 60.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 59.0 + +[Android WebView 59.0] +Parent="DefaultProperties" +Comment="Android WebView 59.0" +Browser="Android WebView" +Version="59.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/59.0*Mobile*Safari*] +Parent="Android WebView 59.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/59.0*Safari*] +Parent="Android WebView 59.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 58.0 + +[Android WebView 58.0] +Parent="DefaultProperties" +Comment="Android WebView 58.0" +Browser="Android WebView" +Version="58.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/58.0*Mobile*Safari*] +Parent="Android WebView 58.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/58.0*Safari*] +Parent="Android WebView 58.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 57.0 + +[Android WebView 57.0] +Parent="DefaultProperties" +Comment="Android WebView 57.0" +Browser="Android WebView" +Version="57.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/57.0*Mobile*Safari*] +Parent="Android WebView 57.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/57.0*Safari*] +Parent="Android WebView 57.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 56.0 + +[Android WebView 56.0] +Parent="DefaultProperties" +Comment="Android WebView 56.0" +Browser="Android WebView" +Version="56.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/56.0*Mobile*Safari*] +Parent="Android WebView 56.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/56.0*Safari*] +Parent="Android WebView 56.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 55.0 + +[Android WebView 55.0] +Parent="DefaultProperties" +Comment="Android WebView 55.0" +Browser="Android WebView" +Version="55.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/55.0*Mobile*Safari*] +Parent="Android WebView 55.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/55.0*Safari*] +Parent="Android WebView 55.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 54.0 + +[Android WebView 54.0] +Parent="DefaultProperties" +Comment="Android WebView 54.0" +Browser="Android WebView" +Version="54.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/54.0*Mobile*Safari*] +Parent="Android WebView 54.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/54.0*Safari*] +Parent="Android WebView 54.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 53.0 + +[Android WebView 53.0] +Parent="DefaultProperties" +Comment="Android WebView 53.0" +Browser="Android WebView" +Version="53.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/53.0*Mobile*Safari*] +Parent="Android WebView 53.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/53.0*Safari*] +Parent="Android WebView 53.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 52.0 + +[Android WebView 52.0] +Parent="DefaultProperties" +Comment="Android WebView 52.0" +Browser="Android WebView" +Version="52.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/52.0*Mobile*Safari*] +Parent="Android WebView 52.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/52.0*Safari*] +Parent="Android WebView 52.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 51.0 + +[Android WebView 51.0] +Parent="DefaultProperties" +Comment="Android WebView 51.0" +Browser="Android WebView" +Version="51.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/51.0*Mobile*Safari*] +Parent="Android WebView 51.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/51.0*Safari*] +Parent="Android WebView 51.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 50.0 + +[Android WebView 50.0] +Parent="DefaultProperties" +Comment="Android WebView 50.0" +Browser="Android WebView" +Version="50.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/50.0*Mobile*Safari*] +Parent="Android WebView 50.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/50.0*Safari*] +Parent="Android WebView 50.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 49.0 + +[Android WebView 49.0] +Parent="DefaultProperties" +Comment="Android WebView 49.0" +Browser="Android WebView" +Version="49.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/49.0*Mobile*Safari*] +Parent="Android WebView 49.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/49.0*Safari*] +Parent="Android WebView 49.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 48.0 + +[Android WebView 48.0] +Parent="DefaultProperties" +Comment="Android WebView 48.0" +Browser="Android WebView" +Version="48.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/48.0*Mobile*Safari*] +Parent="Android WebView 48.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/48.0*Safari*] +Parent="Android WebView 48.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 47.0 + +[Android WebView 47.0] +Parent="DefaultProperties" +Comment="Android WebView 47.0" +Browser="Android WebView" +Version="47.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/47.0*Mobile*Safari*] +Parent="Android WebView 47.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/47.0*Safari*] +Parent="Android WebView 47.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 46.0 + +[Android WebView 46.0] +Parent="DefaultProperties" +Comment="Android WebView 46.0" +Browser="Android WebView" +Version="46.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/46.0*Mobile*Safari*] +Parent="Android WebView 46.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/46.0*Safari*] +Parent="Android WebView 46.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 45.0 + +[Android WebView 45.0] +Parent="DefaultProperties" +Comment="Android WebView 45.0" +Browser="Android WebView" +Version="45.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/45.0*Mobile*Safari*] +Parent="Android WebView 45.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/45.0*Safari*] +Parent="Android WebView 45.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 44.0 + +[Android WebView 44.0] +Parent="DefaultProperties" +Comment="Android WebView 44.0" +Browser="Android WebView" +Version="44.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/44.0*Mobile*Safari*] +Parent="Android WebView 44.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/44.0*Safari*] +Parent="Android WebView 44.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 43.0 + +[Android WebView 43.0] +Parent="DefaultProperties" +Comment="Android WebView 43.0" +Browser="Android WebView" +Version="43.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/43.0*Mobile*Safari*] +Parent="Android WebView 43.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/43.0*Safari*] +Parent="Android WebView 43.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 99.0 + +[Android WebView 99.0] +Parent="DefaultProperties" +Comment="Android WebView 99.0" +Browser="Android WebView" +Version="99.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/99.0*Mobile*Safari*] +Parent="Android WebView 99.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/99.0*Safari*] +Parent="Android WebView 99.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 98.0 + +[Android WebView 98.0] +Parent="DefaultProperties" +Comment="Android WebView 98.0" +Browser="Android WebView" +Version="98.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/98.0*Mobile*Safari*] +Parent="Android WebView 98.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/98.0*Safari*] +Parent="Android WebView 98.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 97.0 + +[Android WebView 97.0] +Parent="DefaultProperties" +Comment="Android WebView 97.0" +Browser="Android WebView" +Version="97.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/97.0*Mobile*Safari*] +Parent="Android WebView 97.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/97.0*Safari*] +Parent="Android WebView 97.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 96.0 + +[Android WebView 96.0] +Parent="DefaultProperties" +Comment="Android WebView 96.0" +Browser="Android WebView" +Version="96.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/96.0*Mobile*Safari*] +Parent="Android WebView 96.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/96.0*Safari*] +Parent="Android WebView 96.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 95.0 + +[Android WebView 95.0] +Parent="DefaultProperties" +Comment="Android WebView 95.0" +Browser="Android WebView" +Version="95.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/95.0*Mobile*Safari*] +Parent="Android WebView 95.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/95.0*Safari*] +Parent="Android WebView 95.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 94.0 + +[Android WebView 94.0] +Parent="DefaultProperties" +Comment="Android WebView 94.0" +Browser="Android WebView" +Version="94.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/94.0*Mobile*Safari*] +Parent="Android WebView 94.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/94.0*Safari*] +Parent="Android WebView 94.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 93.0 + +[Android WebView 93.0] +Parent="DefaultProperties" +Comment="Android WebView 93.0" +Browser="Android WebView" +Version="93.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/93.0*Mobile*Safari*] +Parent="Android WebView 93.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/93.0*Safari*] +Parent="Android WebView 93.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 92.0 + +[Android WebView 92.0] +Parent="DefaultProperties" +Comment="Android WebView 92.0" +Browser="Android WebView" +Version="92.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/92.0*Mobile*Safari*] +Parent="Android WebView 92.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/92.0*Safari*] +Parent="Android WebView 92.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 91.0 + +[Android WebView 91.0] +Parent="DefaultProperties" +Comment="Android WebView 91.0" +Browser="Android WebView" +Version="91.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/91.0*Mobile*Safari*] +Parent="Android WebView 91.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/91.0*Safari*] +Parent="Android WebView 91.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 90.0 + +[Android WebView 90.0] +Parent="DefaultProperties" +Comment="Android WebView 90.0" +Browser="Android WebView" +Version="90.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/90.0*Mobile*Safari*] +Parent="Android WebView 90.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/90.0*Safari*] +Parent="Android WebView 90.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 89.0 + +[Android WebView 89.0] +Parent="DefaultProperties" +Comment="Android WebView 89.0" +Browser="Android WebView" +Version="89.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/89.0*Mobile*Safari*] +Parent="Android WebView 89.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/89.0*Safari*] +Parent="Android WebView 89.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 88.0 + +[Android WebView 88.0] +Parent="DefaultProperties" +Comment="Android WebView 88.0" +Browser="Android WebView" +Version="88.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/88.0*Mobile*Safari*] +Parent="Android WebView 88.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/88.0*Safari*] +Parent="Android WebView 88.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 87.0 + +[Android WebView 87.0] +Parent="DefaultProperties" +Comment="Android WebView 87.0" +Browser="Android WebView" +Version="87.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/87.0*Mobile*Safari*] +Parent="Android WebView 87.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/87.0*Safari*] +Parent="Android WebView 87.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 86.0 + +[Android WebView 86.0] +Parent="DefaultProperties" +Comment="Android WebView 86.0" +Browser="Android WebView" +Version="86.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/86.0*Mobile*Safari*] +Parent="Android WebView 86.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/86.0*Safari*] +Parent="Android WebView 86.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 85.0 + +[Android WebView 85.0] +Parent="DefaultProperties" +Comment="Android WebView 85.0" +Browser="Android WebView" +Version="85.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/85.0*Mobile*Safari*] +Parent="Android WebView 85.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/85.0*Safari*] +Parent="Android WebView 85.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 84.0 + +[Android WebView 84.0] +Parent="DefaultProperties" +Comment="Android WebView 84.0" +Browser="Android WebView" +Version="84.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/84.0*Mobile*Safari*] +Parent="Android WebView 84.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/84.0*Safari*] +Parent="Android WebView 84.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 83.0 + +[Android WebView 83.0] +Parent="DefaultProperties" +Comment="Android WebView 83.0" +Browser="Android WebView" +Version="83.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/83.0*Mobile*Safari*] +Parent="Android WebView 83.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/83.0*Safari*] +Parent="Android WebView 83.0" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YOLO Browser 1.0 + +[YOLO Browser 1.0] +Parent="DefaultProperties" +Comment="YOLO Browser 1.0" +Browser="YOLO Browser" +Version="1.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*)*YoloBrowser/1.0*Safari*] +Parent="YOLO Browser 1.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.9 + +[Seraphic Sraf 3.9] +Parent="DefaultProperties" +Comment="Seraphic Sraf 3.9" +Browser="Sraf" +Version="3.9" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.9* (+TRICKMODE; NEXUS; Nexus_AN01*] +Parent="Seraphic Sraf 3.9" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.9*] +Parent="Seraphic Sraf 3.9" + +[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.9*] +Parent="Seraphic Sraf 3.9" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.5 + +[Seraphic Sraf 3.5] +Parent="DefaultProperties" +Comment="Seraphic Sraf 3.5" +Browser="Sraf" +Version="3.5" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.5* (+TRICKMODE; NEXUS; Nexus_AN01*] +Parent="Seraphic Sraf 3.5" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.5*] +Parent="Seraphic Sraf 3.5" + +[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.5*] +Parent="Seraphic Sraf 3.5" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.0 + +[Seraphic Sraf 3.0] +Parent="DefaultProperties" +Comment="Seraphic Sraf 3.0" +Browser="Sraf" +Version="3.0" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.0* (+TRICKMODE; NEXUS; Nexus_AN01*] +Parent="Seraphic Sraf 3.0" + +[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.0*] +Parent="Seraphic Sraf 3.0" + +[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.0*] +Parent="Seraphic Sraf 3.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView Generic + +[Android WebView Generic] +Parent="DefaultProperties" +Comment="Android WebView Generic" +Browser="Android WebView" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[*Mozilla/5.0 (*Linux*Android*) applewebkit*khtml*like*gecko*) Version/*Chrome*Safari*] +Parent="Android WebView Generic" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome*Safari*] +Parent="Android WebView Generic" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari*Chrome*] +Parent="Android WebView Generic" + +[Mozilla/5.0 (*Linux*Android*) applewebkit*(*kthml*like*gecko*)*Version/*Chrome*Safari*] +Parent="Android WebView Generic" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khmtl*like*gecko*)*Version/*Chrome*Safari*] +Parent="Android WebView Generic" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 72 + +[Opera 72] +Parent="DefaultProperties" +Comment="Opera 72" +Browser="Opera" +Version=72 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*OMI/*] +Parent="Opera 72" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*HbbTV/*] +Parent="Opera 72" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] +Parent="Opera 72" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 71 + +[Opera 71] +Parent="DefaultProperties" +Comment="Opera 71" +Browser="Opera" +Version=71 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*OMI/*] +Parent="Opera 71" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*HbbTV/*] +Parent="Opera 71" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] +Parent="Opera 71" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 70 + +[Opera 70] +Parent="DefaultProperties" +Comment="Opera 70" +Browser="Opera" +Version=70 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*OMI/*] +Parent="Opera 70" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*HbbTV/*] +Parent="Opera 70" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] +Parent="Opera 70" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 69 + +[Opera 69] +Parent="DefaultProperties" +Comment="Opera 69" +Browser="Opera" +Version=69 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*OMI/*] +Parent="Opera 69" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*HbbTV/*] +Parent="Opera 69" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] +Parent="Opera 69" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 68 + +[Opera 68] +Parent="DefaultProperties" +Comment="Opera 68" +Browser="Opera" +Version=68 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*OMI/*] +Parent="Opera 68" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*HbbTV/*] +Parent="Opera 68" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] +Parent="Opera 68" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 67 + +[Opera 67] +Parent="DefaultProperties" +Comment="Opera 67" +Browser="Opera" +Version=67 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*OMI/*] +Parent="Opera 67" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*HbbTV/*] +Parent="Opera 67" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] +Parent="Opera 67" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 66 + +[Opera 66] +Parent="DefaultProperties" +Comment="Opera 66" +Browser="Opera" +Version=66 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*OMI/*] +Parent="Opera 66" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*HbbTV/*] +Parent="Opera 66" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] +Parent="Opera 66" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 65 + +[Opera 65] +Parent="DefaultProperties" +Comment="Opera 65" +Browser="Opera" +Version=65 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*OMI/*] +Parent="Opera 65" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*HbbTV/*] +Parent="Opera 65" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] +Parent="Opera 65" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 64 + +[Opera 64] +Parent="DefaultProperties" +Comment="Opera 64" +Browser="Opera" +Version=64 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*OMI/*] +Parent="Opera 64" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*HbbTV/*] +Parent="Opera 64" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] +Parent="Opera 64" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 63 + +[Opera 63] +Parent="DefaultProperties" +Comment="Opera 63" +Browser="Opera" +Version=63 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*OMI/*] +Parent="Opera 63" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*HbbTV/*] +Parent="Opera 63" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] +Parent="Opera 63" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 62 + +[Opera 62] +Parent="DefaultProperties" +Comment="Opera 62" +Browser="Opera" +Version=62 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*OMI/*] +Parent="Opera 62" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*HbbTV/*] +Parent="Opera 62" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] +Parent="Opera 62" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 61 + +[Opera 61] +Parent="DefaultProperties" +Comment="Opera 61" +Browser="Opera" +Version=61 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*OMI/*] +Parent="Opera 61" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*HbbTV/*] +Parent="Opera 61" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] +Parent="Opera 61" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 60 + +[Opera 60] +Parent="DefaultProperties" +Comment="Opera 60" +Browser="Opera" +Version=60 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*OMI/*] +Parent="Opera 60" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*HbbTV/*] +Parent="Opera 60" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] +Parent="Opera 60" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 59 + +[Opera 59] +Parent="DefaultProperties" +Comment="Opera 59" +Browser="Opera" +Version=59 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*OMI/*] +Parent="Opera 59" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*HbbTV/*] +Parent="Opera 59" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] +Parent="Opera 59" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 58 + +[Opera 58] +Parent="DefaultProperties" +Comment="Opera 58" +Browser="Opera" +Version=58 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*OMI/*] +Parent="Opera 58" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*HbbTV/*] +Parent="Opera 58" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] +Parent="Opera 58" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 57 + +[Opera 57] +Parent="DefaultProperties" +Comment="Opera 57" +Browser="Opera" +Version=57 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*OMI/*] +Parent="Opera 57" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*HbbTV/*] +Parent="Opera 57" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] +Parent="Opera 57" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 56 + +[Opera 56] +Parent="DefaultProperties" +Comment="Opera 56" +Browser="Opera" +Version=56 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*OMI/*] +Parent="Opera 56" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*HbbTV/*] +Parent="Opera 56" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] +Parent="Opera 56" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 55 + +[Opera 55] +Parent="DefaultProperties" +Comment="Opera 55" +Browser="Opera" +Version=55 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*OMI/*] +Parent="Opera 55" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*HbbTV/*] +Parent="Opera 55" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] +Parent="Opera 55" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 54 + +[Opera 54] +Parent="DefaultProperties" +Comment="Opera 54" +Browser="Opera" +Version=54 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*OMI/*] +Parent="Opera 54" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*HbbTV/*] +Parent="Opera 54" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] +Parent="Opera 54" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 53 + +[Opera 53] +Parent="DefaultProperties" +Comment="Opera 53" +Browser="Opera" +Version=53 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*OMI/*] +Parent="Opera 53" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*HbbTV/*] +Parent="Opera 53" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] +Parent="Opera 53" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 52 + +[Opera 52] +Parent="DefaultProperties" +Comment="Opera 52" +Browser="Opera" +Version=52 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*OMI/*] +Parent="Opera 52" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*HbbTV/*] +Parent="Opera 52" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] +Parent="Opera 52" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 51 + +[Opera 51] +Parent="DefaultProperties" +Comment="Opera 51" +Browser="Opera" +Version=51 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*OMI/*] +Parent="Opera 51" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*HbbTV/*] +Parent="Opera 51" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] +Parent="Opera 51" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 50 + +[Opera 50] +Parent="DefaultProperties" +Comment="Opera 50" +Browser="Opera" +Version=50 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*OMI/*] +Parent="Opera 50" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*HbbTV/*] +Parent="Opera 50" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] +Parent="Opera 50" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 49 + +[Opera 49] +Parent="DefaultProperties" +Comment="Opera 49" +Browser="Opera" +Version=49 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*OMI/*] +Parent="Opera 49" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*HbbTV/*] +Parent="Opera 49" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] +Parent="Opera 49" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 48 + +[Opera 48] +Parent="DefaultProperties" +Comment="Opera 48" +Browser="Opera" +Version=48 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*OMI/*] +Parent="Opera 48" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*HbbTV/*] +Parent="Opera 48" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] +Parent="Opera 48" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 47 + +[Opera 47] +Parent="DefaultProperties" +Comment="Opera 47" +Browser="Opera" +Version=47 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*OMI/*] +Parent="Opera 47" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*HbbTV/*] +Parent="Opera 47" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] +Parent="Opera 47" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 46 + +[Opera 46] +Parent="DefaultProperties" +Comment="Opera 46" +Browser="Opera" +Version=46 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*OMI/*] +Parent="Opera 46" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*HbbTV/*] +Parent="Opera 46" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] +Parent="Opera 46" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 45 + +[Opera 45] +Parent="DefaultProperties" +Comment="Opera 45" +Browser="Opera" +Version=45 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*OMI/*] +Parent="Opera 45" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*HbbTV/*] +Parent="Opera 45" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] +Parent="Opera 45" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 44 + +[Opera 44] +Parent="DefaultProperties" +Comment="Opera 44" +Browser="Opera" +Version=44 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*OMI/*] +Parent="Opera 44" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*HbbTV/*] +Parent="Opera 44" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] +Parent="Opera 44" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 43 + +[Opera 43] +Parent="DefaultProperties" +Comment="Opera 43" +Browser="Opera" +Version=43 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*OMI/*] +Parent="Opera 43" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*HbbTV/*] +Parent="Opera 43" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] +Parent="Opera 43" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 42 + +[Opera 42] +Parent="DefaultProperties" +Comment="Opera 42" +Browser="Opera" +Version=42 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*OMI/*] +Parent="Opera 42" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*HbbTV/*] +Parent="Opera 42" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] +Parent="Opera 42" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 41 + +[Opera 41] +Parent="DefaultProperties" +Comment="Opera 41" +Browser="Opera" +Version=41 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*OMI/*] +Parent="Opera 41" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*HbbTV/*] +Parent="Opera 41" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] +Parent="Opera 41" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 40 + +[Opera 40] +Parent="DefaultProperties" +Comment="Opera 40" +Browser="Opera" +Version=40 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*OMI/*] +Parent="Opera 40" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*HbbTV/*] +Parent="Opera 40" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] +Parent="Opera 40" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 39 + +[Opera 39] +Parent="DefaultProperties" +Comment="Opera 39" +Browser="Opera" +Version=39 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*OMI/*] +Parent="Opera 39" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*HbbTV/*] +Parent="Opera 39" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] +Parent="Opera 39" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 38 + +[Opera 38] +Parent="DefaultProperties" +Comment="Opera 38" +Browser="Opera" +Version=38 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*OMI/*] +Parent="Opera 38" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*HbbTV/*] +Parent="Opera 38" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] +Parent="Opera 38" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 37 + +[Opera 37] +Parent="DefaultProperties" +Comment="Opera 37" +Browser="Opera" +Version=37 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*OMI/*] +Parent="Opera 37" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*HbbTV/*] +Parent="Opera 37" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] +Parent="Opera 37" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 36 + +[Opera 36] +Parent="DefaultProperties" +Comment="Opera 36" +Browser="Opera" +Version=36 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*OMI/*] +Parent="Opera 36" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*HbbTV/*] +Parent="Opera 36" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] +Parent="Opera 36" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 35 + +[Opera 35] +Parent="DefaultProperties" +Comment="Opera 35" +Browser="Opera" +Version=35 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*OMI/*] +Parent="Opera 35" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*HbbTV/*] +Parent="Opera 35" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] +Parent="Opera 35" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 34 + +[Opera 34] +Parent="DefaultProperties" +Comment="Opera 34" +Browser="Opera" +Version=34 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*OMI/*] +Parent="Opera 34" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*HbbTV/*] +Parent="Opera 34" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] +Parent="Opera 34" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 33 + +[Opera 33] +Parent="DefaultProperties" +Comment="Opera 33" +Browser="Opera" +Version=33 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*OMI/*] +Parent="Opera 33" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*HbbTV/*] +Parent="Opera 33" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] +Parent="Opera 33" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 32 + +[Opera 32] +Parent="DefaultProperties" +Comment="Opera 32" +Browser="Opera" +Version=32 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*OMI/*] +Parent="Opera 32" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*HbbTV/*] +Parent="Opera 32" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] +Parent="Opera 32" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 31 + +[Opera 31] +Parent="DefaultProperties" +Comment="Opera 31" +Browser="Opera" +Version=31 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*OMI/*] +Parent="Opera 31" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] +Parent="Opera 31" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 30 + +[Opera 30] +Parent="DefaultProperties" +Comment="Opera 30" +Browser="Opera" +Version=30 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*OMI/*] +Parent="Opera 30" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] +Parent="Opera 30" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 29 + +[Opera 29] +Parent="DefaultProperties" +Comment="Opera 29" +Browser="Opera" +Version=29 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*OMI/*] +Parent="Opera 29" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] +Parent="Opera 29" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 28 + +[Opera 28] +Parent="DefaultProperties" +Comment="Opera 28" +Browser="Opera" +Version=28 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*OMI/*] +Parent="Opera 28" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] +Parent="Opera 28" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 27 + +[Opera 27] +Parent="DefaultProperties" +Comment="Opera 27" +Browser="Opera" +Version=27 +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Linux" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*OMI/*] +Parent="Opera 27" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] +Parent="Opera 27" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 99.0 + +[Edge 99.0] +Parent="DefaultProperties" +Comment="Edge 99.0" +Browser="Edge" +Version="99.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] +Parent="Edge 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] +Parent="Edge 99.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] +Parent="Edge 99.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] +Parent="Edge 99.0" +Platform="Win7" + +[Edge 98.0] +Parent="DefaultProperties" +Comment="Edge 98.0" +Browser="Edge" +Version="98.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] +Parent="Edge 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] +Parent="Edge 98.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] +Parent="Edge 98.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] +Parent="Edge 98.0" +Platform="Win7" + +[Edge 97.0] +Parent="DefaultProperties" +Comment="Edge 97.0" +Browser="Edge" +Version="97.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] +Parent="Edge 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] +Parent="Edge 97.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] +Parent="Edge 97.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] +Parent="Edge 97.0" +Platform="Win7" + +[Edge 96.0] +Parent="DefaultProperties" +Comment="Edge 96.0" +Browser="Edge" +Version="96.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] +Parent="Edge 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] +Parent="Edge 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] +Parent="Edge 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] +Parent="Edge 96.0" +Platform="Win7" + +[Edge 95.0] +Parent="DefaultProperties" +Comment="Edge 95.0" +Browser="Edge" +Version="95.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] +Parent="Edge 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] +Parent="Edge 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] +Parent="Edge 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] +Parent="Edge 95.0" +Platform="Win7" + +[Edge 94.0] +Parent="DefaultProperties" +Comment="Edge 94.0" +Browser="Edge" +Version="94.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] +Parent="Edge 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] +Parent="Edge 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] +Parent="Edge 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] +Parent="Edge 94.0" +Platform="Win7" + +[Edge 93.0] +Parent="DefaultProperties" +Comment="Edge 93.0" +Browser="Edge" +Version="93.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] +Parent="Edge 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] +Parent="Edge 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] +Parent="Edge 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] +Parent="Edge 93.0" +Platform="Win7" + +[Edge 92.0] +Parent="DefaultProperties" +Comment="Edge 92.0" +Browser="Edge" +Version="92.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] +Parent="Edge 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] +Parent="Edge 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] +Parent="Edge 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] +Parent="Edge 92.0" +Platform="Win7" + +[Edge 91.0] +Parent="DefaultProperties" +Comment="Edge 91.0" +Browser="Edge" +Version="91.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] +Parent="Edge 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] +Parent="Edge 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] +Parent="Edge 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] +Parent="Edge 91.0" +Platform="Win7" + +[Edge 90.0] +Parent="DefaultProperties" +Comment="Edge 90.0" +Browser="Edge" +Version="90.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] +Parent="Edge 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] +Parent="Edge 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] +Parent="Edge 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] +Parent="Edge 90.0" +Platform="Win7" + +[Edge 89.0] +Parent="DefaultProperties" +Comment="Edge 89.0" +Browser="Edge" +Version="89.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] +Parent="Edge 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] +Parent="Edge 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] +Parent="Edge 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] +Parent="Edge 89.0" +Platform="Win7" + +[Edge 88.0] +Parent="DefaultProperties" +Comment="Edge 88.0" +Browser="Edge" +Version="88.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] +Parent="Edge 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] +Parent="Edge 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] +Parent="Edge 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] +Parent="Edge 88.0" +Platform="Win7" + +[Edge 87.0] +Parent="DefaultProperties" +Comment="Edge 87.0" +Browser="Edge" +Version="87.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] +Parent="Edge 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] +Parent="Edge 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] +Parent="Edge 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] +Parent="Edge 87.0" +Platform="Win7" + +[Edge 86.0] +Parent="DefaultProperties" +Comment="Edge 86.0" +Browser="Edge" +Version="86.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] +Parent="Edge 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] +Parent="Edge 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] +Parent="Edge 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] +Parent="Edge 86.0" +Platform="Win7" + +[Edge 85.0] +Parent="DefaultProperties" +Comment="Edge 85.0" +Browser="Edge" +Version="85.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] +Parent="Edge 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] +Parent="Edge 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] +Parent="Edge 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] +Parent="Edge 85.0" +Platform="Win7" + +[Edge 84.0] +Parent="DefaultProperties" +Comment="Edge 84.0" +Browser="Edge" +Version="84.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] +Parent="Edge 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] +Parent="Edge 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] +Parent="Edge 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] +Parent="Edge 84.0" +Platform="Win7" + +[Edge 83.0] +Parent="DefaultProperties" +Comment="Edge 83.0" +Browser="Edge" +Version="83.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] +Parent="Edge 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] +Parent="Edge 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] +Parent="Edge 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] +Parent="Edge 83.0" +Platform="Win7" + +[Edge 82.0] +Parent="DefaultProperties" +Comment="Edge 82.0" +Browser="Edge" +Version="82.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] +Parent="Edge 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] +Parent="Edge 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] +Parent="Edge 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] +Parent="Edge 82.0" +Platform="Win7" + +[Edge 81.0] +Parent="DefaultProperties" +Comment="Edge 81.0" +Browser="Edge" +Version="81.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] +Parent="Edge 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] +Parent="Edge 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] +Parent="Edge 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] +Parent="Edge 81.0" +Platform="Win7" + +[Edge 80.0] +Parent="DefaultProperties" +Comment="Edge 80.0" +Browser="Edge" +Version="80.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] +Parent="Edge 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] +Parent="Edge 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] +Parent="Edge 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] +Parent="Edge 80.0" +Platform="Win7" + +[Edge 79.0] +Parent="DefaultProperties" +Comment="Edge 79.0" +Browser="Edge" +Version="79.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] +Parent="Edge 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] +Parent="Edge 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] +Parent="Edge 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] +Parent="Edge 79.0" +Platform="Win7" + +[Edge 78.0] +Parent="DefaultProperties" +Comment="Edge 78.0" +Browser="Edge" +Version="78.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] +Parent="Edge 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] +Parent="Edge 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] +Parent="Edge 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] +Parent="Edge 78.0" +Platform="Win7" + +[Edge 77.0] +Parent="DefaultProperties" +Comment="Edge 77.0" +Browser="Edge" +Version="77.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] +Parent="Edge 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] +Parent="Edge 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] +Parent="Edge 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] +Parent="Edge 77.0" +Platform="Win7" + +[Edge 76.0] +Parent="DefaultProperties" +Comment="Edge 76.0" +Browser="Edge" +Version="76.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] +Parent="Edge 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] +Parent="Edge 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] +Parent="Edge 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] +Parent="Edge 76.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 75.0 + +[Edge 75.0] +Parent="DefaultProperties" +Comment="Edge 75.0" +Browser="Edge" +Version="75.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/75.*] +Parent="Edge 75.0" +Platform="Win10" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 74.0 + +[Edge 74.0] +Parent="DefaultProperties" +Comment="Edge 74.0" +Browser="Edge" +Version="74.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/74.*] +Parent="Edge 74.0" +Platform="Win10" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 45.0 for iOS + +[Edge 45.0 for iOS] +Parent="DefaultProperties" +Comment="Edge 45.0" +Browser="Edge" +Version="45.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/45.* Mobile/* Safari/*] +Parent="Edge 45.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/45.* Mobile/* Safari/*] +Parent="Edge 45.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 44.0 for iOS + +[Edge 44.0 for iOS] +Parent="DefaultProperties" +Comment="Edge 44.0" +Browser="Edge" +Version="44.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/44.* Mobile/* Safari/*] +Parent="Edge 44.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/44.* Mobile/* Safari/*] +Parent="Edge 44.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 43.0 for iOS + +[Edge 43.0 for iOS] +Parent="DefaultProperties" +Comment="Edge 43.0" +Browser="Edge" +Version="43.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/43.* Mobile/* Safari/*] +Parent="Edge 43.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/43.* Mobile/* Safari/*] +Parent="Edge 43.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 42.0 for iOS + +[Edge 42.0 for iOS] +Parent="DefaultProperties" +Comment="Edge 42.0" +Browser="Edge" +Version="42.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/42.* Mobile/* Safari/*] +Parent="Edge 42.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/42.* Mobile/* Safari/*] +Parent="Edge 42.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 41.0 for iOS + +[Edge 41.0 for iOS] +Parent="DefaultProperties" +Comment="Edge 41.0" +Browser="Edge" +Version="41.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/41.* Mobile/* Safari/*] +Parent="Edge 41.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/41.* Mobile/* Safari/*] +Parent="Edge 41.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 92.0 + +[Headless Edge 92.0] +Parent="DefaultProperties" +Comment="Headless Edge 92.0" +Browser="Headless Edge" +Version="92.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] +Parent="Headless Edge 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] +Parent="Headless Edge 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] +Parent="Headless Edge 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] +Parent="Headless Edge 92.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 91.0 + +[Headless Edge 91.0] +Parent="DefaultProperties" +Comment="Headless Edge 91.0" +Browser="Headless Edge" +Version="91.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] +Parent="Headless Edge 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] +Parent="Headless Edge 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] +Parent="Headless Edge 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] +Parent="Headless Edge 91.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 90.0 + +[Headless Edge 90.0] +Parent="DefaultProperties" +Comment="Headless Edge 90.0" +Browser="Headless Edge" +Version="90.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] +Parent="Headless Edge 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] +Parent="Headless Edge 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] +Parent="Headless Edge 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] +Parent="Headless Edge 90.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 89.0 + +[Headless Edge 89.0] +Parent="DefaultProperties" +Comment="Headless Edge 89.0" +Browser="Headless Edge" +Version="89.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] +Parent="Headless Edge 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] +Parent="Headless Edge 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] +Parent="Headless Edge 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] +Parent="Headless Edge 89.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 88.0 + +[Headless Edge 88.0] +Parent="DefaultProperties" +Comment="Headless Edge 88.0" +Browser="Headless Edge" +Version="88.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] +Parent="Headless Edge 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] +Parent="Headless Edge 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] +Parent="Headless Edge 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] +Parent="Headless Edge 88.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 87.0 + +[Headless Edge 87.0] +Parent="DefaultProperties" +Comment="Headless Edge 87.0" +Browser="Headless Edge" +Version="87.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] +Parent="Headless Edge 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] +Parent="Headless Edge 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] +Parent="Headless Edge 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] +Parent="Headless Edge 87.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 86.0 + +[Headless Edge 86.0] +Parent="DefaultProperties" +Comment="Headless Edge 86.0" +Browser="Headless Edge" +Version="86.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] +Parent="Headless Edge 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] +Parent="Headless Edge 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] +Parent="Headless Edge 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] +Parent="Headless Edge 86.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 85.0 + +[Headless Edge 85.0] +Parent="DefaultProperties" +Comment="Headless Edge 85.0" +Browser="Headless Edge" +Version="85.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] +Parent="Headless Edge 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] +Parent="Headless Edge 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] +Parent="Headless Edge 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] +Parent="Headless Edge 85.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 84.0 + +[Headless Edge 84.0] +Parent="DefaultProperties" +Comment="Headless Edge 84.0" +Browser="Headless Edge" +Version="84.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] +Parent="Headless Edge 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] +Parent="Headless Edge 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] +Parent="Headless Edge 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] +Parent="Headless Edge 84.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 83.0 + +[Headless Edge 83.0] +Parent="DefaultProperties" +Comment="Headless Edge 83.0" +Browser="Headless Edge" +Version="83.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] +Parent="Headless Edge 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] +Parent="Headless Edge 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] +Parent="Headless Edge 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] +Parent="Headless Edge 83.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 82.0 + +[Headless Edge 82.0] +Parent="DefaultProperties" +Comment="Headless Edge 82.0" +Browser="Headless Edge" +Version="82.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] +Parent="Headless Edge 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] +Parent="Headless Edge 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] +Parent="Headless Edge 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] +Parent="Headless Edge 82.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 81.0 + +[Headless Edge 81.0] +Parent="DefaultProperties" +Comment="Headless Edge 81.0" +Browser="Headless Edge" +Version="81.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] +Parent="Headless Edge 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] +Parent="Headless Edge 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] +Parent="Headless Edge 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] +Parent="Headless Edge 81.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 80.0 + +[Headless Edge 80.0] +Parent="DefaultProperties" +Comment="Headless Edge 80.0" +Browser="Headless Edge" +Version="80.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] +Parent="Headless Edge 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] +Parent="Headless Edge 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] +Parent="Headless Edge 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] +Parent="Headless Edge 80.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 79.0 + +[Headless Edge 79.0] +Parent="DefaultProperties" +Comment="Headless Edge 79.0" +Browser="Headless Edge" +Version="79.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] +Parent="Headless Edge 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] +Parent="Headless Edge 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] +Parent="Headless Edge 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] +Parent="Headless Edge 79.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 78.0 + +[Headless Edge 78.0] +Parent="DefaultProperties" +Comment="Headless Edge 78.0" +Browser="Headless Edge" +Version="78.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] +Parent="Headless Edge 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] +Parent="Headless Edge 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] +Parent="Headless Edge 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] +Parent="Headless Edge 78.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 77.0 + +[Headless Edge 77.0] +Parent="DefaultProperties" +Comment="Headless Edge 77.0" +Browser="Headless Edge" +Version="77.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] +Parent="Headless Edge 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] +Parent="Headless Edge 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] +Parent="Headless Edge 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] +Parent="Headless Edge 77.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 76.0 + +[Headless Edge 76.0] +Parent="DefaultProperties" +Comment="Headless Edge 76.0" +Browser="Headless Edge" +Version="76.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] +Parent="Headless Edge 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] +Parent="Headless Edge 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] +Parent="Headless Edge 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] +Parent="Headless Edge 76.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 18.0 + +[Edge 18.0] +Parent="DefaultProperties" +Comment="Edge 18.0" +Browser="Edge" +Version="18.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge 18.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge 18.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge 18.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/18.*] +Parent="Edge 18.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/18.*] +Parent="Edge 18.0" +Platform="Win10" + +[Edge Mobile 18.0] +Parent="DefaultProperties" +Comment="Edge Mobile 18.0" +Browser="Edge Mobile" +Version="18.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge Mobile 18.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge Mobile 18.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge Mobile 18.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge Mobile 18.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] +Parent="Edge Mobile 18.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 17.0 + +[Edge 17.0] +Parent="DefaultProperties" +Comment="Edge 17.0" +Browser="Edge" +Version="17.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge 17.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge 17.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge 17.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/17.*] +Parent="Edge 17.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/17.*] +Parent="Edge 17.0" +Platform="Win10" + +[Edge Mobile 17.0] +Parent="DefaultProperties" +Comment="Edge Mobile 17.0" +Browser="Edge Mobile" +Version="17.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge Mobile 17.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge Mobile 17.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge Mobile 17.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge Mobile 17.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] +Parent="Edge Mobile 17.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 16.0 + +[Edge 16.0] +Parent="DefaultProperties" +Comment="Edge 16.0" +Browser="Edge" +Version="16.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge 16.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge 16.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge 16.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/16.*] +Parent="Edge 16.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/16.*] +Parent="Edge 16.0" +Platform="Win10" + +[Edge Mobile 16.0] +Parent="DefaultProperties" +Comment="Edge Mobile 16.0" +Browser="Edge Mobile" +Version="16.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge Mobile 16.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge Mobile 16.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge Mobile 16.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge Mobile 16.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] +Parent="Edge Mobile 16.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 15.0 + +[Edge 15.0] +Parent="DefaultProperties" +Comment="Edge 15.0" +Browser="Edge" +Version="15.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge 15.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge 15.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge 15.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/15.*] +Parent="Edge 15.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/15.*] +Parent="Edge 15.0" +Platform="Win10" + +[Edge Mobile 15.0] +Parent="DefaultProperties" +Comment="Edge Mobile 15.0" +Browser="Edge Mobile" +Version="15.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge Mobile 15.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge Mobile 15.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge Mobile 15.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge Mobile 15.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] +Parent="Edge Mobile 15.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 14.0 + +[Edge 14.0] +Parent="DefaultProperties" +Comment="Edge 14.0" +Browser="Edge" +Version="14.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge 14.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge 14.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge 14.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/14.*] +Parent="Edge 14.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/14.*] +Parent="Edge 14.0" +Platform="Win10" + +[Edge Mobile 14.0] +Parent="DefaultProperties" +Comment="Edge Mobile 14.0" +Browser="Edge Mobile" +Version="14.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge Mobile 14.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge Mobile 14.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge Mobile 14.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge Mobile 14.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] +Parent="Edge Mobile 14.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 13.0 + +[Edge 13.0] +Parent="DefaultProperties" +Comment="Edge 13.0" +Browser="Edge" +Version="13.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge 13.0" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge 13.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge 13.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/13.*] +Parent="Edge 13.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/13.*] +Parent="Edge 13.0" +Platform="Win10" + +[Edge Mobile 13.0] +Parent="DefaultProperties" +Comment="Edge Mobile 13.0" +Browser="Edge Mobile" +Version="13.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge Mobile 13.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge Mobile 13.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge Mobile 13.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge Mobile 13.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] +Parent="Edge Mobile 13.0" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 45.0 for Android + +[Edge 45.0 for Android] +Parent="DefaultProperties" +Comment="Edge 45.0" +Browser="Edge" +Version="45.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/45.*] +Parent="Edge 45.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 44.0 for Android + +[Edge 44.0 for Android] +Parent="DefaultProperties" +Comment="Edge 44.0" +Browser="Edge" +Version="44.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/44.*] +Parent="Edge 44.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 43.0 for Android + +[Edge 43.0 for Android] +Parent="DefaultProperties" +Comment="Edge 43.0" +Browser="Edge" +Version="43.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/43.*] +Parent="Edge 43.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 42.0 for Android + +[Edge 42.0 for Android] +Parent="DefaultProperties" +Comment="Edge 42.0" +Browser="Edge" +Version="42.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/42.*] +Parent="Edge 42.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 41.0 for Android + +[Edge 41.0 for Android] +Parent="DefaultProperties" +Comment="Edge 41.0" +Browser="Edge" +Version="41.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/41.*] +Parent="Edge 41.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ecosia + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge Generic + +[Edge Generic] +Parent="DefaultProperties" +Comment="Edge Generic" +Browser="Edge" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Generic" +Platform="Xbox OS 10" +Device_Type="TV Device" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows* Anonymisiert durch AlMiSoft Browser-*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Generic" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] +Parent="Edge Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] +Parent="Edge Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] +Parent="Edge Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] +Parent="Edge Generic" +Platform="Win7" + +[Edge Mobile Generic] +Parent="DefaultProperties" +Comment="Edge Mobile Generic" +Browser="Edge Mobile" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Mobile Generic" + +[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] +Parent="Edge Mobile Generic" +Platform="Xbox OS 10 (Mobile View)" +isMobileDevice="false" +Device_Type="TV Device" + +[Edge Generic for Android] +Parent="DefaultProperties" +Comment="Edge Generic for Android" +Browser="Edge" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/*] +Parent="Edge Generic for Android" + +[Edge Generic for iOS] +Parent="DefaultProperties" +Comment="Edge Generic for iOS" +Browser="Edge" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/* Mobile/* Safari/*] +Parent="Edge Generic for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/* Mobile/* Safari/*] +Parent="Edge Generic for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 12.0 + +[Edge 12.0] +Parent="DefaultProperties" +Comment="Edge 12.0" +Browser="Edge" +Version="12.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge 12.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge 12.0" +Platform="Win10" + +[Edge Mobile 12.0] +Parent="DefaultProperties" +Comment="Edge Mobile 12.0" +Browser="Edge Mobile" +Version="12.0" +Platform="WinPhone10" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Windows Phone 10.0*id336*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge Mobile 12.0" + +[Mozilla/5.0 (*Windows Phone 10.0*RM-1104*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge Mobile 12.0" + +[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge Mobile 12.0" + +[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] +Parent="Edge Mobile 12.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge Generic + +[Headless Edge Generic] +Parent="DefaultProperties" +Comment="Headless Edge Generic" +Browser="Headless Edge" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] +Parent="Headless Edge Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] +Parent="Headless Edge Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] +Parent="Headless Edge Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] +Parent="Headless Edge Generic" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 99.0 for Android + +[Chrome 99.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 99.0" +Browser="Chrome" +Version="99.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Mobile Safari/*] +Parent="Chrome 99.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 98.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 98.0" +Browser="Chrome" +Version="98.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Mobile Safari/*] +Parent="Chrome 98.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 97.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 97.0" +Browser="Chrome" +Version="97.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Mobile Safari/*] +Parent="Chrome 97.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 96.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 96.0" +Browser="Chrome" +Version="96.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Mobile Safari/*] +Parent="Chrome 96.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 95.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 95.0" +Browser="Chrome" +Version="95.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Mobile Safari/*] +Parent="Chrome 95.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 94.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 94.0" +Browser="Chrome" +Version="94.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Mobile Safari/*] +Parent="Chrome 94.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 93.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 93.0" +Browser="Chrome" +Version="93.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Mobile Safari/*] +Parent="Chrome 93.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 92.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 92.0" +Browser="Chrome" +Version="92.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Mobile Safari/*] +Parent="Chrome 92.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 91.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 91.0" +Browser="Chrome" +Version="91.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Mobile Safari/*] +Parent="Chrome 91.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 90.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 90.0" +Browser="Chrome" +Version="90.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Mobile Safari/*] +Parent="Chrome 90.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 89.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 89.0" +Browser="Chrome" +Version="89.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Mobile Safari/*] +Parent="Chrome 89.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 88.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 88.0" +Browser="Chrome" +Version="88.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Mobile Safari/*] +Parent="Chrome 88.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 87.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 87.0" +Browser="Chrome" +Version="87.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Mobile Safari/*] +Parent="Chrome 87.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 86.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 86.0" +Browser="Chrome" +Version="86.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Mobile Safari/*] +Parent="Chrome 86.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 85.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 85.0" +Browser="Chrome" +Version="85.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Mobile Safari/*] +Parent="Chrome 85.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 84.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 84.0" +Browser="Chrome" +Version="84.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Mobile Safari/*] +Parent="Chrome 84.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 83.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 83.0" +Browser="Chrome" +Version="83.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Mobile Safari/*] +Parent="Chrome 83.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 82.0 for Android + +[Chrome 82.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 82.0" +Browser="Chrome" +Version="82.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Mobile Safari/*] +Parent="Chrome 82.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 81.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 81.0" +Browser="Chrome" +Version="81.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Mobile Safari/*] +Parent="Chrome 81.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 80.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 80.0" +Browser="Chrome" +Version="80.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Mobile Safari/*] +Parent="Chrome 80.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 79.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 79.0" +Browser="Chrome" +Version="79.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Mobile Safari/*] +Parent="Chrome 79.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 78.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 78.0" +Browser="Chrome" +Version="78.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Mobile Safari/*] +Parent="Chrome 78.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 77.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 77.0" +Browser="Chrome" +Version="77.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Mobile Safari/*] +Parent="Chrome 77.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 76.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 76.0" +Browser="Chrome" +Version="76.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Mobile Safari/*] +Parent="Chrome 76.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 75.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 75.0" +Browser="Chrome" +Version="75.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Mobile Safari/*] +Parent="Chrome 75.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 74.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 74.0" +Browser="Chrome" +Version="74.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Mobile Safari/*] +Parent="Chrome 74.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 73.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 73.0" +Browser="Chrome" +Version="73.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Mobile Safari/*] +Parent="Chrome 73.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 72.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 72.0" +Browser="Chrome" +Version="72.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Mobile Safari/*] +Parent="Chrome 72.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 71.0 for Android + +[Chrome 71.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 71.0" +Browser="Chrome" +Version="71.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Mobile Safari/*] +Parent="Chrome 71.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 70.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 70.0" +Browser="Chrome" +Version="70.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Mobile Safari/*] +Parent="Chrome 70.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 69.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 69.0" +Browser="Chrome" +Version="69.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Mobile Safari/*] +Parent="Chrome 69.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 68.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 68.0" +Browser="Chrome" +Version="68.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Mobile Safari/*] +Parent="Chrome 68.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 67.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 67.0" +Browser="Chrome" +Version="67.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Mobile Safari/*] +Parent="Chrome 67.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 66.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 66.0" +Browser="Chrome" +Version="66.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Mobile Safari/*] +Parent="Chrome 66.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 65.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 65.0" +Browser="Chrome" +Version="65.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Mobile Safari/*] +Parent="Chrome 65.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 64.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 64.0" +Browser="Chrome" +Version="64.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Mobile Safari/*] +Parent="Chrome 64.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 63.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 63.0" +Browser="Chrome" +Version="63.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Mobile Safari/*] +Parent="Chrome 63.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 62.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 62.0" +Browser="Chrome" +Version="62.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Mobile Safari/*] +Parent="Chrome 62.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 61.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 61.0" +Browser="Chrome" +Version="61.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Mobile Safari/*] +Parent="Chrome 61.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 60.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 60.0" +Browser="Chrome" +Version="60.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Mobile Safari/*] +Parent="Chrome 60.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 59.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 59.0" +Browser="Chrome" +Version="59.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Mobile Safari/*] +Parent="Chrome 59.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 58.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 58.0" +Browser="Chrome" +Version="58.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Mobile Safari/*] +Parent="Chrome 58.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 57.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 57.0" +Browser="Chrome" +Version="57.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Mobile Safari/*] +Parent="Chrome 57.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 56.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 56.0" +Browser="Chrome" +Version="56.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Mobile Safari/*] +Parent="Chrome 56.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 55.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 55.0" +Browser="Chrome" +Version="55.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Mobile Safari/*] +Parent="Chrome 55.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 54.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 54.0" +Browser="Chrome" +Version="54.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Mobile Safari/*] +Parent="Chrome 54.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 53.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 53.0" +Browser="Chrome" +Version="53.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Mobile Safari/*] +Parent="Chrome 53.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 52.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 52.0" +Browser="Chrome" +Version="52.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Mobile Safari/*] +Parent="Chrome 52.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 51.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 51.0" +Browser="Chrome" +Version="51.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Mobile Safari/*] +Parent="Chrome 51.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 50.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 50.0" +Browser="Chrome" +Version="50.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Mobile Safari/*] +Parent="Chrome 50.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 49.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 49.0" +Browser="Chrome" +Version="49.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/49.0*Mobile Safari/*] +Parent="Chrome 49.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/49.0*Safari/*] +Parent="Chrome 49.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 48.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 48.0" +Browser="Chrome" +Version="48.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/48.0*Mobile Safari/*] +Parent="Chrome 48.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/48.0*Safari/*] +Parent="Chrome 48.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 47.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 47.0" +Browser="Chrome" +Version="47.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/47.0*Mobile Safari/*] +Parent="Chrome 47.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/47.0*Safari/*] +Parent="Chrome 47.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 46.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 46.0" +Browser="Chrome" +Version="46.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/46.0*Mobile Safari/*] +Parent="Chrome 46.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/46.0*Safari/*] +Parent="Chrome 46.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 45.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 45.0" +Browser="Chrome" +Version="45.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/45.0*Mobile Safari/*] +Parent="Chrome 45.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/45.0*Safari/*] +Parent="Chrome 45.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 44.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 44.0" +Browser="Chrome" +Version="44.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/44.0*Mobile Safari/*] +Parent="Chrome 44.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/44.0*Safari/*] +Parent="Chrome 44.0 for Android" +isTablet="true" +Device_Type="Tablet" + +[Chrome 43.0 for Android] +Parent="DefaultProperties" +Comment="Chrome 43.0" +Browser="Chrome" +Version="43.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/43.0*Mobile Safari/*] +Parent="Chrome 43.0 for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/43.0*Safari/*] +Parent="Chrome 43.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 99.0 + +[Chrome 99.0] +Parent="DefaultProperties" +Comment="Chrome 99.0" +Browser="Chrome" +Version="99.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] +Parent="Chrome 99.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] +Parent="Chrome 99.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] +Parent="Chrome 99.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] +Parent="Chrome 99.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] +Parent="Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] +Parent="Chrome 99.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] +Parent="Chrome 99.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] +Parent="Chrome 99.0" +Platform="Win7" + +[Chrome 98.0] +Parent="DefaultProperties" +Comment="Chrome 98.0" +Browser="Chrome" +Version="98.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] +Parent="Chrome 98.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] +Parent="Chrome 98.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] +Parent="Chrome 98.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] +Parent="Chrome 98.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] +Parent="Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] +Parent="Chrome 98.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] +Parent="Chrome 98.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] +Parent="Chrome 98.0" +Platform="Win7" + +[Chrome 97.0] +Parent="DefaultProperties" +Comment="Chrome 97.0" +Browser="Chrome" +Version="97.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] +Parent="Chrome 97.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] +Parent="Chrome 97.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] +Parent="Chrome 97.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] +Parent="Chrome 97.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] +Parent="Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] +Parent="Chrome 97.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] +Parent="Chrome 97.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] +Parent="Chrome 97.0" +Platform="Win7" + +[Chrome 96.0] +Parent="DefaultProperties" +Comment="Chrome 96.0" +Browser="Chrome" +Version="96.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] +Parent="Chrome 96.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] +Parent="Chrome 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] +Parent="Chrome 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] +Parent="Chrome 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] +Parent="Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] +Parent="Chrome 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] +Parent="Chrome 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] +Parent="Chrome 96.0" +Platform="Win7" + +[Chrome 95.0] +Parent="DefaultProperties" +Comment="Chrome 95.0" +Browser="Chrome" +Version="95.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] +Parent="Chrome 95.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] +Parent="Chrome 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] +Parent="Chrome 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] +Parent="Chrome 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] +Parent="Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] +Parent="Chrome 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] +Parent="Chrome 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] +Parent="Chrome 95.0" +Platform="Win7" + +[Chrome 94.0] +Parent="DefaultProperties" +Comment="Chrome 94.0" +Browser="Chrome" +Version="94.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] +Parent="Chrome 94.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] +Parent="Chrome 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] +Parent="Chrome 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] +Parent="Chrome 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] +Parent="Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] +Parent="Chrome 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] +Parent="Chrome 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] +Parent="Chrome 94.0" +Platform="Win7" + +[Chrome 93.0] +Parent="DefaultProperties" +Comment="Chrome 93.0" +Browser="Chrome" +Version="93.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] +Parent="Chrome 93.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] +Parent="Chrome 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] +Parent="Chrome 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] +Parent="Chrome 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] +Parent="Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] +Parent="Chrome 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] +Parent="Chrome 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] +Parent="Chrome 93.0" +Platform="Win7" + +[Chrome 92.0] +Parent="DefaultProperties" +Comment="Chrome 92.0" +Browser="Chrome" +Version="92.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] +Parent="Chrome 92.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] +Parent="Chrome 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] +Parent="Chrome 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] +Parent="Chrome 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] +Parent="Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] +Parent="Chrome 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] +Parent="Chrome 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] +Parent="Chrome 92.0" +Platform="Win7" + +[Chrome 91.0] +Parent="DefaultProperties" +Comment="Chrome 91.0" +Browser="Chrome" +Version="91.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] +Parent="Chrome 91.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] +Parent="Chrome 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] +Parent="Chrome 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] +Parent="Chrome 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] +Parent="Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] +Parent="Chrome 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] +Parent="Chrome 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] +Parent="Chrome 91.0" +Platform="Win7" + +[Chrome 90.0] +Parent="DefaultProperties" +Comment="Chrome 90.0" +Browser="Chrome" +Version="90.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] +Parent="Chrome 90.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] +Parent="Chrome 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] +Parent="Chrome 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] +Parent="Chrome 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] +Parent="Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] +Parent="Chrome 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] +Parent="Chrome 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] +Parent="Chrome 90.0" +Platform="Win7" + +[Chrome 89.0] +Parent="DefaultProperties" +Comment="Chrome 89.0" +Browser="Chrome" +Version="89.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] +Parent="Chrome 89.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] +Parent="Chrome 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] +Parent="Chrome 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] +Parent="Chrome 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] +Parent="Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] +Parent="Chrome 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] +Parent="Chrome 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] +Parent="Chrome 89.0" +Platform="Win7" + +[Chrome 88.0] +Parent="DefaultProperties" +Comment="Chrome 88.0" +Browser="Chrome" +Version="88.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] +Parent="Chrome 88.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] +Parent="Chrome 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] +Parent="Chrome 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] +Parent="Chrome 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] +Parent="Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] +Parent="Chrome 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] +Parent="Chrome 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] +Parent="Chrome 88.0" +Platform="Win7" + +[Chrome 87.0] +Parent="DefaultProperties" +Comment="Chrome 87.0" +Browser="Chrome" +Version="87.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] +Parent="Chrome 87.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] +Parent="Chrome 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] +Parent="Chrome 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] +Parent="Chrome 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] +Parent="Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] +Parent="Chrome 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] +Parent="Chrome 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] +Parent="Chrome 87.0" +Platform="Win7" + +[Chrome 86.0] +Parent="DefaultProperties" +Comment="Chrome 86.0" +Browser="Chrome" +Version="86.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] +Parent="Chrome 86.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] +Parent="Chrome 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] +Parent="Chrome 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] +Parent="Chrome 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] +Parent="Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] +Parent="Chrome 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] +Parent="Chrome 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] +Parent="Chrome 86.0" +Platform="Win7" + +[Chrome 85.0] +Parent="DefaultProperties" +Comment="Chrome 85.0" +Browser="Chrome" +Version="85.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] +Parent="Chrome 85.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] +Parent="Chrome 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] +Parent="Chrome 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] +Parent="Chrome 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] +Parent="Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] +Parent="Chrome 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] +Parent="Chrome 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] +Parent="Chrome 85.0" +Platform="Win7" + +[Chrome 84.0] +Parent="DefaultProperties" +Comment="Chrome 84.0" +Browser="Chrome" +Version="84.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] +Parent="Chrome 84.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] +Parent="Chrome 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] +Parent="Chrome 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] +Parent="Chrome 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] +Parent="Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] +Parent="Chrome 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] +Parent="Chrome 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] +Parent="Chrome 84.0" +Platform="Win7" + +[Chrome 83.0] +Parent="DefaultProperties" +Comment="Chrome 83.0" +Browser="Chrome" +Version="83.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] +Parent="Chrome 83.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] +Parent="Chrome 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] +Parent="Chrome 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] +Parent="Chrome 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] +Parent="Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] +Parent="Chrome 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] +Parent="Chrome 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] +Parent="Chrome 83.0" +Platform="Win7" + +[Chrome 82.0] +Parent="DefaultProperties" +Comment="Chrome 82.0" +Browser="Chrome" +Version="82.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] +Parent="Chrome 82.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] +Parent="Chrome 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] +Parent="Chrome 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] +Parent="Chrome 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] +Parent="Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] +Parent="Chrome 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] +Parent="Chrome 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] +Parent="Chrome 82.0" +Platform="Win7" + +[Chrome 81.0] +Parent="DefaultProperties" +Comment="Chrome 81.0" +Browser="Chrome" +Version="81.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] +Parent="Chrome 81.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] +Parent="Chrome 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] +Parent="Chrome 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] +Parent="Chrome 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] +Parent="Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] +Parent="Chrome 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] +Parent="Chrome 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] +Parent="Chrome 81.0" +Platform="Win7" + +[Chrome 80.0] +Parent="DefaultProperties" +Comment="Chrome 80.0" +Browser="Chrome" +Version="80.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] +Parent="Chrome 80.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] +Parent="Chrome 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] +Parent="Chrome 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] +Parent="Chrome 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] +Parent="Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] +Parent="Chrome 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] +Parent="Chrome 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] +Parent="Chrome 80.0" +Platform="Win7" + +[Chrome 79.0] +Parent="DefaultProperties" +Comment="Chrome 79.0" +Browser="Chrome" +Version="79.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] +Parent="Chrome 79.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] +Parent="Chrome 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] +Parent="Chrome 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] +Parent="Chrome 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] +Parent="Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] +Parent="Chrome 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] +Parent="Chrome 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] +Parent="Chrome 79.0" +Platform="Win7" + +[Chrome 78.0] +Parent="DefaultProperties" +Comment="Chrome 78.0" +Browser="Chrome" +Version="78.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] +Parent="Chrome 78.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] +Parent="Chrome 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] +Parent="Chrome 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] +Parent="Chrome 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] +Parent="Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] +Parent="Chrome 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] +Parent="Chrome 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] +Parent="Chrome 78.0" +Platform="Win7" + +[Chrome 77.0] +Parent="DefaultProperties" +Comment="Chrome 77.0" +Browser="Chrome" +Version="77.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] +Parent="Chrome 77.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] +Parent="Chrome 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] +Parent="Chrome 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] +Parent="Chrome 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] +Parent="Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] +Parent="Chrome 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] +Parent="Chrome 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] +Parent="Chrome 77.0" +Platform="Win7" + +[Chrome 76.0] +Parent="DefaultProperties" +Comment="Chrome 76.0" +Browser="Chrome" +Version="76.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] +Parent="Chrome 76.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] +Parent="Chrome 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] +Parent="Chrome 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] +Parent="Chrome 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] +Parent="Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] +Parent="Chrome 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] +Parent="Chrome 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] +Parent="Chrome 76.0" +Platform="Win7" + +[Chrome 75.0] +Parent="DefaultProperties" +Comment="Chrome 75.0" +Browser="Chrome" +Version="75.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] +Parent="Chrome 75.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] +Parent="Chrome 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] +Parent="Chrome 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] +Parent="Chrome 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] +Parent="Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] +Parent="Chrome 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] +Parent="Chrome 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] +Parent="Chrome 75.0" +Platform="Win7" + +[Chrome 74.0] +Parent="DefaultProperties" +Comment="Chrome 74.0" +Browser="Chrome" +Version="74.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] +Parent="Chrome 74.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] +Parent="Chrome 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] +Parent="Chrome 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] +Parent="Chrome 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] +Parent="Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] +Parent="Chrome 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] +Parent="Chrome 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] +Parent="Chrome 74.0" +Platform="Win7" + +[Chrome 73.0] +Parent="DefaultProperties" +Comment="Chrome 73.0" +Browser="Chrome" +Version="73.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] +Parent="Chrome 73.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] +Parent="Chrome 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] +Parent="Chrome 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] +Parent="Chrome 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] +Parent="Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] +Parent="Chrome 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] +Parent="Chrome 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] +Parent="Chrome 73.0" +Platform="Win7" + +[Chrome 72.0] +Parent="DefaultProperties" +Comment="Chrome 72.0" +Browser="Chrome" +Version="72.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] +Parent="Chrome 72.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] +Parent="Chrome 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] +Parent="Chrome 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] +Parent="Chrome 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] +Parent="Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] +Parent="Chrome 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] +Parent="Chrome 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] +Parent="Chrome 72.0" +Platform="Win7" + +[Chrome 71.0] +Parent="DefaultProperties" +Comment="Chrome 71.0" +Browser="Chrome" +Version="71.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] +Parent="Chrome 71.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] +Parent="Chrome 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] +Parent="Chrome 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] +Parent="Chrome 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] +Parent="Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] +Parent="Chrome 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] +Parent="Chrome 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] +Parent="Chrome 71.0" +Platform="Win7" + +[Chrome 70.0] +Parent="DefaultProperties" +Comment="Chrome 70.0" +Browser="Chrome" +Version="70.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] +Parent="Chrome 70.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] +Parent="Chrome 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] +Parent="Chrome 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] +Parent="Chrome 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] +Parent="Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] +Parent="Chrome 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] +Parent="Chrome 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] +Parent="Chrome 70.0" +Platform="Win7" + +[Chrome 69.0] +Parent="DefaultProperties" +Comment="Chrome 69.0" +Browser="Chrome" +Version="69.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] +Parent="Chrome 69.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] +Parent="Chrome 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] +Parent="Chrome 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] +Parent="Chrome 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] +Parent="Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] +Parent="Chrome 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] +Parent="Chrome 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] +Parent="Chrome 69.0" +Platform="Win7" + +[Chrome 68.0] +Parent="DefaultProperties" +Comment="Chrome 68.0" +Browser="Chrome" +Version="68.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] +Parent="Chrome 68.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] +Parent="Chrome 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] +Parent="Chrome 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] +Parent="Chrome 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] +Parent="Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] +Parent="Chrome 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] +Parent="Chrome 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] +Parent="Chrome 68.0" +Platform="Win7" + +[Chrome 67.0] +Parent="DefaultProperties" +Comment="Chrome 67.0" +Browser="Chrome" +Version="67.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] +Parent="Chrome 67.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] +Parent="Chrome 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] +Parent="Chrome 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] +Parent="Chrome 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] +Parent="Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] +Parent="Chrome 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] +Parent="Chrome 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] +Parent="Chrome 67.0" +Platform="Win7" + +[Chrome 66.0] +Parent="DefaultProperties" +Comment="Chrome 66.0" +Browser="Chrome" +Version="66.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] +Parent="Chrome 66.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] +Parent="Chrome 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] +Parent="Chrome 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] +Parent="Chrome 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] +Parent="Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] +Parent="Chrome 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] +Parent="Chrome 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] +Parent="Chrome 66.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 65.0 + +[Chrome 65.0] +Parent="DefaultProperties" +Comment="Chrome 65.0" +Browser="Chrome" +Version="65.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] +Parent="Chrome 65.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] +Parent="Chrome 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] +Parent="Chrome 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] +Parent="Chrome 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] +Parent="Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] +Parent="Chrome 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] +Parent="Chrome 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] +Parent="Chrome 65.0" +Platform="Win7" + +[Chrome 64.0] +Parent="DefaultProperties" +Comment="Chrome 64.0" +Browser="Chrome" +Version="64.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] +Parent="Chrome 64.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] +Parent="Chrome 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] +Parent="Chrome 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] +Parent="Chrome 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] +Parent="Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] +Parent="Chrome 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] +Parent="Chrome 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] +Parent="Chrome 64.0" +Platform="Win7" + +[Chrome 63.0] +Parent="DefaultProperties" +Comment="Chrome 63.0" +Browser="Chrome" +Version="63.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] +Parent="Chrome 63.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] +Parent="Chrome 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] +Parent="Chrome 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] +Parent="Chrome 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] +Parent="Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] +Parent="Chrome 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] +Parent="Chrome 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] +Parent="Chrome 63.0" +Platform="Win7" + +[Chrome 62.0] +Parent="DefaultProperties" +Comment="Chrome 62.0" +Browser="Chrome" +Version="62.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] +Parent="Chrome 62.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] +Parent="Chrome 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] +Parent="Chrome 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] +Parent="Chrome 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] +Parent="Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] +Parent="Chrome 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] +Parent="Chrome 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] +Parent="Chrome 62.0" +Platform="Win7" + +[Chrome 61.0] +Parent="DefaultProperties" +Comment="Chrome 61.0" +Browser="Chrome" +Version="61.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] +Parent="Chrome 61.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] +Parent="Chrome 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] +Parent="Chrome 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] +Parent="Chrome 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] +Parent="Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] +Parent="Chrome 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] +Parent="Chrome 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] +Parent="Chrome 61.0" +Platform="Win7" + +[Chrome 60.0] +Parent="DefaultProperties" +Comment="Chrome 60.0" +Browser="Chrome" +Version="60.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] +Parent="Chrome 60.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] +Parent="Chrome 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] +Parent="Chrome 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] +Parent="Chrome 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] +Parent="Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] +Parent="Chrome 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] +Parent="Chrome 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] +Parent="Chrome 60.0" +Platform="Win7" + +[Chrome 59.0] +Parent="DefaultProperties" +Comment="Chrome 59.0" +Browser="Chrome" +Version="59.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] +Parent="Chrome 59.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] +Parent="Chrome 59.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] +Parent="Chrome 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] +Parent="Chrome 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] +Parent="Chrome 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] +Parent="Chrome 59.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] +Parent="Chrome 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] +Parent="Chrome 59.0" +Platform="Win7" + +[Chrome 58.0] +Parent="DefaultProperties" +Comment="Chrome 58.0" +Browser="Chrome" +Version="58.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] +Parent="Chrome 58.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] +Parent="Chrome 58.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] +Parent="Chrome 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] +Parent="Chrome 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] +Parent="Chrome 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] +Parent="Chrome 58.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] +Parent="Chrome 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] +Parent="Chrome 58.0" +Platform="Win7" + +[Chrome 57.0] +Parent="DefaultProperties" +Comment="Chrome 57.0" +Browser="Chrome" +Version="57.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] +Parent="Chrome 57.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] +Parent="Chrome 57.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] +Parent="Chrome 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] +Parent="Chrome 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] +Parent="Chrome 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] +Parent="Chrome 57.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] +Parent="Chrome 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] +Parent="Chrome 57.0" +Platform="Win7" + +[Chrome 56.0] +Parent="DefaultProperties" +Comment="Chrome 56.0" +Browser="Chrome" +Version="56.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] +Parent="Chrome 56.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] +Parent="Chrome 56.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] +Parent="Chrome 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] +Parent="Chrome 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] +Parent="Chrome 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] +Parent="Chrome 56.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] +Parent="Chrome 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] +Parent="Chrome 56.0" +Platform="Win7" + +[Chrome 55.0] +Parent="DefaultProperties" +Comment="Chrome 55.0" +Browser="Chrome" +Version="55.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] +Parent="Chrome 55.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] +Parent="Chrome 55.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] +Parent="Chrome 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] +Parent="Chrome 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] +Parent="Chrome 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] +Parent="Chrome 55.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] +Parent="Chrome 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] +Parent="Chrome 55.0" +Platform="Win7" + +[Chrome 54.0] +Parent="DefaultProperties" +Comment="Chrome 54.0" +Browser="Chrome" +Version="54.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] +Parent="Chrome 54.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] +Parent="Chrome 54.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] +Parent="Chrome 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] +Parent="Chrome 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] +Parent="Chrome 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] +Parent="Chrome 54.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] +Parent="Chrome 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] +Parent="Chrome 54.0" +Platform="Win7" + +[Chrome 53.0] +Parent="DefaultProperties" +Comment="Chrome 53.0" +Browser="Chrome" +Version="53.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] +Parent="Chrome 53.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] +Parent="Chrome 53.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] +Parent="Chrome 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] +Parent="Chrome 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] +Parent="Chrome 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] +Parent="Chrome 53.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] +Parent="Chrome 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] +Parent="Chrome 53.0" +Platform="Win7" + +[Chrome 52.0] +Parent="DefaultProperties" +Comment="Chrome 52.0" +Browser="Chrome" +Version="52.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] +Parent="Chrome 52.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] +Parent="Chrome 52.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] +Parent="Chrome 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] +Parent="Chrome 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] +Parent="Chrome 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] +Parent="Chrome 52.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] +Parent="Chrome 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] +Parent="Chrome 52.0" +Platform="Win7" + +[Chrome 51.0] +Parent="DefaultProperties" +Comment="Chrome 51.0" +Browser="Chrome" +Version="51.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] +Parent="Chrome 51.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] +Parent="Chrome 51.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] +Parent="Chrome 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] +Parent="Chrome 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] +Parent="Chrome 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] +Parent="Chrome 51.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] +Parent="Chrome 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] +Parent="Chrome 51.0" +Platform="Win7" + +[Chrome 50.0] +Parent="DefaultProperties" +Comment="Chrome 50.0" +Browser="Chrome" +Version="50.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] +Parent="Chrome 50.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] +Parent="Chrome 50.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] +Parent="Chrome 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] +Parent="Chrome 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] +Parent="Chrome 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] +Parent="Chrome 50.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] +Parent="Chrome 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] +Parent="Chrome 50.0" +Platform="Win7" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 63.0 for iOS + +[Chrome 63.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 63.0" +Browser="Chrome" +Version="63.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] +Parent="Chrome 63.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] +Parent="Chrome 63.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] +Parent="Chrome 63.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/63.0*Safari/*] +Parent="Chrome 63.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/63.0*Safari/*] +Parent="Chrome 63.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 62.0 for iOS + +[Chrome 62.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 62.0" +Browser="Chrome" +Version="62.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] +Parent="Chrome 62.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] +Parent="Chrome 62.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] +Parent="Chrome 62.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/62.0*Safari/*] +Parent="Chrome 62.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/62.0*Safari/*] +Parent="Chrome 62.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 61.0 for iOS + +[Chrome 61.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 61.0" +Browser="Chrome" +Version="61.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] +Parent="Chrome 61.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] +Parent="Chrome 61.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] +Parent="Chrome 61.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/61.0*Safari/*] +Parent="Chrome 61.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/61.0*Safari/*] +Parent="Chrome 61.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 60.0 for iOS + +[Chrome 60.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 60.0" +Browser="Chrome" +Version="60.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] +Parent="Chrome 60.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] +Parent="Chrome 60.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] +Parent="Chrome 60.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/60.0*Safari/*] +Parent="Chrome 60.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/60.0*Safari/*] +Parent="Chrome 60.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 59.0 for iOS + +[Chrome 59.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 59.0" +Browser="Chrome" +Version="59.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] +Parent="Chrome 59.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] +Parent="Chrome 59.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] +Parent="Chrome 59.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/59.0*Safari/*] +Parent="Chrome 59.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/59.0*Safari/*] +Parent="Chrome 59.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 58.0 for iOS + +[Chrome 58.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 58.0" +Browser="Chrome" +Version="58.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] +Parent="Chrome 58.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] +Parent="Chrome 58.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] +Parent="Chrome 58.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/58.0*Safari/*] +Parent="Chrome 58.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/58.0*Safari/*] +Parent="Chrome 58.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 57.0 for iOS + +[Chrome 57.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 57.0" +Browser="Chrome" +Version="57.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] +Parent="Chrome 57.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] +Parent="Chrome 57.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] +Parent="Chrome 57.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/57.0*Safari/*] +Parent="Chrome 57.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/57.0*Safari/*] +Parent="Chrome 57.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 56.0 for iOS + +[Chrome 56.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 56.0" +Browser="Chrome" +Version="56.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] +Parent="Chrome 56.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] +Parent="Chrome 56.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] +Parent="Chrome 56.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/56.0*Safari/*] +Parent="Chrome 56.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/56.0*Safari/*] +Parent="Chrome 56.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 55.0 for iOS + +[Chrome 55.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 55.0" +Browser="Chrome" +Version="55.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] +Parent="Chrome 55.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] +Parent="Chrome 55.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] +Parent="Chrome 55.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/55.0*Safari/*] +Parent="Chrome 55.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/55.0*Safari/*] +Parent="Chrome 55.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 72.0 for iOS + +[Chrome 72.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 72.0" +Browser="Chrome" +Version="72.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] +Parent="Chrome 72.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] +Parent="Chrome 72.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] +Parent="Chrome 72.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/72.0*Safari/*] +Parent="Chrome 72.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/72.0*Safari/*] +Parent="Chrome 72.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 71.0 for iOS + +[Chrome 71.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 71.0" +Browser="Chrome" +Version="71.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] +Parent="Chrome 71.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] +Parent="Chrome 71.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] +Parent="Chrome 71.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/71.0*Safari/*] +Parent="Chrome 71.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/71.0*Safari/*] +Parent="Chrome 71.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 70.0 for iOS + +[Chrome 70.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 70.0" +Browser="Chrome" +Version="70.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] +Parent="Chrome 70.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] +Parent="Chrome 70.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] +Parent="Chrome 70.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/70.0*Safari/*] +Parent="Chrome 70.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/70.0*Safari/*] +Parent="Chrome 70.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 69.0 for iOS + +[Chrome 69.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 69.0" +Browser="Chrome" +Version="69.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] +Parent="Chrome 69.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] +Parent="Chrome 69.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] +Parent="Chrome 69.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/69.0*Safari/*] +Parent="Chrome 69.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/69.0*Safari/*] +Parent="Chrome 69.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 68.0 for iOS + +[Chrome 68.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 68.0" +Browser="Chrome" +Version="68.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] +Parent="Chrome 68.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] +Parent="Chrome 68.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] +Parent="Chrome 68.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/68.0*Safari/*] +Parent="Chrome 68.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/68.0*Safari/*] +Parent="Chrome 68.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 67.0 for iOS + +[Chrome 67.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 67.0" +Browser="Chrome" +Version="67.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] +Parent="Chrome 67.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] +Parent="Chrome 67.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] +Parent="Chrome 67.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/67.0*Safari/*] +Parent="Chrome 67.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/67.0*Safari/*] +Parent="Chrome 67.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 66.0 for iOS + +[Chrome 66.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 66.0" +Browser="Chrome" +Version="66.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] +Parent="Chrome 66.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] +Parent="Chrome 66.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] +Parent="Chrome 66.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/66.0*Safari/*] +Parent="Chrome 66.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/66.0*Safari/*] +Parent="Chrome 66.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 65.0 for iOS + +[Chrome 65.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 65.0" +Browser="Chrome" +Version="65.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] +Parent="Chrome 65.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] +Parent="Chrome 65.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] +Parent="Chrome 65.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/65.0*Safari/*] +Parent="Chrome 65.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/65.0*Safari/*] +Parent="Chrome 65.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 64.0 for iOS + +[Chrome 64.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 64.0" +Browser="Chrome" +Version="64.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] +Parent="Chrome 64.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] +Parent="Chrome 64.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] +Parent="Chrome 64.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/64.0*Safari/*] +Parent="Chrome 64.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/64.0*Safari/*] +Parent="Chrome 64.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 99.0 for iOS + +[Chrome 99.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 99.0" +Browser="Chrome" +Version="99.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] +Parent="Chrome 99.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] +Parent="Chrome 99.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] +Parent="Chrome 99.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/99.0*Safari/*] +Parent="Chrome 99.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/99.0*Safari/*] +Parent="Chrome 99.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 98.0 for iOS + +[Chrome 98.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 98.0" +Browser="Chrome" +Version="98.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] +Parent="Chrome 98.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] +Parent="Chrome 98.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] +Parent="Chrome 98.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/98.0*Safari/*] +Parent="Chrome 98.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/98.0*Safari/*] +Parent="Chrome 98.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 97.0 for iOS + +[Chrome 97.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 97.0" +Browser="Chrome" +Version="97.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] +Parent="Chrome 97.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] +Parent="Chrome 97.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] +Parent="Chrome 97.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/97.0*Safari/*] +Parent="Chrome 97.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/97.0*Safari/*] +Parent="Chrome 97.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 96.0 for iOS + +[Chrome 96.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 96.0" +Browser="Chrome" +Version="96.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] +Parent="Chrome 96.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] +Parent="Chrome 96.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] +Parent="Chrome 96.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/96.0*Safari/*] +Parent="Chrome 96.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/96.0*Safari/*] +Parent="Chrome 96.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 95.0 for iOS + +[Chrome 95.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 95.0" +Browser="Chrome" +Version="95.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] +Parent="Chrome 95.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] +Parent="Chrome 95.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] +Parent="Chrome 95.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/95.0*Safari/*] +Parent="Chrome 95.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/95.0*Safari/*] +Parent="Chrome 95.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 94.0 for iOS + +[Chrome 94.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 94.0" +Browser="Chrome" +Version="94.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] +Parent="Chrome 94.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] +Parent="Chrome 94.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] +Parent="Chrome 94.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/94.0*Safari/*] +Parent="Chrome 94.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/94.0*Safari/*] +Parent="Chrome 94.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 93.0 for iOS + +[Chrome 93.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 93.0" +Browser="Chrome" +Version="93.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] +Parent="Chrome 93.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] +Parent="Chrome 93.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] +Parent="Chrome 93.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/93.0*Safari/*] +Parent="Chrome 93.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/93.0*Safari/*] +Parent="Chrome 93.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 92.0 for iOS + +[Chrome 92.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 92.0" +Browser="Chrome" +Version="92.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] +Parent="Chrome 92.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] +Parent="Chrome 92.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] +Parent="Chrome 92.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/92.0*Safari/*] +Parent="Chrome 92.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/92.0*Safari/*] +Parent="Chrome 92.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 91.0 for iOS + +[Chrome 91.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 91.0" +Browser="Chrome" +Version="91.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] +Parent="Chrome 91.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] +Parent="Chrome 91.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] +Parent="Chrome 91.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/91.0*Safari/*] +Parent="Chrome 91.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/91.0*Safari/*] +Parent="Chrome 91.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 90.0 for iOS + +[Chrome 90.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 90.0" +Browser="Chrome" +Version="90.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] +Parent="Chrome 90.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] +Parent="Chrome 90.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] +Parent="Chrome 90.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/90.0*Safari/*] +Parent="Chrome 90.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/90.0*Safari/*] +Parent="Chrome 90.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 89.0 for iOS + +[Chrome 89.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 89.0" +Browser="Chrome" +Version="89.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] +Parent="Chrome 89.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] +Parent="Chrome 89.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] +Parent="Chrome 89.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/89.0*Safari/*] +Parent="Chrome 89.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/89.0*Safari/*] +Parent="Chrome 89.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 88.0 for iOS + +[Chrome 88.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 88.0" +Browser="Chrome" +Version="88.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] +Parent="Chrome 88.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] +Parent="Chrome 88.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] +Parent="Chrome 88.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/88.0*Safari/*] +Parent="Chrome 88.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/88.0*Safari/*] +Parent="Chrome 88.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 87.0 for iOS + +[Chrome 87.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 87.0" +Browser="Chrome" +Version="87.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] +Parent="Chrome 87.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] +Parent="Chrome 87.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] +Parent="Chrome 87.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/87.0*Safari/*] +Parent="Chrome 87.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/87.0*Safari/*] +Parent="Chrome 87.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 86.0 for iOS + +[Chrome 86.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 86.0" +Browser="Chrome" +Version="86.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] +Parent="Chrome 86.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] +Parent="Chrome 86.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] +Parent="Chrome 86.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/86.0*Safari/*] +Parent="Chrome 86.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/86.0*Safari/*] +Parent="Chrome 86.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 85.0 for iOS + +[Chrome 85.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 85.0" +Browser="Chrome" +Version="85.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] +Parent="Chrome 85.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] +Parent="Chrome 85.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] +Parent="Chrome 85.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/85.0*Safari/*] +Parent="Chrome 85.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/85.0*Safari/*] +Parent="Chrome 85.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 84.0 for iOS + +[Chrome 84.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 84.0" +Browser="Chrome" +Version="84.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] +Parent="Chrome 84.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] +Parent="Chrome 84.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] +Parent="Chrome 84.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/84.0*Safari/*] +Parent="Chrome 84.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/84.0*Safari/*] +Parent="Chrome 84.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 83.0 for iOS + +[Chrome 83.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 83.0" +Browser="Chrome" +Version="83.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] +Parent="Chrome 83.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] +Parent="Chrome 83.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] +Parent="Chrome 83.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/83.0*Safari/*] +Parent="Chrome 83.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/83.0*Safari/*] +Parent="Chrome 83.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 82.0 for iOS + +[Chrome 82.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 82.0" +Browser="Chrome" +Version="82.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] +Parent="Chrome 82.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] +Parent="Chrome 82.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] +Parent="Chrome 82.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/82.0*Safari/*] +Parent="Chrome 82.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/82.0*Safari/*] +Parent="Chrome 82.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 81.0 for iOS + +[Chrome 81.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 81.0" +Browser="Chrome" +Version="81.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] +Parent="Chrome 81.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] +Parent="Chrome 81.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] +Parent="Chrome 81.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/81.0*Safari/*] +Parent="Chrome 81.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/81.0*Safari/*] +Parent="Chrome 81.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 80.0 for iOS + +[Chrome 80.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 80.0" +Browser="Chrome" +Version="80.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] +Parent="Chrome 80.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] +Parent="Chrome 80.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] +Parent="Chrome 80.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/80.0*Safari/*] +Parent="Chrome 80.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/80.0*Safari/*] +Parent="Chrome 80.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 79.0 for iOS + +[Chrome 79.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 79.0" +Browser="Chrome" +Version="79.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] +Parent="Chrome 79.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] +Parent="Chrome 79.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] +Parent="Chrome 79.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/79.0*Safari/*] +Parent="Chrome 79.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/79.0*Safari/*] +Parent="Chrome 79.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 78.0 for iOS + +[Chrome 78.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 78.0" +Browser="Chrome" +Version="78.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] +Parent="Chrome 78.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] +Parent="Chrome 78.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] +Parent="Chrome 78.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/78.0*Safari/*] +Parent="Chrome 78.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/78.0*Safari/*] +Parent="Chrome 78.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 77.0 for iOS + +[Chrome 77.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 77.0" +Browser="Chrome" +Version="77.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] +Parent="Chrome 77.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] +Parent="Chrome 77.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] +Parent="Chrome 77.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/77.0*Safari/*] +Parent="Chrome 77.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/77.0*Safari/*] +Parent="Chrome 77.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 76.0 for iOS + +[Chrome 76.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 76.0" +Browser="Chrome" +Version="76.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] +Parent="Chrome 76.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] +Parent="Chrome 76.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] +Parent="Chrome 76.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/76.0*Safari/*] +Parent="Chrome 76.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/76.0*Safari/*] +Parent="Chrome 76.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 75.0 for iOS + +[Chrome 75.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 75.0" +Browser="Chrome" +Version="75.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] +Parent="Chrome 75.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] +Parent="Chrome 75.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] +Parent="Chrome 75.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/75.0*Safari/*] +Parent="Chrome 75.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/75.0*Safari/*] +Parent="Chrome 75.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 74.0 for iOS + +[Chrome 74.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 74.0" +Browser="Chrome" +Version="74.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] +Parent="Chrome 74.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] +Parent="Chrome 74.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] +Parent="Chrome 74.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/74.0*Safari/*] +Parent="Chrome 74.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/74.0*Safari/*] +Parent="Chrome 74.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 73.0 for iOS + +[Chrome 73.0 for iOS] +Parent="DefaultProperties" +Comment="Chrome 73.0" +Browser="Chrome" +Version="73.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] +Parent="Chrome 73.0 for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] +Parent="Chrome 73.0 for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] +Parent="Chrome 73.0 for iOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/73.0*Safari/*] +Parent="Chrome 73.0 for iOS" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/73.0*Safari/*] +Parent="Chrome 73.0 for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic for Android + +[Chrome Generic for Android] +Parent="DefaultProperties" +Comment="Chrome Generic" +Browser="Chrome" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) applewebkit*(*khtml*like*gecko*) *Chrome/*Mobile Safari/*] +Parent="Chrome Generic for Android" + +[Mozilla/5.0 (*Linux*Android*) applewebkit*(*khtml*like*gecko*) *Chrome/*Safari/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*)*CrMo/*] +Parent="Chrome Generic for Android" + +[DINO762 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[ELEMENT10 1 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[Tablet-PC-4 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[TBD1083 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[TBDB863 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[TBDC1093 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[TBDG773 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[TERRA_101 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" +isTablet="true" +Device_Type="Tablet" + +[* Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] +Parent="Chrome Generic for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 99.0 + +[Headless Chrome 99.0] +Parent="DefaultProperties" +Comment="Headless Chrome 99.0" +Browser="Headless Chrome" +Version="99.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] +Parent="Headless Chrome 99.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 98.0 + +[Headless Chrome 98.0] +Parent="DefaultProperties" +Comment="Headless Chrome 98.0" +Browser="Headless Chrome" +Version="98.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] +Parent="Headless Chrome 98.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 97.0 + +[Headless Chrome 97.0] +Parent="DefaultProperties" +Comment="Headless Chrome 97.0" +Browser="Headless Chrome" +Version="97.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] +Parent="Headless Chrome 97.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 96.0 + +[Headless Chrome 96.0] +Parent="DefaultProperties" +Comment="Headless Chrome 96.0" +Browser="Headless Chrome" +Version="96.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] +Parent="Headless Chrome 96.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 95.0 + +[Headless Chrome 95.0] +Parent="DefaultProperties" +Comment="Headless Chrome 95.0" +Browser="Headless Chrome" +Version="95.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] +Parent="Headless Chrome 95.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 94.0 + +[Headless Chrome 94.0] +Parent="DefaultProperties" +Comment="Headless Chrome 94.0" +Browser="Headless Chrome" +Version="94.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] +Parent="Headless Chrome 94.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 93.0 + +[Headless Chrome 93.0] +Parent="DefaultProperties" +Comment="Headless Chrome 93.0" +Browser="Headless Chrome" +Version="93.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] +Parent="Headless Chrome 93.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 92.0 + +[Headless Chrome 92.0] +Parent="DefaultProperties" +Comment="Headless Chrome 92.0" +Browser="Headless Chrome" +Version="92.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] +Parent="Headless Chrome 92.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 91.0 + +[Headless Chrome 91.0] +Parent="DefaultProperties" +Comment="Headless Chrome 91.0" +Browser="Headless Chrome" +Version="91.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] +Parent="Headless Chrome 91.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 90.0 + +[Headless Chrome 90.0] +Parent="DefaultProperties" +Comment="Headless Chrome 90.0" +Browser="Headless Chrome" +Version="90.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] +Parent="Headless Chrome 90.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 89.0 + +[Headless Chrome 89.0] +Parent="DefaultProperties" +Comment="Headless Chrome 89.0" +Browser="Headless Chrome" +Version="89.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] +Parent="Headless Chrome 89.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 88.0 + +[Headless Chrome 88.0] +Parent="DefaultProperties" +Comment="Headless Chrome 88.0" +Browser="Headless Chrome" +Version="88.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] +Parent="Headless Chrome 88.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 87.0 + +[Headless Chrome 87.0] +Parent="DefaultProperties" +Comment="Headless Chrome 87.0" +Browser="Headless Chrome" +Version="87.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] +Parent="Headless Chrome 87.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 86.0 + +[Headless Chrome 86.0] +Parent="DefaultProperties" +Comment="Headless Chrome 86.0" +Browser="Headless Chrome" +Version="86.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] +Parent="Headless Chrome 86.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 85.0 + +[Headless Chrome 85.0] +Parent="DefaultProperties" +Comment="Headless Chrome 85.0" +Browser="Headless Chrome" +Version="85.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] +Parent="Headless Chrome 85.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 84.0 + +[Headless Chrome 84.0] +Parent="DefaultProperties" +Comment="Headless Chrome 84.0" +Browser="Headless Chrome" +Version="84.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] +Parent="Headless Chrome 84.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 83.0 + +[Headless Chrome 83.0] +Parent="DefaultProperties" +Comment="Headless Chrome 83.0" +Browser="Headless Chrome" +Version="83.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] +Parent="Headless Chrome 83.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 82.0 + +[Headless Chrome 82.0] +Parent="DefaultProperties" +Comment="Headless Chrome 82.0" +Browser="Headless Chrome" +Version="82.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] +Parent="Headless Chrome 82.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 81.0 + +[Headless Chrome 81.0] +Parent="DefaultProperties" +Comment="Headless Chrome 81.0" +Browser="Headless Chrome" +Version="81.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] +Parent="Headless Chrome 81.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 80.0 + +[Headless Chrome 80.0] +Parent="DefaultProperties" +Comment="Headless Chrome 80.0" +Browser="Headless Chrome" +Version="80.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] +Parent="Headless Chrome 80.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 79.0 + +[Headless Chrome 79.0] +Parent="DefaultProperties" +Comment="Headless Chrome 79.0" +Browser="Headless Chrome" +Version="79.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] +Parent="Headless Chrome 79.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 78.0 + +[Headless Chrome 78.0] +Parent="DefaultProperties" +Comment="Headless Chrome 78.0" +Browser="Headless Chrome" +Version="78.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] +Parent="Headless Chrome 78.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 77.0 + +[Headless Chrome 77.0] +Parent="DefaultProperties" +Comment="Headless Chrome 77.0" +Browser="Headless Chrome" +Version="77.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] +Parent="Headless Chrome 77.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 76.0 + +[Headless Chrome 76.0] +Parent="DefaultProperties" +Comment="Headless Chrome 76.0" +Browser="Headless Chrome" +Version="76.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] +Parent="Headless Chrome 76.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 75.0 + +[Headless Chrome 75.0] +Parent="DefaultProperties" +Comment="Headless Chrome 75.0" +Browser="Headless Chrome" +Version="75.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] +Parent="Headless Chrome 75.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 74.0 + +[Headless Chrome 74.0] +Parent="DefaultProperties" +Comment="Headless Chrome 74.0" +Browser="Headless Chrome" +Version="74.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] +Parent="Headless Chrome 74.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 73.0 + +[Headless Chrome 73.0] +Parent="DefaultProperties" +Comment="Headless Chrome 73.0" +Browser="Headless Chrome" +Version="73.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] +Parent="Headless Chrome 73.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 72.0 + +[Headless Chrome 72.0] +Parent="DefaultProperties" +Comment="Headless Chrome 72.0" +Browser="Headless Chrome" +Version="72.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] +Parent="Headless Chrome 72.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 71.0 + +[Headless Chrome 71.0] +Parent="DefaultProperties" +Comment="Headless Chrome 71.0" +Browser="Headless Chrome" +Version="71.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] +Parent="Headless Chrome 71.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 70.0 + +[Headless Chrome 70.0] +Parent="DefaultProperties" +Comment="Headless Chrome 70.0" +Browser="Headless Chrome" +Version="70.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] +Parent="Headless Chrome 70.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 69.0 + +[Headless Chrome 69.0] +Parent="DefaultProperties" +Comment="Headless Chrome 69.0" +Browser="Headless Chrome" +Version="69.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] +Parent="Headless Chrome 69.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 68.0 + +[Headless Chrome 68.0] +Parent="DefaultProperties" +Comment="Headless Chrome 68.0" +Browser="Headless Chrome" +Version="68.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] +Parent="Headless Chrome 68.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 67.0 + +[Headless Chrome 67.0] +Parent="DefaultProperties" +Comment="Headless Chrome 67.0" +Browser="Headless Chrome" +Version="67.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] +Parent="Headless Chrome 67.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 66.0 + +[Headless Chrome 66.0] +Parent="DefaultProperties" +Comment="Headless Chrome 66.0" +Browser="Headless Chrome" +Version="66.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] +Parent="Headless Chrome 66.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 65.0 + +[Headless Chrome 65.0] +Parent="DefaultProperties" +Comment="Headless Chrome 65.0" +Browser="Headless Chrome" +Version="65.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] +Parent="Headless Chrome 65.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 64.0 + +[Headless Chrome 64.0] +Parent="DefaultProperties" +Comment="Headless Chrome 64.0" +Browser="Headless Chrome" +Version="64.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] +Parent="Headless Chrome 64.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 63.0 + +[Headless Chrome 63.0] +Parent="DefaultProperties" +Comment="Headless Chrome 63.0" +Browser="Headless Chrome" +Version="63.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] +Parent="Headless Chrome 63.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 62.0 + +[Headless Chrome 62.0] +Parent="DefaultProperties" +Comment="Headless Chrome 62.0" +Browser="Headless Chrome" +Version="62.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] +Parent="Headless Chrome 62.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 61.0 + +[Headless Chrome 61.0] +Parent="DefaultProperties" +Comment="Headless Chrome 61.0" +Browser="Headless Chrome" +Version="61.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] +Parent="Headless Chrome 61.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 60.0 + +[Headless Chrome 60.0] +Parent="DefaultProperties" +Comment="Headless Chrome 60.0" +Browser="Headless Chrome" +Version="60.0" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] +Parent="Headless Chrome 60.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic for iOS + +[Chrome Generic for iOS] +Parent="DefaultProperties" +Comment="Chrome Generic" +Browser="Chrome" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] +Parent="Chrome Generic for iOS" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] +Parent="Chrome Generic for iOS" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] +Parent="Chrome Generic for iOS" +isTablet="true" +Device_Type="Tablet" + +[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*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] +Parent="Chrome Generic for iOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic + +[Chrome Generic] +Parent="DefaultProperties" +Comment="Chrome Generic" +Browser="Chrome" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*)*applewebkit* (*khtml*like*gecko*)*Chrome/* Large Screen Safari/* GoogleTV/*] +Parent="Chrome Generic" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win32" + +[Mozilla/5.0 (*Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="MacOSX" + +[Mozilla/5.0 (*Linux*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="Win32" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Chrome/* Safari/*] +Parent="Chrome Generic" +Platform="MacOSX" + +[Mozilla/4.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] +Parent="Chrome Generic" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] +Parent="Chrome Generic" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] +Parent="Chrome Generic" +Platform="Win32" + +[Mozilla/5.0 (*Linux*)*applewebkit* (*khtml*like*gecko*) Sabayon Chrome/*] +Parent="Chrome Generic" +Platform="Linux" + +[Mozilla/5.0 (X11; ) applewebkit* (*khtml*like*gecko*) Chrome/*Safari/*] +Parent="Chrome Generic" +Platform="Linux" + +[Mozilla/5.0 ArchLinux (*Linux*) applewebkit* (*khtml*like*gecko*) *Chrome/*] +Parent="Chrome Generic" +Platform="Linux" + +[Mozilla/5.0 Slackware* (*Linux*) applewebkit* (*khtml*like*gecko*) *Chrome/*] +Parent="Chrome Generic" +Platform="Linux" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome + +[Headless Chrome] +Parent="DefaultProperties" +Comment="Headless Chrome" +Browser="Headless Chrome" +Platform="Linux" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" + +[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] +Parent="Headless Chrome" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 11.0 + +[IEMobile 11.0] +Parent="DefaultProperties" +Comment="IEMobile 11.0" +Browser="IEMobile" +Version="11.0" +Platform="WinPhone8.1" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[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/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1031*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1074*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1089*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1090*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1113*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft;Lumia 535 Dual SIM*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; 909*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 520*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 530*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 620*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 625*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 630*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 635*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 730*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 820*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 920*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 925*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 928*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 930*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; RM-994*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0*] +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 1320*] +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 520*] +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 630*] +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; Lumia 720*] +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 925*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; *] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.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/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; Microsoft; Lumia 950 XL Dual SIM*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; 909*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 520*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 530*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 620*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 625*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 630*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 635*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 730*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 820*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 920*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 925*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 928*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 930*] +Parent="IEMobile 11.0" + +[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0*] +Parent="IEMobile 11.0" + +[*Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; Microsoft; Lumia 950 XL Dual SIM*] +Parent="IEMobile 11.0" + +[*Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; 909*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 1320*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 1520*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 520*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 625*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 630*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 635*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 720*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 820*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 920*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 925*] +Parent="IEMobile 11.0" + +[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; *] +Parent="IEMobile 11.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 5.1 + +[Android Browser 5.1] +Parent="DefaultProperties" +Comment="Android Browser 5.1" +Browser="Android" +Version="5.1" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android* Build/* applewebkit* (*khtml*like*gecko*) Version/5.1* Mobile Safari*] +Parent="Android Browser 5.1" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.1*Safari*] +Parent="Android Browser 5.1" + +[Mozilla/5.2 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.2*Safari*] +Parent="Android Browser 5.1" +Version="5.2" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 5.0 + +[Android Browser 5.0] +Parent="DefaultProperties" +Comment="Android Browser 5.0" +Browser="Android" +Version="5.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/Sensation/*) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_DesireHD_A9191; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P510e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P512; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_IncredibleS_S710e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Runnymede; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation_Z710e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_SensationXL_Beats_X315e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] +Parent="Android Browser 5.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser Generic + +[Android Browser Generic] +Parent="DefaultProperties" +Comment="Android Browser Generic" +Browser="Android" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari*] +Parent="Android Browser Generic" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.4 + +[Android Browser 4.4] +Parent="DefaultProperties" +Comment="Android Browser 4.4" +Browser="Android" +Version="4.4" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.4*Safari*] +Parent="Android Browser 4.4" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.3 + +[Android Browser 4.3] +Parent="DefaultProperties" +Comment="Android Browser 4.3" +Browser="Android" +Version="4.3" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.3*Safari*] +Parent="Android Browser 4.3" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.2 + +[Android Browser 4.2] +Parent="DefaultProperties" +Comment="Android Browser 4.2" +Browser="Android" +Version="4.2" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.2*Safari*] +Parent="Android Browser 4.2" + +[*Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.2*Safari*] +Parent="Android Browser 4.2" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.2*Safari*] +Parent="Android Browser 4.2" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.1 + +[Android Browser 4.1] +Parent="DefaultProperties" +Comment="Android Browser 4.1" +Browser="Android" +Version="4.1" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[*Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.1*Safari*] +Parent="Android Browser 4.1" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.1*Safari*] +Parent="Android Browser 4.1" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.1*Safari*] +Parent="Android Browser 4.1" + +[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*) *Version/4.1*Safari/*] +Parent="Android Browser 4.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.0 + +[Android Browser 4.0] +Parent="DefaultProperties" +Comment="Android Browser 4.0" +Browser="Android" +Version="4.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*Mobile*Safari*] +Parent="Android Browser 4.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*Safari*] +Parent="Android Browser 4.0" +isTablet="true" +Device_Type="Tablet" + +[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/WildfireS/*) applewebkit* (*khtml*like*gecko*) Version/4.0*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" +Device_Type="Tablet" + +[Mozilla/5.0 (Linux*; Android Eclair*Build/*) applewebkit* (*khtml*like*gecko*) Version/*Safari*] +Parent="Android Browser 4.0" + +[Mozilla/5.0(*Linux*Android*) applewebkit*(*khtml*like*gecko*) Version/4.0*Safari*] +Parent="Android Browser 4.0" + +[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*] +Parent="Android Browser 4.0" + +[Mozilla/5.0 (*Linux*Android*) applewebkit*(*kthml*like*gecko*) Version/4.0*Safari*] +Parent="Android Browser 4.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khmtl*like*gecko*) Version/4.0*Safari*] +Parent="Android Browser 4.0" + +[Mozilla/5.0(*Linux*Android*)applewebkit*(*khtml*like*gecko*)Version/4.0*Safari*] +Parent="Android Browser 4.0" + +[Mozilla/5.0 (*Linux*Velocitymicro/T408*) applewebkit*(*khtml*like*gecko*) *Version/4.0*Safari/*] +Parent="Android Browser 4.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*) *Version/4.0*Safari/*] +Parent="Android Browser 4.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.04 + +[Coast 5.04] +Parent="DefaultProperties" +Comment="Coast 5.04" +Browser="Coast" +Version="5.04" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] +Parent="Coast 5.04" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] +Parent="Coast 5.04" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] +Parent="Coast 5.04" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] +Parent="Coast 5.04" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] +Parent="Coast 5.04" + +[Opera%20Coast/5.04* CFNetwork/*] +Parent="Coast 5.04" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.03 + +[Coast 5.03] +Parent="DefaultProperties" +Comment="Coast 5.03" +Browser="Coast" +Version="5.03" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] +Parent="Coast 5.03" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] +Parent="Coast 5.03" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] +Parent="Coast 5.03" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] +Parent="Coast 5.03" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] +Parent="Coast 5.03" + +[Opera%20Coast/5.03* CFNetwork/*] +Parent="Coast 5.03" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.02 + +[Coast 5.02] +Parent="DefaultProperties" +Comment="Coast 5.02" +Browser="Coast" +Version="5.02" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] +Parent="Coast 5.02" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] +Parent="Coast 5.02" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] +Parent="Coast 5.02" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] +Parent="Coast 5.02" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] +Parent="Coast 5.02" + +[Opera%20Coast/5.02* CFNetwork/*] +Parent="Coast 5.02" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.01 + +[Coast 5.01] +Parent="DefaultProperties" +Comment="Coast 5.01" +Browser="Coast" +Version="5.01" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] +Parent="Coast 5.01" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] +Parent="Coast 5.01" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] +Parent="Coast 5.01" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] +Parent="Coast 5.01" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] +Parent="Coast 5.01" + +[Opera%20Coast/5.01* CFNetwork/*] +Parent="Coast 5.01" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.51 + +[Coast 4.51] +Parent="DefaultProperties" +Comment="Coast 4.51" +Browser="Coast" +Version="4.51" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] +Parent="Coast 4.51" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] +Parent="Coast 4.51" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] +Parent="Coast 4.51" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] +Parent="Coast 4.51" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] +Parent="Coast 4.51" + +[Opera%20Coast/4.51* CFNetwork/*] +Parent="Coast 4.51" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.31 + +[Coast 4.31] +Parent="DefaultProperties" +Comment="Coast 4.31" +Browser="Coast" +Version="4.31" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] +Parent="Coast 4.31" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] +Parent="Coast 4.31" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] +Parent="Coast 4.31" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] +Parent="Coast 4.31" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] +Parent="Coast 4.31" + +[Opera%20Coast/4.31* CFNetwork/*] +Parent="Coast 4.31" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.30 + +[Coast 4.30] +Parent="DefaultProperties" +Comment="Coast 4.30" +Browser="Coast" +Version="4.30" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] +Parent="Coast 4.30" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] +Parent="Coast 4.30" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] +Parent="Coast 4.30" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] +Parent="Coast 4.30" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] +Parent="Coast 4.30" + +[Opera%20Coast/4.30* CFNetwork/*] +Parent="Coast 4.30" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.21 + +[Coast 4.21] +Parent="DefaultProperties" +Comment="Coast 4.21" +Browser="Coast" +Version="4.21" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] +Parent="Coast 4.21" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] +Parent="Coast 4.21" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] +Parent="Coast 4.21" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] +Parent="Coast 4.21" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] +Parent="Coast 4.21" + +[Opera%20Coast/4.21* CFNetwork/*] +Parent="Coast 4.21" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.5 + +[Coast 4.5] +Parent="DefaultProperties" +Comment="Coast 4.5" +Browser="Coast" +Version="4.5" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] +Parent="Coast 4.5" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] +Parent="Coast 4.5" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] +Parent="Coast 4.5" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] +Parent="Coast 4.5" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] +Parent="Coast 4.5" + +[Opera%20Coast/4.5* CFNetwork/*] +Parent="Coast 4.5" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.4 + +[Coast 4.4] +Parent="DefaultProperties" +Comment="Coast 4.4" +Browser="Coast" +Version="4.4" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] +Parent="Coast 4.4" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] +Parent="Coast 4.4" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] +Parent="Coast 4.4" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] +Parent="Coast 4.4" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] +Parent="Coast 4.4" + +[Opera%20Coast/4.4* CFNetwork/*] +Parent="Coast 4.4" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.03 + +[Coast 4.03] +Parent="DefaultProperties" +Comment="Coast 4.03" +Browser="Coast" +Version="4.03" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] +Parent="Coast 4.03" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] +Parent="Coast 4.03" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] +Parent="Coast 4.03" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] +Parent="Coast 4.03" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] +Parent="Coast 4.03" + +[Opera%20Coast/4.03* CFNetwork/*] +Parent="Coast 4.03" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.02 + +[Coast 4.02] +Parent="DefaultProperties" +Comment="Coast 4.02" +Browser="Coast" +Version="4.02" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] +Parent="Coast 4.02" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] +Parent="Coast 4.02" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] +Parent="Coast 4.02" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] +Parent="Coast 4.02" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] +Parent="Coast 4.02" + +[Opera%20Coast/4.02* CFNetwork/*] +Parent="Coast 4.02" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.1 + +[Coast 4.1] +Parent="DefaultProperties" +Comment="Coast 4.1" +Browser="Coast" +Version="4.1" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] +Parent="Coast 4.1" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] +Parent="Coast 4.1" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] +Parent="Coast 4.1" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] +Parent="Coast 4.1" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] +Parent="Coast 4.1" + +[Opera%20Coast/4.1* CFNetwork/*] +Parent="Coast 4.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.01 + +[Coast 4.01] +Parent="DefaultProperties" +Comment="Coast 4.01" +Browser="Coast" +Version="4.01" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] +Parent="Coast 4.01" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] +Parent="Coast 4.01" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] +Parent="Coast 4.01" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] +Parent="Coast 4.01" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] +Parent="Coast 4.01" + +[Opera%20Coast/4.01* CFNetwork/*] +Parent="Coast 4.01" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.0 + +[Coast 4.0] +Parent="DefaultProperties" +Comment="Coast 4.0" +Browser="Coast" +Version="4.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] +Parent="Coast 4.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] +Parent="Coast 4.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] +Parent="Coast 4.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] +Parent="Coast 4.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] +Parent="Coast 4.0" + +[Opera%20Coast/4.0* CFNetwork/*] +Parent="Coast 4.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.21 + +[Coast 3.21] +Parent="DefaultProperties" +Comment="Coast 3.21" +Browser="Coast" +Version="3.21" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] +Parent="Coast 3.21" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] +Parent="Coast 3.21" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] +Parent="Coast 3.21" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] +Parent="Coast 3.21" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] +Parent="Coast 3.21" + +[Opera%20Coast/3.21* CFNetwork/*] +Parent="Coast 3.21" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.02 + +[Coast 3.02] +Parent="DefaultProperties" +Comment="Coast 3.02" +Browser="Coast" +Version="3.02" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] +Parent="Coast 3.02" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] +Parent="Coast 3.02" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] +Parent="Coast 3.02" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] +Parent="Coast 3.02" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] +Parent="Coast 3.02" + +[Opera%20Coast/3.02* CFNetwork/*] +Parent="Coast 3.02" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.1 + +[Coast 3.1] +Parent="DefaultProperties" +Comment="Coast 3.1" +Browser="Coast" +Version="3.1" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] +Parent="Coast 3.1" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] +Parent="Coast 3.1" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] +Parent="Coast 3.1" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] +Parent="Coast 3.1" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] +Parent="Coast 3.1" + +[Opera%20Coast/3.1* CFNetwork/*] +Parent="Coast 3.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.01 + +[Coast 3.01] +Parent="DefaultProperties" +Comment="Coast 3.01" +Browser="Coast" +Version="3.01" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] +Parent="Coast 3.01" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] +Parent="Coast 3.01" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] +Parent="Coast 3.01" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] +Parent="Coast 3.01" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] +Parent="Coast 3.01" + +[Opera%20Coast/3.01* CFNetwork/*] +Parent="Coast 3.01" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.0 + +[Coast 3.0] +Parent="DefaultProperties" +Comment="Coast 3.0" +Browser="Coast" +Version="3.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] +Parent="Coast 3.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] +Parent="Coast 3.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] +Parent="Coast 3.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] +Parent="Coast 3.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] +Parent="Coast 3.0" + +[Opera%20Coast/3.0* CFNetwork/*] +Parent="Coast 3.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast + +[Coast] +Parent="DefaultProperties" +Comment="Coast" +Browser="Coast" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] +Parent="Coast" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] +Parent="Coast" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] +Parent="Coast" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] +Parent="Coast" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] +Parent="Coast" + +[Opera%20Coast/* CFNetwork/*] +Parent="Coast" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 13.0 + +[Mobile Safari 13.0] +Parent="DefaultProperties" +Comment="Mobile Safari 13.0" +Browser="Safari" +Version="13.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" +Comment="Mobile Safari 13.0 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" +Platform="ipadOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] +Parent="Mobile Safari 13.0" +Platform="ipadOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.0 + +[Mobile Safari 14.0] +Parent="DefaultProperties" +Comment="Mobile Safari 14.0" +Browser="Safari" +Version="14.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" +Comment="Mobile Safari 14.0 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" +Platform="ipadOS" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] +Parent="Mobile Safari 14.0" +Platform="ipadOS" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.4 + +[Mobile Safari 12.4] +Parent="DefaultProperties" +Comment="Mobile Safari 12.4" +Browser="Safari" +Version="12.4" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" +Comment="Mobile Safari 12.4 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] +Parent="Mobile Safari 12.4" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.3 + +[Mobile Safari 12.3] +Parent="DefaultProperties" +Comment="Mobile Safari 12.3" +Browser="Safari" +Version="12.3" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" +Comment="Mobile Safari 12.3 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] +Parent="Mobile Safari 12.3" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.2 + +[Mobile Safari 12.2] +Parent="DefaultProperties" +Comment="Mobile Safari 12.2" +Browser="Safari" +Version="12.2" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" +Comment="Mobile Safari 12.2 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] +Parent="Mobile Safari 12.2" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.1 + +[Mobile Safari 12.1] +Parent="DefaultProperties" +Comment="Mobile Safari 12.1" +Browser="Safari" +Version="12.1" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" +Comment="Mobile Safari 12.1 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] +Parent="Mobile Safari 12.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.0 + +[Mobile Safari 12.0] +Parent="DefaultProperties" +Comment="Mobile Safari 12.0" +Browser="Safari" +Version="12.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" +Comment="Mobile Safari 12.0 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] +Parent="Mobile Safari 12.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 10.0 + +[Mobile Safari 10.0] +Parent="DefaultProperties" +Comment="Mobile Safari 10.0" +Browser="Safari" +Version="10.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] +Parent="Mobile Safari 10.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] +Parent="Mobile Safari 10.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] +Parent="Mobile Safari 10.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] +Parent="Mobile Safari 10.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] +Parent="Mobile Safari 10.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 11.0 + +[Mobile Safari 11.0] +Parent="DefaultProperties" +Comment="Mobile Safari 11.0" +Browser="Safari" +Version="11.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" +Comment="Mobile Safari 11.0 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] +Parent="Mobile Safari 11.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 9.0 + +[Mobile Safari 9.0] +Parent="DefaultProperties" +Comment="Mobile Safari 9.0" +Browser="Safari" +Version="9.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] +Parent="Mobile Safari 9.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] +Parent="Mobile Safari 9.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] +Parent="Mobile Safari 9.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] +Parent="Mobile Safari 9.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] +Parent="Mobile Safari 9.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 8.0 + +[Mobile Safari 8.0] +Parent="DefaultProperties" +Comment="Mobile Safari 8.0" +Browser="Safari" +Version="8.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] +Parent="Mobile Safari 8.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] +Parent="Mobile Safari 8.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] +Parent="Mobile Safari 8.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] +Parent="Mobile Safari 8.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] +Parent="Mobile Safari 8.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 7.0 + +[Mobile Safari 7.0] +Parent="DefaultProperties" +Comment="Mobile Safari 7.0" +Browser="Safari" +Version="7.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] +Parent="Mobile Safari 7.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] +Parent="Mobile Safari 7.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] +Parent="Mobile Safari 7.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] +Parent="Mobile Safari 7.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] +Parent="Mobile Safari 7.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 6.0 + +[Mobile Safari 6.0] +Parent="DefaultProperties" +Comment="Mobile Safari 6.0" +Browser="Safari" +Version="6.0" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] +Parent="Mobile Safari 6.0" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] +Parent="Mobile Safari 6.0" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] +Parent="Mobile Safari 6.0" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] +Parent="Mobile Safari 6.0" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] +Parent="Mobile Safari 6.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 13.1 + +[Safari 13.1] +Parent="DefaultProperties" +Comment="Safari 13.1" +Browser="Safari" +Version="13.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/13.1* Safari/*] +Parent="Safari 13.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 13.0 + +[Safari 13.0] +Parent="DefaultProperties" +Comment="Safari 13.0" +Browser="Safari" +Version="13.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/13.0* Safari/*] +Parent="Safari 13.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 14.0 + +[Safari 14.0] +Parent="DefaultProperties" +Comment="Safari 14.0" +Browser="Safari" +Version="14.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/14.0* Safari/*] +Parent="Safari 14.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 12.1 + +[Safari 12.1] +Parent="DefaultProperties" +Comment="Safari 12.1" +Browser="Safari" +Version="12.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/12.1* Safari/*] +Parent="Safari 12.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 12.0 + +[Safari 12.0] +Parent="DefaultProperties" +Comment="Safari 12.0" +Browser="Safari" +Version="12.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/12.0* Safari/*] +Parent="Safari 12.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 11.1 + +[Safari 11.1] +Parent="DefaultProperties" +Comment="Safari 11.1" +Browser="Safari" +Version="11.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.1* Safari/*] +Parent="Safari 11.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari Generic + +[Mobile Safari Generic] +Parent="DefaultProperties" +Comment="Mobile Safari Generic" +Browser="Safari" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" +Device_Type="Mobile Phone" + +[Mozilla/5.0*(iPhone*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" +Device_Type="Mobile Phone" + +[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(iPod*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" +Comment="Mobile Safari 0.0 in Developer Tools" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0*(iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] +Parent="Mobile Safari Generic" +Device_Type="Mobile Phone" + +[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] +Parent="Mobile Safari Generic" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] +Parent="Mobile Safari Generic" + +[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] +Parent="Mobile Safari Generic" + +[MobileSafari/* CFNetwork/*] +Parent="Mobile Safari Generic" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 11.0 + +[Safari 11.0] +Parent="DefaultProperties" +Comment="Safari 11.0" +Browser="Safari" +Version="11.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.0* Safari/*] +Parent="Safari 11.0" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.0*] +Parent="Safari 11.0" + +[Safari 11.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 11.0" +Browser="Safari" +Version="11.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/136??.* CFNetwork/*] +Parent="Safari 11.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.2 + +[Safari 10.2] +Parent="DefaultProperties" +Comment="Safari 10.2" +Browser="Safari" +Version="10.2" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.2* Safari/*] +Parent="Safari 10.2" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.2*] +Parent="Safari 10.2" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.1 + +[Safari 10.1] +Parent="DefaultProperties" +Comment="Safari 10.1" +Browser="Safari" +Version="10.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.1* Safari/*] +Parent="Safari 10.1" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.1*] +Parent="Safari 10.1" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.0 + +[Safari 10.0] +Parent="DefaultProperties" +Comment="Safari 10.0" +Browser="Safari" +Version="10.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.0* Safari/*] +Parent="Safari 10.0" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.0*] +Parent="Safari 10.0" + +[Safari 10.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 10.0" +Browser="Safari" +Version="10.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/126??.* CFNetwork/*] +Parent="Safari 10.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari UIWebView + +[Mobile Safari UIWebView] +Parent="DefaultProperties" +Comment="Mobile Safari UIWebView" +Browser="Mobile Safari UIWebView" +Platform="iOS" +isMobileDevice="true" +Device_Type="Mobile Device" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] +Parent="Mobile Safari UIWebView" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] +Parent="Mobile Safari UIWebView" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*] +Parent="Mobile Safari UIWebView" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*] +Parent="Mobile Safari UIWebView" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*] +Parent="Mobile Safari UIWebView" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPhone*CPU*OS* like Mac OS X*)*] +Parent="Mobile Safari UIWebView" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0 (iPod*CPU*OS* like Mac OS X*)*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*] +Parent="Mobile Safari UIWebView" + +[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*] +Parent="Mobile Safari UIWebView" + +[*iPad*] +Parent="Mobile Safari UIWebView" +isTablet="true" +Device_Type="Tablet" + +[*iPhone*] +Parent="Mobile Safari UIWebView" +Device_Type="Mobile Phone" + +[*iPod*] +Parent="Mobile Safari UIWebView" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 9.0 + +[Safari 9.0] +Parent="DefaultProperties" +Comment="Safari 9.0" +Browser="Safari" +Version="9.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.0* Safari/*] +Parent="Safari 9.0" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.0*] +Parent="Safari 9.0" + +[Safari 9.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 9.0" +Browser="Safari" +Version="9.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/106??.* CFNetwork/*] +Parent="Safari 9.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 9.1 + +[Safari 9.1] +Parent="DefaultProperties" +Comment="Safari 9.1" +Browser="Safari" +Version="9.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.1* Safari/*] +Parent="Safari 9.1" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.1*] +Parent="Safari 9.1" + +[Safari 9.1 for Darwin] +Parent="DefaultProperties" +Comment="Safari 9.1" +Browser="Safari" +Version="9.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/116??.* CFNetwork/*] +Parent="Safari 9.1 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 8.0 + +[Safari 8.0] +Parent="DefaultProperties" +Comment="Safari 8.0" +Browser="Safari" +Version="8.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/8.0* Safari/*] +Parent="Safari 8.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/8.0*] +Parent="Safari 8.0" +Platform="MacOSX" + +[Safari 8.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 8.0" +Browser="Safari" +Version="8.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/10600.* CFNetwork/*] +Parent="Safari 8.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 7.1 + +[Safari 7.1] +Parent="DefaultProperties" +Comment="Safari 7.1" +Browser="Safari" +Version="7.1" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.1* Safari/*] +Parent="Safari 7.1" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.1*] +Parent="Safari 7.1" +Platform="MacOSX" + +[Safari 7.1 for SymbianOS] +Parent="DefaultProperties" +Comment="Safari 7.1" +Browser="Safari" +Version="7.1" +isMobileDevice="true" +Device_Type="Mobile Phone" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 7.0 + +[Safari 7.0] +Parent="DefaultProperties" +Comment="Safari 7.0" +Browser="Safari" +Version="7.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.0* Safari/*] +Parent="Safari 7.0" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.0*] +Parent="Safari 7.0" + +[Safari 7.0 for SymbianOS] +Parent="DefaultProperties" +Comment="Safari 7.0" +Browser="Safari" +Version="7.0" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Safari 7.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 7.0" +Browser="Safari" +Version="7.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/95??.* CFNetwork/*] +Parent="Safari 7.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.2 + +[Safari 6.2] +Parent="DefaultProperties" +Comment="Safari 6.2" +Browser="Safari" +Version="6.2" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.2* Safari/*] +Parent="Safari 6.2" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.2*] +Parent="Safari 6.2" + +[Safari 6.2 for SymbianOS] +Parent="DefaultProperties" +Comment="Safari 6.2" +Browser="Safari" +Version="6.2" +isMobileDevice="true" +Device_Type="Mobile Phone" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.1 + +[Safari 6.1] +Parent="DefaultProperties" +Comment="Safari 6.1" +Browser="Safari" +Version="6.1" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.1* Safari/*] +Parent="Safari 6.1" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.1*] +Parent="Safari 6.1" + +[Safari 6.1 for SymbianOS] +Parent="DefaultProperties" +Comment="Safari 6.1" +Browser="Safari" +Version="6.1" +isMobileDevice="true" +Device_Type="Mobile Phone" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.0 + +[Safari 6.0] +Parent="DefaultProperties" +Comment="Safari 6.0" +Browser="Safari" +Version="6.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.0* Safari/*] +Parent="Safari 6.0" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.0*] +Parent="Safari 6.0" + +[Safari 6.0 for Darwin] +Parent="DefaultProperties" +Comment="Safari 6.0" +Browser="Safari" +Version="6.0" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/85??.* CFNetwork/*] +Parent="Safari 6.0 for Darwin" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari Generic + +[Safari Generic] +Parent="DefaultProperties" +Comment="Safari Generic" +Browser="Safari" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 6.3*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] +Parent="Safari Generic" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Safari*] +Parent="Safari Generic" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Version/*] +Parent="Safari Generic" +Platform="MacOSX" + +[Safari Generic for Darwin] +Parent="DefaultProperties" +Comment="Safari Generic" +Browser="Safari" +Platform="MacOSX" +Device_Type="Desktop" + +[Safari/* CFNetwork/*] +Parent="Safari Generic for Darwin" + +[Mozilla/5.0 (*Linux*) applewebkit*THOMSON; Thomson THS845*] +Parent="Safari Generic for Darwin" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) *ASTON;XenaHd Twin Connect*] +Parent="Safari Generic for Darwin" +Platform="Linux" +Device_Type="TV Device" + +[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HbbTV*] +Parent="Safari Generic for Darwin" +Platform="Linux" +Device_Type="TV Device" + +[Safari Generic Older] +Parent="DefaultProperties" +Comment="Safari" +Browser="Safari" +Device_Type="Desktop" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/419*] +Parent="Safari Generic Older" +Comment="Safari 2.0" +Version="2.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/417*] +Parent="Safari Generic Older" +Comment="Safari 2.0" +Version="2.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/412*] +Parent="Safari Generic Older" +Comment="Safari 2.0" +Version="2.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/312*] +Parent="Safari Generic Older" +Comment="Safari 1.3" +Version="1.3" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/162*] +Parent="Safari Generic Older" +Comment="Safari 1.3" +Version="1.3" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/158*] +Parent="Safari Generic Older" +Comment="Safari 1.3" +Version="1.3" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/146*] +Parent="Safari Generic Older" +Comment="Safari 1.3" +Version="1.3" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/125*] +Parent="Safari Generic Older" +Comment="Safari 1.2" +Version="1.2" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/100*] +Parent="Safari Generic Older" +Comment="Safari 1.1" +Version="1.1" +Platform="MacOSX" + +[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/85*] +Parent="Safari Generic Older" +Comment="Safari 1.0" +Version="1.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 11.0 + +[IE 11.0 for Win RT] +Parent="DefaultProperties" +Comment="IE 11.0" +Browser="IE" +Version="11.0" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[IE 11.0 for Tablet] +Parent="DefaultProperties" +Comment="IE 11.0" +Browser="IE" +Version="11.0" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Windows NT 10.0*Trident/7.0*Touch*rv:11.0*)*] +Parent="IE 11.0 for Tablet" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*Trident/7.0*Touch*rv:11.0*)*] +Parent="IE 11.0 for Tablet" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0*Touch*rv:11.0*)*] +Parent="IE 11.0 for Tablet" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows*Trident/7.0*Touch*rv:11.0*)*] +Parent="IE 11.0 for Tablet" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/7.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/8.0*Touch*)*] +Parent="IE 11.0 for Tablet" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win32" + +[IE 11.0 for Desktop] +Parent="DefaultProperties" +Comment="IE 11.0" +Browser="IE" +Version="11.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Windows NT 10.0*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.1*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (*Windows*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.1*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/7.0*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.3*; Trident/7.0*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.1*; Trident/7.0*] +Parent="IE 11.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (*Windows*; Trident/7.0*] +Parent="IE 11.0 for Desktop" +Platform="Win32" + +[Mozilla/5.0 (Windows 95; Anonymisiert*; Trident/7.0*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0; TOB* (*Windows NT 10.0*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0; TOB* (*Windows NT 6.4*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0; TOB* (*Windows NT 6.3*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0; TOB* (*Windows NT 6.1*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0; TOB* (*Windows*Trident/7.0*rv:11.0*] +Parent="IE 11.0 for Desktop" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 10.0*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.1*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] +Parent="IE 11.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (*Windows*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] +Parent="IE 11.0 for Desktop" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win10" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win8.1" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.1*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Comment="IE 11.0 in IE 10.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 10.0*; Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*; Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*; Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.1*; Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (*Windows*; Trident/8.0*)*] +Parent="IE 11.0 for Desktop" +Platform="Win32" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 10.0 + +[IE 10.0 for Win RT] +Parent="DefaultProperties" +Comment="IE 10.0" +Browser="IE" +Version="10.0" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[IE 10.0 for Desktop] +Parent="DefaultProperties" +Comment="IE 10.0" +Browser="IE" +Version="10.0" +Device_Type="Desktop" + +[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.2*Trident/6.0*Xbox; Xbox One*)*] +Parent="IE 10.0 for Desktop" +Platform="Xbox OS" +Device_Type="TV Device" + +[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 10.0*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 9.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.2*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Comment="IE 10.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0; Windows 95; Anonymisiert*Trident/6.0*)*] +Parent="IE 10.0 for Desktop" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 10.0*;Trident/6.0; *Windows NT 6.1*] +Parent="IE 10.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 10.0*;Trident/6.0; *Windows*] +Parent="IE 10.0 for Desktop" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows NT 6.2*] +Parent="IE 10.0 for Desktop" +Platform="Win8" + +[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows NT 6.1*] +Parent="IE 10.0 for Desktop" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows*] +Parent="IE 10.0 for Desktop" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows NT 6.2*] +Parent="IE 10.0 for Desktop" +Platform="Win8" + +[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows NT 6.1*] +Parent="IE 10.0 for Desktop" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows*] +Parent="IE 10.0 for Desktop" +Platform="Win32" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 9.0 + +[IE 9.0] +Parent="DefaultProperties" +Comment="IE 9.0" +Browser="IE" +Version="9.0" +Device_Type="Desktop" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0; Xbox*] +Parent="IE 9.0" +Platform="Xbox 360" +Device_Type="TV Device" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0*] +Parent="IE 9.0" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.0*Trident/5.0*] +Parent="IE 9.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows*Trident/5.0*] +Parent="IE 9.0" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0*] +Parent="IE 9.0" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.0*Trident/5.0*] +Parent="IE 9.0" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows*Trident/5.0*] +Parent="IE 9.0" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.0*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.0*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/5.0*)*] +Parent="IE 9.0" +Comment="IE 9.0 in IE 8.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (*MSIE 9.0*;*Windows NT 6.1*Trident/5.0*)*] +Parent="IE 9.0" +Platform="Win7" + +[Mozilla/5.0 (*MSIE 9.0*;*Windows NT 6.0*Trident/5.0*)*] +Parent="IE 9.0" +Platform="WinVista" + +[Mozilla/5.0 (*MSIE 9.0*;*Windows*Trident/5.0*)*] +Parent="IE 9.0" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*] +Parent="IE 9.0" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.0*] +Parent="IE 9.0" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows*] +Parent="IE 9.0" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.1*] +Parent="IE 9.0" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.0*] +Parent="IE 9.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows*] +Parent="IE 9.0" +Platform="Win32" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0 + +[IE 8.0] +Parent="DefaultProperties" +Comment="IE 8.0" +Browser="IE" +Version="8.0" +Device_Type="Desktop" + +[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows NT 6.1*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows NT 6.0*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*x64*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*WOW64*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.1*] +Parent="IE 8.0" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.0*] +Parent="IE 8.0" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows*] +Parent="IE 8.0" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.1*Trident/4.0*] +Parent="IE 8.0" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.0*Trident/4.0*] +Parent="IE 8.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows*Trident/4.0*] +Parent="IE 8.0" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.1*Trident/4.0*] +Parent="IE 8.0" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.0*Trident/4.0*] +Parent="IE 8.0" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows*Trident/4.0*] +Parent="IE 8.0" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win7" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win64" + +[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/4.0*] +Parent="IE 8.0" +Comment="IE 8.0 in IE 7.0 Compatibility Mode" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.1*] +Parent="IE 8.0" +Platform="Win7" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.0*] +Parent="IE 8.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows*] +Parent="IE 8.0" +Platform="Win32" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0b + +[IE 7.0b] +Parent="DefaultProperties" +Comment="IE 7.0b" +Browser="IE" +Version="7.0b" +Device_Type="Desktop" + +[Mozilla/4.0 (compatible*; MSIE 7.0b*;*Windows NT 6.0*] +Parent="IE 7.0b" +Platform="WinVista" + +[Mozilla/4.0 (compatible*; MSIE 7.0b*;*Windows*] +Parent="IE 7.0b" +Platform="Win32" + +[Mozilla/4.0 (*MSIE 7.0b*] +Parent="IE 7.0b" + +[Mozilla/5.0 (*MSIE 7.0b*] +Parent="IE 7.0b" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0 + +[IE 7.0] +Parent="DefaultProperties" +Comment="IE 7.0" +Browser="IE" +Version="7.0" +Device_Type="Desktop" + +[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows NT 6.0*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 7.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows*Mozilla/4.0 (compatible*; MSIE 6.0*] +Parent="IE 7.0" +Platform="Win32" + +[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows NT 6.0*] +Parent="IE 7.0" +Platform="WinVista" + +[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows*] +Parent="IE 7.0" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 7.0*;*Windows NT 6.0*] +Parent="IE 7.0" +Platform="WinVista" + +[Mozilla/5.0 (compatible; MSIE 7.0*;*Windows*] +Parent="IE 7.0" +Platform="Win32" + +[Mozilla/4.0 (compatible; MSIE 7.0*;*Windows NT 6.1*Trident/3.1; Xbox*] +Parent="IE 7.0" +Platform="Xbox 360" +Device_Type="TV Device" + +[Mozilla/4.0 (compatible; MSIE 7.0*;*Windows NT 6.2*Trident/3.1; Xbox; Xbox One*] +Parent="IE 7.0" +Platform="Xbox OS" +Device_Type="TV Device" + +[Mozilla/4.0 (*MSIE 7.0*] +Parent="IE 7.0" + +[Mozilla/5.0 (*MSIE 7.0*] +Parent="IE 7.0" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0 + +[IE 6.0 for Mobile] +Parent="DefaultProperties" +Comment="IE 6.0" +Browser="IE" +Version="6.0" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[IE 6.0 for Desktop] +Parent="DefaultProperties" +Comment="IE 6.0" +Browser="IE" +Version="6.0" +Device_Type="Desktop" + +[Mozilla/4.0 (compatible; MSIE 6.0*;*Windows*] +Parent="IE 6.0 for Desktop" +Platform="Win32" + +[Mozilla/5.0 (compatible; MSIE 6.0*;*Windows*] +Parent="IE 6.0 for Desktop" +Platform="Win32" + +[Mozilla/4.0 (*MSIE 6.0*)*] +Parent="IE 6.0 for Desktop" + +[Mozilla/5.0 (*MSIE 6.0*)*] +Parent="IE 6.0 for Desktop" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 96.0 + +[Firefox 96.0] +Parent="DefaultProperties" +Comment="Firefox 96.0" +Browser="Firefox" +Version="96.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:96*) Gecko* Firefox/96*anonymized by *] +Parent="Firefox 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:96*) Gecko* Firefox/96*anonymized by *] +Parent="Firefox 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:96*) Gecko* Firefox/96*anonymized by *] +Parent="Firefox 96.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:96*) Gecko* Firefox/96*anonymized by *] +Parent="Firefox 96.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:96*) Gecko* Firefox anonymized by *] +Parent="Firefox 96.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/96.0* Anonymisiert*] +Parent="Firefox 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/96.0* Anonymisiert*] +Parent="Firefox 96.0" +Platform="Win32" + +[Firefox/96.0*anonymized by Abelssoft*] +Parent="Firefox 96.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/96.0*] +Parent="Firefox 96.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 95.0 + +[Firefox 95.0] +Parent="DefaultProperties" +Comment="Firefox 95.0" +Browser="Firefox" +Version="95.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:95*) Gecko* Firefox/95*anonymized by *] +Parent="Firefox 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:95*) Gecko* Firefox/95*anonymized by *] +Parent="Firefox 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:95*) Gecko* Firefox/95*anonymized by *] +Parent="Firefox 95.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:95*) Gecko* Firefox/95*anonymized by *] +Parent="Firefox 95.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:95*) Gecko* Firefox anonymized by *] +Parent="Firefox 95.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/95.0* Anonymisiert*] +Parent="Firefox 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/95.0* Anonymisiert*] +Parent="Firefox 95.0" +Platform="Win32" + +[Firefox/95.0*anonymized by Abelssoft*] +Parent="Firefox 95.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/95.0*] +Parent="Firefox 95.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 94.0 + +[Firefox 94.0] +Parent="DefaultProperties" +Comment="Firefox 94.0" +Browser="Firefox" +Version="94.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:94*) Gecko* Firefox/94*anonymized by *] +Parent="Firefox 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:94*) Gecko* Firefox/94*anonymized by *] +Parent="Firefox 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:94*) Gecko* Firefox/94*anonymized by *] +Parent="Firefox 94.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:94*) Gecko* Firefox/94*anonymized by *] +Parent="Firefox 94.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:94*) Gecko* Firefox anonymized by *] +Parent="Firefox 94.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/94.0* Anonymisiert*] +Parent="Firefox 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/94.0* Anonymisiert*] +Parent="Firefox 94.0" +Platform="Win32" + +[Firefox/94.0*anonymized by Abelssoft*] +Parent="Firefox 94.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/94.0*] +Parent="Firefox 94.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 93.0 + +[Firefox 93.0] +Parent="DefaultProperties" +Comment="Firefox 93.0" +Browser="Firefox" +Version="93.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:93*) Gecko* Firefox/93*anonymized by *] +Parent="Firefox 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:93*) Gecko* Firefox/93*anonymized by *] +Parent="Firefox 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:93*) Gecko* Firefox/93*anonymized by *] +Parent="Firefox 93.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:93*) Gecko* Firefox/93*anonymized by *] +Parent="Firefox 93.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:93*) Gecko* Firefox anonymized by *] +Parent="Firefox 93.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/93.0* Anonymisiert*] +Parent="Firefox 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/93.0* Anonymisiert*] +Parent="Firefox 93.0" +Platform="Win32" + +[Firefox/93.0*anonymized by Abelssoft*] +Parent="Firefox 93.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/93.0*] +Parent="Firefox 93.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 92.0 + +[Firefox 92.0] +Parent="DefaultProperties" +Comment="Firefox 92.0" +Browser="Firefox" +Version="92.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:92*) Gecko* Firefox/92*anonymized by *] +Parent="Firefox 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:92*) Gecko* Firefox/92*anonymized by *] +Parent="Firefox 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:92*) Gecko* Firefox/92*anonymized by *] +Parent="Firefox 92.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:92*) Gecko* Firefox/92*anonymized by *] +Parent="Firefox 92.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:92*) Gecko* Firefox anonymized by *] +Parent="Firefox 92.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/92.0* Anonymisiert*] +Parent="Firefox 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/92.0* Anonymisiert*] +Parent="Firefox 92.0" +Platform="Win32" + +[Firefox/92.0*anonymized by Abelssoft*] +Parent="Firefox 92.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/92.0*] +Parent="Firefox 92.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 91.0 + +[Firefox 91.0] +Parent="DefaultProperties" +Comment="Firefox 91.0" +Browser="Firefox" +Version="91.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:91*) Gecko* Firefox/91*anonymized by *] +Parent="Firefox 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:91*) Gecko* Firefox/91*anonymized by *] +Parent="Firefox 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:91*) Gecko* Firefox/91*anonymized by *] +Parent="Firefox 91.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:91*) Gecko* Firefox/91*anonymized by *] +Parent="Firefox 91.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:91*) Gecko* Firefox anonymized by *] +Parent="Firefox 91.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/91.0* Anonymisiert*] +Parent="Firefox 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/91.0* Anonymisiert*] +Parent="Firefox 91.0" +Platform="Win32" + +[Firefox/91.0*anonymized by Abelssoft*] +Parent="Firefox 91.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/91.0*] +Parent="Firefox 91.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 90.0 + +[Firefox 90.0] +Parent="DefaultProperties" +Comment="Firefox 90.0" +Browser="Firefox" +Version="90.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:90*) Gecko* Firefox/90*anonymized by *] +Parent="Firefox 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:90*) Gecko* Firefox/90*anonymized by *] +Parent="Firefox 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:90*) Gecko* Firefox/90*anonymized by *] +Parent="Firefox 90.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:90*) Gecko* Firefox/90*anonymized by *] +Parent="Firefox 90.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:90*) Gecko* Firefox anonymized by *] +Parent="Firefox 90.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/90.0* Anonymisiert*] +Parent="Firefox 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/90.0* Anonymisiert*] +Parent="Firefox 90.0" +Platform="Win32" + +[Firefox/90.0*anonymized by Abelssoft*] +Parent="Firefox 90.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/90.0*] +Parent="Firefox 90.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 89.0 + +[Firefox 89.0] +Parent="DefaultProperties" +Comment="Firefox 89.0" +Browser="Firefox" +Version="89.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:89*) Gecko* Firefox/89*anonymized by *] +Parent="Firefox 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:89*) Gecko* Firefox/89*anonymized by *] +Parent="Firefox 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:89*) Gecko* Firefox/89*anonymized by *] +Parent="Firefox 89.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:89*) Gecko* Firefox/89*anonymized by *] +Parent="Firefox 89.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:89*) Gecko* Firefox anonymized by *] +Parent="Firefox 89.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/89.0* Anonymisiert*] +Parent="Firefox 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/89.0* Anonymisiert*] +Parent="Firefox 89.0" +Platform="Win32" + +[Firefox/89.0*anonymized by Abelssoft*] +Parent="Firefox 89.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/89.0*] +Parent="Firefox 89.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 88.0 + +[Firefox 88.0] +Parent="DefaultProperties" +Comment="Firefox 88.0" +Browser="Firefox" +Version="88.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:88*) Gecko* Firefox/88*anonymized by *] +Parent="Firefox 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:88*) Gecko* Firefox/88*anonymized by *] +Parent="Firefox 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:88*) Gecko* Firefox/88*anonymized by *] +Parent="Firefox 88.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:88*) Gecko* Firefox/88*anonymized by *] +Parent="Firefox 88.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:88*) Gecko* Firefox anonymized by *] +Parent="Firefox 88.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/88.0* Anonymisiert*] +Parent="Firefox 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/88.0* Anonymisiert*] +Parent="Firefox 88.0" +Platform="Win32" + +[Firefox/88.0*anonymized by Abelssoft*] +Parent="Firefox 88.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/88.0*] +Parent="Firefox 88.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 87.0 + +[Firefox 87.0] +Parent="DefaultProperties" +Comment="Firefox 87.0" +Browser="Firefox" +Version="87.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:87*) Gecko* Firefox/87*anonymized by *] +Parent="Firefox 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:87*) Gecko* Firefox/87*anonymized by *] +Parent="Firefox 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:87*) Gecko* Firefox/87*anonymized by *] +Parent="Firefox 87.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:87*) Gecko* Firefox/87*anonymized by *] +Parent="Firefox 87.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:87*) Gecko* Firefox anonymized by *] +Parent="Firefox 87.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/87.0* Anonymisiert*] +Parent="Firefox 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/87.0* Anonymisiert*] +Parent="Firefox 87.0" +Platform="Win32" + +[Firefox/87.0*anonymized by Abelssoft*] +Parent="Firefox 87.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/87.0*] +Parent="Firefox 87.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 86.0 + +[Firefox 86.0] +Parent="DefaultProperties" +Comment="Firefox 86.0" +Browser="Firefox" +Version="86.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:86*) Gecko* Firefox/86*anonymized by *] +Parent="Firefox 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:86*) Gecko* Firefox/86*anonymized by *] +Parent="Firefox 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:86*) Gecko* Firefox/86*anonymized by *] +Parent="Firefox 86.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:86*) Gecko* Firefox/86*anonymized by *] +Parent="Firefox 86.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:86*) Gecko* Firefox anonymized by *] +Parent="Firefox 86.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/86.0* Anonymisiert*] +Parent="Firefox 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/86.0* Anonymisiert*] +Parent="Firefox 86.0" +Platform="Win32" + +[Firefox/86.0*anonymized by Abelssoft*] +Parent="Firefox 86.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/86.0*] +Parent="Firefox 86.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 85.0 + +[Firefox 85.0] +Parent="DefaultProperties" +Comment="Firefox 85.0" +Browser="Firefox" +Version="85.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:85*) Gecko* Firefox/85*anonymized by *] +Parent="Firefox 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:85*) Gecko* Firefox/85*anonymized by *] +Parent="Firefox 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:85*) Gecko* Firefox/85*anonymized by *] +Parent="Firefox 85.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:85*) Gecko* Firefox/85*anonymized by *] +Parent="Firefox 85.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:85*) Gecko* Firefox anonymized by *] +Parent="Firefox 85.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/85.0* Anonymisiert*] +Parent="Firefox 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/85.0* Anonymisiert*] +Parent="Firefox 85.0" +Platform="Win32" + +[Firefox/85.0*anonymized by Abelssoft*] +Parent="Firefox 85.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/85.0*] +Parent="Firefox 85.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 84.0 + +[Firefox 84.0] +Parent="DefaultProperties" +Comment="Firefox 84.0" +Browser="Firefox" +Version="84.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:84*) Gecko* Firefox/84*anonymized by *] +Parent="Firefox 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:84*) Gecko* Firefox/84*anonymized by *] +Parent="Firefox 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:84*) Gecko* Firefox/84*anonymized by *] +Parent="Firefox 84.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:84*) Gecko* Firefox/84*anonymized by *] +Parent="Firefox 84.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:84*) Gecko* Firefox anonymized by *] +Parent="Firefox 84.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/84.0* Anonymisiert*] +Parent="Firefox 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/84.0* Anonymisiert*] +Parent="Firefox 84.0" +Platform="Win32" + +[Firefox/84.0*anonymized by Abelssoft*] +Parent="Firefox 84.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/84.0*] +Parent="Firefox 84.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 83.0 + +[Firefox 83.0] +Parent="DefaultProperties" +Comment="Firefox 83.0" +Browser="Firefox" +Version="83.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:83*) Gecko* Firefox/83*anonymized by *] +Parent="Firefox 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:83*) Gecko* Firefox/83*anonymized by *] +Parent="Firefox 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:83*) Gecko* Firefox/83*anonymized by *] +Parent="Firefox 83.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:83*) Gecko* Firefox/83*anonymized by *] +Parent="Firefox 83.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:83*) Gecko* Firefox anonymized by *] +Parent="Firefox 83.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/83.0* Anonymisiert*] +Parent="Firefox 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/83.0* Anonymisiert*] +Parent="Firefox 83.0" +Platform="Win32" + +[Firefox/83.0*anonymized by Abelssoft*] +Parent="Firefox 83.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/83.0*] +Parent="Firefox 83.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 82.0 + +[Firefox 82.0] +Parent="DefaultProperties" +Comment="Firefox 82.0" +Browser="Firefox" +Version="82.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:82*) Gecko* Firefox/82*anonymized by *] +Parent="Firefox 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:82*) Gecko* Firefox/82*anonymized by *] +Parent="Firefox 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:82*) Gecko* Firefox/82*anonymized by *] +Parent="Firefox 82.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:82*) Gecko* Firefox/82*anonymized by *] +Parent="Firefox 82.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:82*) Gecko* Firefox anonymized by *] +Parent="Firefox 82.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/82.0* Anonymisiert*] +Parent="Firefox 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/82.0* Anonymisiert*] +Parent="Firefox 82.0" +Platform="Win32" + +[Firefox/82.0*anonymized by Abelssoft*] +Parent="Firefox 82.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/82.0*] +Parent="Firefox 82.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 81.0 + +[Firefox 81.0] +Parent="DefaultProperties" +Comment="Firefox 81.0" +Browser="Firefox" +Version="81.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:81*) Gecko* Firefox/81*anonymized by *] +Parent="Firefox 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:81*) Gecko* Firefox/81*anonymized by *] +Parent="Firefox 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:81*) Gecko* Firefox/81*anonymized by *] +Parent="Firefox 81.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:81*) Gecko* Firefox/81*anonymized by *] +Parent="Firefox 81.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:81*) Gecko* Firefox anonymized by *] +Parent="Firefox 81.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/81.0* Anonymisiert*] +Parent="Firefox 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/81.0* Anonymisiert*] +Parent="Firefox 81.0" +Platform="Win32" + +[Firefox/81.0*anonymized by Abelssoft*] +Parent="Firefox 81.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/81.0*] +Parent="Firefox 81.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 80.0 + +[Firefox 80.0] +Parent="DefaultProperties" +Comment="Firefox 80.0" +Browser="Firefox" +Version="80.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:80*) Gecko* Firefox/80*anonymized by *] +Parent="Firefox 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:80*) Gecko* Firefox/80*anonymized by *] +Parent="Firefox 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:80*) Gecko* Firefox/80*anonymized by *] +Parent="Firefox 80.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:80*) Gecko* Firefox/80*anonymized by *] +Parent="Firefox 80.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:80*) Gecko* Firefox anonymized by *] +Parent="Firefox 80.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/80.0* Anonymisiert*] +Parent="Firefox 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/80.0* Anonymisiert*] +Parent="Firefox 80.0" +Platform="Win32" + +[Firefox/80.0*anonymized by Abelssoft*] +Parent="Firefox 80.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/80.0*] +Parent="Firefox 80.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 79.0 + +[Firefox 79.0] +Parent="DefaultProperties" +Comment="Firefox 79.0" +Browser="Firefox" +Version="79.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:79*) Gecko* Firefox/79*anonymized by *] +Parent="Firefox 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:79*) Gecko* Firefox/79*anonymized by *] +Parent="Firefox 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:79*) Gecko* Firefox/79*anonymized by *] +Parent="Firefox 79.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:79*) Gecko* Firefox/79*anonymized by *] +Parent="Firefox 79.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:79*) Gecko* Firefox anonymized by *] +Parent="Firefox 79.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/79.0* Anonymisiert*] +Parent="Firefox 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/79.0* Anonymisiert*] +Parent="Firefox 79.0" +Platform="Win32" + +[Firefox/79.0*anonymized by Abelssoft*] +Parent="Firefox 79.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/79.0*] +Parent="Firefox 79.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 78.0 + +[Firefox 78.0] +Parent="DefaultProperties" +Comment="Firefox 78.0" +Browser="Firefox" +Version="78.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:78*) Gecko* Firefox/78*anonymized by *] +Parent="Firefox 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:78*) Gecko* Firefox/78*anonymized by *] +Parent="Firefox 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:78*) Gecko* Firefox/78*anonymized by *] +Parent="Firefox 78.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:78*) Gecko* Firefox/78*anonymized by *] +Parent="Firefox 78.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:78*) Gecko* Firefox anonymized by *] +Parent="Firefox 78.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/78.0* Anonymisiert*] +Parent="Firefox 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/78.0* Anonymisiert*] +Parent="Firefox 78.0" +Platform="Win32" + +[Firefox/78.0*anonymized by Abelssoft*] +Parent="Firefox 78.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/78.0*] +Parent="Firefox 78.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 77.0 + +[Firefox 77.0] +Parent="DefaultProperties" +Comment="Firefox 77.0" +Browser="Firefox" +Version="77.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:77*) Gecko* Firefox/77*anonymized by *] +Parent="Firefox 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:77*) Gecko* Firefox/77*anonymized by *] +Parent="Firefox 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:77*) Gecko* Firefox/77*anonymized by *] +Parent="Firefox 77.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:77*) Gecko* Firefox/77*anonymized by *] +Parent="Firefox 77.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:77*) Gecko* Firefox anonymized by *] +Parent="Firefox 77.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/77.0* Anonymisiert*] +Parent="Firefox 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/77.0* Anonymisiert*] +Parent="Firefox 77.0" +Platform="Win32" + +[Firefox/77.0*anonymized by Abelssoft*] +Parent="Firefox 77.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/77.0*] +Parent="Firefox 77.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 76.0 + +[Firefox 76.0] +Parent="DefaultProperties" +Comment="Firefox 76.0" +Browser="Firefox" +Version="76.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:76*) Gecko* Firefox/76*anonymized by *] +Parent="Firefox 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:76*) Gecko* Firefox/76*anonymized by *] +Parent="Firefox 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:76*) Gecko* Firefox/76*anonymized by *] +Parent="Firefox 76.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:76*) Gecko* Firefox/76*anonymized by *] +Parent="Firefox 76.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:76*) Gecko* Firefox anonymized by *] +Parent="Firefox 76.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/76.0* Anonymisiert*] +Parent="Firefox 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/76.0* Anonymisiert*] +Parent="Firefox 76.0" +Platform="Win32" + +[Firefox/76.0*anonymized by Abelssoft*] +Parent="Firefox 76.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/76.0*] +Parent="Firefox 76.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 75.0 + +[Firefox 75.0] +Parent="DefaultProperties" +Comment="Firefox 75.0" +Browser="Firefox" +Version="75.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:75*) Gecko* Firefox/75*anonymized by *] +Parent="Firefox 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:75*) Gecko* Firefox/75*anonymized by *] +Parent="Firefox 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:75*) Gecko* Firefox/75*anonymized by *] +Parent="Firefox 75.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:75*) Gecko* Firefox/75*anonymized by *] +Parent="Firefox 75.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:75*) Gecko* Firefox anonymized by *] +Parent="Firefox 75.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/75.0* Anonymisiert*] +Parent="Firefox 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/75.0* Anonymisiert*] +Parent="Firefox 75.0" +Platform="Win32" + +[Firefox/75.0*anonymized by Abelssoft*] +Parent="Firefox 75.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/75.0*] +Parent="Firefox 75.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 74.0 + +[Firefox 74.0] +Parent="DefaultProperties" +Comment="Firefox 74.0" +Browser="Firefox" +Version="74.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:74*) Gecko* Firefox/74*anonymized by *] +Parent="Firefox 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:74*) Gecko* Firefox/74*anonymized by *] +Parent="Firefox 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:74*) Gecko* Firefox/74*anonymized by *] +Parent="Firefox 74.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:74*) Gecko* Firefox/74*anonymized by *] +Parent="Firefox 74.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:74*) Gecko* Firefox anonymized by *] +Parent="Firefox 74.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/74.0* Anonymisiert*] +Parent="Firefox 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/74.0* Anonymisiert*] +Parent="Firefox 74.0" +Platform="Win32" + +[Firefox/74.0*anonymized by Abelssoft*] +Parent="Firefox 74.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/74.0*] +Parent="Firefox 74.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 73.0 + +[Firefox 73.0] +Parent="DefaultProperties" +Comment="Firefox 73.0" +Browser="Firefox" +Version="73.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:73*) Gecko* Firefox/73*anonymized by *] +Parent="Firefox 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:73*) Gecko* Firefox/73*anonymized by *] +Parent="Firefox 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:73*) Gecko* Firefox/73*anonymized by *] +Parent="Firefox 73.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:73*) Gecko* Firefox/73*anonymized by *] +Parent="Firefox 73.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:73*) Gecko* Firefox anonymized by *] +Parent="Firefox 73.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/73.0* Anonymisiert*] +Parent="Firefox 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/73.0* Anonymisiert*] +Parent="Firefox 73.0" +Platform="Win32" + +[Firefox/73.0*anonymized by Abelssoft*] +Parent="Firefox 73.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/73.0*] +Parent="Firefox 73.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 72.0 + +[Firefox 72.0] +Parent="DefaultProperties" +Comment="Firefox 72.0" +Browser="Firefox" +Version="72.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:72*) Gecko* Firefox/72*anonymized by *] +Parent="Firefox 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:72*) Gecko* Firefox/72*anonymized by *] +Parent="Firefox 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:72*) Gecko* Firefox/72*anonymized by *] +Parent="Firefox 72.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:72*) Gecko* Firefox/72*anonymized by *] +Parent="Firefox 72.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:72*) Gecko* Firefox anonymized by *] +Parent="Firefox 72.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/72.0* Anonymisiert*] +Parent="Firefox 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/72.0* Anonymisiert*] +Parent="Firefox 72.0" +Platform="Win32" + +[Firefox/72.0*anonymized by Abelssoft*] +Parent="Firefox 72.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/72.0*] +Parent="Firefox 72.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 71.0 + +[Firefox 71.0] +Parent="DefaultProperties" +Comment="Firefox 71.0" +Browser="Firefox" +Version="71.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:71*) Gecko* Firefox/71*anonymized by *] +Parent="Firefox 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:71*) Gecko* Firefox/71*anonymized by *] +Parent="Firefox 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:71*) Gecko* Firefox/71*anonymized by *] +Parent="Firefox 71.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:71*) Gecko* Firefox/71*anonymized by *] +Parent="Firefox 71.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:71*) Gecko* Firefox anonymized by *] +Parent="Firefox 71.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/71.0* Anonymisiert*] +Parent="Firefox 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/71.0* Anonymisiert*] +Parent="Firefox 71.0" +Platform="Win32" + +[Firefox/71.0*anonymized by Abelssoft*] +Parent="Firefox 71.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/71.0*] +Parent="Firefox 71.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 70.0 + +[Firefox 70.0] +Parent="DefaultProperties" +Comment="Firefox 70.0" +Browser="Firefox" +Version="70.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:70*) Gecko* Firefox/70*anonymized by *] +Parent="Firefox 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:70*) Gecko* Firefox/70*anonymized by *] +Parent="Firefox 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:70*) Gecko* Firefox/70*anonymized by *] +Parent="Firefox 70.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:70*) Gecko* Firefox/70*anonymized by *] +Parent="Firefox 70.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:70*) Gecko* Firefox anonymized by *] +Parent="Firefox 70.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/70.0* Anonymisiert*] +Parent="Firefox 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/70.0* Anonymisiert*] +Parent="Firefox 70.0" +Platform="Win32" + +[Firefox/70.0*anonymized by Abelssoft*] +Parent="Firefox 70.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/70.0*] +Parent="Firefox 70.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 69.0 + +[Firefox 69.0] +Parent="DefaultProperties" +Comment="Firefox 69.0" +Browser="Firefox" +Version="69.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:69*) Gecko* Firefox/69*anonymized by *] +Parent="Firefox 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:69*) Gecko* Firefox/69*anonymized by *] +Parent="Firefox 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:69*) Gecko* Firefox/69*anonymized by *] +Parent="Firefox 69.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:69*) Gecko* Firefox/69*anonymized by *] +Parent="Firefox 69.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:69*) Gecko* Firefox anonymized by *] +Parent="Firefox 69.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/69.0* Anonymisiert*] +Parent="Firefox 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/69.0* Anonymisiert*] +Parent="Firefox 69.0" +Platform="Win32" + +[Firefox/69.0*anonymized by Abelssoft*] +Parent="Firefox 69.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/69.0*] +Parent="Firefox 69.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 68.0 + +[Firefox 68.0] +Parent="DefaultProperties" +Comment="Firefox 68.0" +Browser="Firefox" +Version="68.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:68*) Gecko* Firefox/68*anonymized by *] +Parent="Firefox 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:68*) Gecko* Firefox/68*anonymized by *] +Parent="Firefox 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:68*) Gecko* Firefox/68*anonymized by *] +Parent="Firefox 68.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:68*) Gecko* Firefox/68*anonymized by *] +Parent="Firefox 68.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:68*) Gecko* Firefox anonymized by *] +Parent="Firefox 68.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/68.0* Anonymisiert*] +Parent="Firefox 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/68.0* Anonymisiert*] +Parent="Firefox 68.0" +Platform="Win32" + +[Firefox/68.0*anonymized by Abelssoft*] +Parent="Firefox 68.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/68.0*] +Parent="Firefox 68.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 67.0 + +[Firefox 67.0] +Parent="DefaultProperties" +Comment="Firefox 67.0" +Browser="Firefox" +Version="67.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:67*) Gecko* Firefox/67*anonymized by *] +Parent="Firefox 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:67*) Gecko* Firefox/67*anonymized by *] +Parent="Firefox 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:67*) Gecko* Firefox/67*anonymized by *] +Parent="Firefox 67.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:67*) Gecko* Firefox/67*anonymized by *] +Parent="Firefox 67.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:67*) Gecko* Firefox anonymized by *] +Parent="Firefox 67.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/67.0* Anonymisiert*] +Parent="Firefox 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/67.0* Anonymisiert*] +Parent="Firefox 67.0" +Platform="Win32" + +[Firefox/67.0*anonymized by Abelssoft*] +Parent="Firefox 67.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/67.0*] +Parent="Firefox 67.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 66.0 + +[Firefox 66.0] +Parent="DefaultProperties" +Comment="Firefox 66.0" +Browser="Firefox" +Version="66.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:66*) Gecko* Firefox/66*anonymized by *] +Parent="Firefox 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:66*) Gecko* Firefox/66*anonymized by *] +Parent="Firefox 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:66*) Gecko* Firefox/66*anonymized by *] +Parent="Firefox 66.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:66*) Gecko* Firefox/66*anonymized by *] +Parent="Firefox 66.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:66*) Gecko* Firefox anonymized by *] +Parent="Firefox 66.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/66.0* Anonymisiert*] +Parent="Firefox 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/66.0* Anonymisiert*] +Parent="Firefox 66.0" +Platform="Win32" + +[Firefox/66.0*anonymized by Abelssoft*] +Parent="Firefox 66.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/66.0*] +Parent="Firefox 66.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 65.0 + +[Firefox 65.0] +Parent="DefaultProperties" +Comment="Firefox 65.0" +Browser="Firefox" +Version="65.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:65*) Gecko* Firefox/65*anonymized by *] +Parent="Firefox 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:65*) Gecko* Firefox/65*anonymized by *] +Parent="Firefox 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:65*) Gecko* Firefox/65*anonymized by *] +Parent="Firefox 65.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:65*) Gecko* Firefox/65*anonymized by *] +Parent="Firefox 65.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:65*) Gecko* Firefox anonymized by *] +Parent="Firefox 65.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/65.0* Anonymisiert*] +Parent="Firefox 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/65.0* Anonymisiert*] +Parent="Firefox 65.0" +Platform="Win32" + +[Firefox/65.0*anonymized by Abelssoft*] +Parent="Firefox 65.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/65.0*] +Parent="Firefox 65.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 64.0 + +[Firefox 64.0] +Parent="DefaultProperties" +Comment="Firefox 64.0" +Browser="Firefox" +Version="64.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:64*) Gecko* Firefox/64*anonymized by *] +Parent="Firefox 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:64*) Gecko* Firefox/64*anonymized by *] +Parent="Firefox 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:64*) Gecko* Firefox/64*anonymized by *] +Parent="Firefox 64.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:64*) Gecko* Firefox/64*anonymized by *] +Parent="Firefox 64.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:64*) Gecko* Firefox anonymized by *] +Parent="Firefox 64.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/64.0* Anonymisiert*] +Parent="Firefox 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/64.0* Anonymisiert*] +Parent="Firefox 64.0" +Platform="Win32" + +[Firefox/64.0*anonymized by Abelssoft*] +Parent="Firefox 64.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/64.0*] +Parent="Firefox 64.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 63.0 + +[Firefox 63.0] +Parent="DefaultProperties" +Comment="Firefox 63.0" +Browser="Firefox" +Version="63.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:63*) Gecko* Firefox/63*anonymized by *] +Parent="Firefox 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:63*) Gecko* Firefox/63*anonymized by *] +Parent="Firefox 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:63*) Gecko* Firefox/63*anonymized by *] +Parent="Firefox 63.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:63*) Gecko* Firefox/63*anonymized by *] +Parent="Firefox 63.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:63*) Gecko* Firefox anonymized by *] +Parent="Firefox 63.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/63.0* Anonymisiert*] +Parent="Firefox 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/63.0* Anonymisiert*] +Parent="Firefox 63.0" +Platform="Win32" + +[Firefox/63.0*anonymized by Abelssoft*] +Parent="Firefox 63.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/63.0*] +Parent="Firefox 63.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 62.0 + +[Firefox 62.0] +Parent="DefaultProperties" +Comment="Firefox 62.0" +Browser="Firefox" +Version="62.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:62*) Gecko* Firefox/62*anonymized by *] +Parent="Firefox 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:62*) Gecko* Firefox/62*anonymized by *] +Parent="Firefox 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:62*) Gecko* Firefox/62*anonymized by *] +Parent="Firefox 62.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:62*) Gecko* Firefox/62*anonymized by *] +Parent="Firefox 62.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:62*) Gecko* Firefox anonymized by *] +Parent="Firefox 62.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/62.0* Anonymisiert*] +Parent="Firefox 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/62.0* Anonymisiert*] +Parent="Firefox 62.0" +Platform="Win32" + +[Firefox/62.0*anonymized by Abelssoft*] +Parent="Firefox 62.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/62.0*] +Parent="Firefox 62.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 61.0 + +[Firefox 61.0] +Parent="DefaultProperties" +Comment="Firefox 61.0" +Browser="Firefox" +Version="61.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:61*) Gecko* Firefox/61*anonymized by *] +Parent="Firefox 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:61*) Gecko* Firefox/61*anonymized by *] +Parent="Firefox 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:61*) Gecko* Firefox/61*anonymized by *] +Parent="Firefox 61.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:61*) Gecko* Firefox/61*anonymized by *] +Parent="Firefox 61.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:61*) Gecko* Firefox anonymized by *] +Parent="Firefox 61.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/61.0* Anonymisiert*] +Parent="Firefox 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/61.0* Anonymisiert*] +Parent="Firefox 61.0" +Platform="Win32" + +[Firefox/61.0*anonymized by Abelssoft*] +Parent="Firefox 61.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/61.0*] +Parent="Firefox 61.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 60.0 + +[Firefox 60.0] +Parent="DefaultProperties" +Comment="Firefox 60.0" +Browser="Firefox" +Version="60.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:60*) Gecko* Firefox/60*anonymized by *] +Parent="Firefox 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:60*) Gecko* Firefox/60*anonymized by *] +Parent="Firefox 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:60*) Gecko* Firefox/60*anonymized by *] +Parent="Firefox 60.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:60*) Gecko* Firefox/60*anonymized by *] +Parent="Firefox 60.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:60*) Gecko* Firefox anonymized by *] +Parent="Firefox 60.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/60.0* Anonymisiert*] +Parent="Firefox 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/60.0* Anonymisiert*] +Parent="Firefox 60.0" +Platform="Win32" + +[Firefox/60.0*anonymized by Abelssoft*] +Parent="Firefox 60.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/60.0*] +Parent="Firefox 60.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 59.0 + +[Firefox 59.0] +Parent="DefaultProperties" +Comment="Firefox 59.0" +Browser="Firefox" +Version="59.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:59*) Gecko* Firefox/59*anonymized by *] +Parent="Firefox 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:59*) Gecko* Firefox/59*anonymized by *] +Parent="Firefox 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:59*) Gecko* Firefox/59*anonymized by *] +Parent="Firefox 59.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:59*) Gecko* Firefox/59*anonymized by *] +Parent="Firefox 59.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:59*) Gecko* Firefox anonymized by *] +Parent="Firefox 59.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/59.0* Anonymisiert*] +Parent="Firefox 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/59.0* Anonymisiert*] +Parent="Firefox 59.0" +Platform="Win32" + +[Firefox/59.0*anonymized by Abelssoft*] +Parent="Firefox 59.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/59.0*] +Parent="Firefox 59.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 58.0 + +[Firefox 58.0] +Parent="DefaultProperties" +Comment="Firefox 58.0" +Browser="Firefox" +Version="58.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:58*) Gecko* Firefox/58*anonymized by *] +Parent="Firefox 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:58*) Gecko* Firefox/58*anonymized by *] +Parent="Firefox 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:58*) Gecko* Firefox/58*anonymized by *] +Parent="Firefox 58.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:58*) Gecko* Firefox/58*anonymized by *] +Parent="Firefox 58.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:58*) Gecko* Firefox anonymized by *] +Parent="Firefox 58.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/58.0* Anonymisiert*] +Parent="Firefox 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/58.0* Anonymisiert*] +Parent="Firefox 58.0" +Platform="Win32" + +[Firefox/58.0*anonymized by Abelssoft*] +Parent="Firefox 58.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/58.0*] +Parent="Firefox 58.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 57.0 + +[Firefox 57.0] +Parent="DefaultProperties" +Comment="Firefox 57.0" +Browser="Firefox" +Version="57.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:57*) Gecko* Firefox/57*anonymized by *] +Parent="Firefox 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:57*) Gecko* Firefox/57*anonymized by *] +Parent="Firefox 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:57*) Gecko* Firefox/57*anonymized by *] +Parent="Firefox 57.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:57*) Gecko* Firefox/57*anonymized by *] +Parent="Firefox 57.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:57*) Gecko* Firefox anonymized by *] +Parent="Firefox 57.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/57.0* Anonymisiert*] +Parent="Firefox 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/57.0* Anonymisiert*] +Parent="Firefox 57.0" +Platform="Win32" + +[Firefox/57.0*anonymized by Abelssoft*] +Parent="Firefox 57.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/57.0*] +Parent="Firefox 57.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 56.0 + +[Firefox 56.0] +Parent="DefaultProperties" +Comment="Firefox 56.0" +Browser="Firefox" +Version="56.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:56*) Gecko* Firefox/56*anonymized by *] +Parent="Firefox 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:56*) Gecko* Firefox/56*anonymized by *] +Parent="Firefox 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:56*) Gecko* Firefox/56*anonymized by *] +Parent="Firefox 56.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:56*) Gecko* Firefox/56*anonymized by *] +Parent="Firefox 56.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:56*) Gecko* Firefox anonymized by *] +Parent="Firefox 56.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/56.0* Anonymisiert*] +Parent="Firefox 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/56.0* Anonymisiert*] +Parent="Firefox 56.0" +Platform="Win32" + +[Firefox/56.0*anonymized by Abelssoft*] +Parent="Firefox 56.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/56.0*] +Parent="Firefox 56.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 55.0 + +[Firefox 55.0] +Parent="DefaultProperties" +Comment="Firefox 55.0" +Browser="Firefox" +Version="55.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:55*) Gecko* Firefox/55*anonymized by *] +Parent="Firefox 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:55*) Gecko* Firefox/55*anonymized by *] +Parent="Firefox 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:55*) Gecko* Firefox/55*anonymized by *] +Parent="Firefox 55.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:55*) Gecko* Firefox/55*anonymized by *] +Parent="Firefox 55.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:55*) Gecko* Firefox anonymized by *] +Parent="Firefox 55.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/55.0* Anonymisiert*] +Parent="Firefox 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/55.0* Anonymisiert*] +Parent="Firefox 55.0" +Platform="Win32" + +[Firefox/55.0*anonymized by Abelssoft*] +Parent="Firefox 55.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/55.0*] +Parent="Firefox 55.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 54.0 + +[Firefox 54.0] +Parent="DefaultProperties" +Comment="Firefox 54.0" +Browser="Firefox" +Version="54.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:54*) Gecko* Firefox/54*anonymized by *] +Parent="Firefox 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:54*) Gecko* Firefox/54*anonymized by *] +Parent="Firefox 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:54*) Gecko* Firefox/54*anonymized by *] +Parent="Firefox 54.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:54*) Gecko* Firefox/54*anonymized by *] +Parent="Firefox 54.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:54*) Gecko* Firefox anonymized by *] +Parent="Firefox 54.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/54.0* Anonymisiert*] +Parent="Firefox 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/54.0* Anonymisiert*] +Parent="Firefox 54.0" +Platform="Win32" + +[Firefox/54.0*anonymized by Abelssoft*] +Parent="Firefox 54.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/54.0*] +Parent="Firefox 54.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 53.0 + +[Firefox 53.0] +Parent="DefaultProperties" +Comment="Firefox 53.0" +Browser="Firefox" +Version="53.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="Win7" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:53*) Gecko* Firefox/53*anonymized by *] +Parent="Firefox 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:53*) Gecko* Firefox/53*anonymized by *] +Parent="Firefox 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:53*) Gecko* Firefox/53*anonymized by *] +Parent="Firefox 53.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:53*) Gecko* Firefox/53*anonymized by *] +Parent="Firefox 53.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows*; rv:53*) Gecko* Firefox anonymized by *] +Parent="Firefox 53.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/53.0* Anonymisiert*] +Parent="Firefox 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/53.0* Anonymisiert*] +Parent="Firefox 53.0" +Platform="Win32" + +[Firefox/53.0*anonymized by Abelssoft*] +Parent="Firefox 53.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="Win7" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/53.0*] +Parent="Firefox 53.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 52.0 + +[Firefox 52.0] +Parent="DefaultProperties" +Comment="Firefox 52.0" +Browser="Firefox" +Version="52.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:52*) Gecko* Firefox/52*anonymized by *] +Parent="Firefox 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:52*) Gecko* Firefox/52*anonymized by *] +Parent="Firefox 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:52*) Gecko* Firefox/52*anonymized by *] +Parent="Firefox 52.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:52*) Gecko* Firefox/52*anonymized by *] +Parent="Firefox 52.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:52*) Gecko* Firefox anonymized by *] +Parent="Firefox 52.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:52*) Gecko* Firefox anonymized by *] +Parent="Firefox 52.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/52.0* Anonymisiert*] +Parent="Firefox 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/52.0* Anonymisiert*] +Parent="Firefox 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/52.0* Anonymisiert*] +Parent="Firefox 52.0" +Platform="Win32" + +[Firefox/52.0*anonymized by Abelssoft*] +Parent="Firefox 52.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/52.0*] +Parent="Firefox 52.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 51.0 + +[Firefox 51.0] +Parent="DefaultProperties" +Comment="Firefox 51.0" +Browser="Firefox" +Version="51.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:51*) Gecko* Firefox/51*anonymized by *] +Parent="Firefox 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:51*) Gecko* Firefox/51*anonymized by *] +Parent="Firefox 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:51*) Gecko* Firefox/51*anonymized by *] +Parent="Firefox 51.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:51*) Gecko* Firefox/51*anonymized by *] +Parent="Firefox 51.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:51*) Gecko* Firefox anonymized by *] +Parent="Firefox 51.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:51*) Gecko* Firefox anonymized by *] +Parent="Firefox 51.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/51.0* Anonymisiert*] +Parent="Firefox 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/51.0* Anonymisiert*] +Parent="Firefox 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/51.0* Anonymisiert*] +Parent="Firefox 51.0" +Platform="Win32" + +[Firefox/51.0*anonymized by Abelssoft*] +Parent="Firefox 51.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/51.0*] +Parent="Firefox 51.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.0 + +[Firefox 50.0] +Parent="DefaultProperties" +Comment="Firefox 50.0" +Browser="Firefox" +Version="50.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:50*) Gecko* Firefox/50*anonymized by *] +Parent="Firefox 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:50*) Gecko* Firefox/50*anonymized by *] +Parent="Firefox 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:50*) Gecko* Firefox/50*anonymized by *] +Parent="Firefox 50.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:50*) Gecko* Firefox/50*anonymized by *] +Parent="Firefox 50.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:50*) Gecko* Firefox anonymized by *] +Parent="Firefox 50.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:50*) Gecko* Firefox anonymized by *] +Parent="Firefox 50.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/50.0* Anonymisiert*] +Parent="Firefox 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/50.0* Anonymisiert*] +Parent="Firefox 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/50.0* Anonymisiert*] +Parent="Firefox 50.0" +Platform="Win32" + +[Firefox/50.0*anonymized by Abelssoft*] +Parent="Firefox 50.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/50.0*] +Parent="Firefox 50.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 49.0 + +[Firefox 49.0] +Parent="DefaultProperties" +Comment="Firefox 49.0" +Browser="Firefox" +Version="49.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:49*) Gecko* Firefox/49*anonymized by *] +Parent="Firefox 49.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:49*) Gecko* Firefox/49*anonymized by *] +Parent="Firefox 49.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:49*) Gecko* Firefox/49*anonymized by *] +Parent="Firefox 49.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:49*) Gecko* Firefox/49*anonymized by *] +Parent="Firefox 49.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:49*) Gecko* Firefox anonymized by *] +Parent="Firefox 49.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:49*) Gecko* Firefox anonymized by *] +Parent="Firefox 49.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/49.0* Anonymisiert*] +Parent="Firefox 49.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/49.0* Anonymisiert*] +Parent="Firefox 49.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/49.0* Anonymisiert*] +Parent="Firefox 49.0" +Platform="Win32" + +[Firefox/49.0*anonymized by Abelssoft*] +Parent="Firefox 49.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/49.0*] +Parent="Firefox 49.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 96.0 for Android + +[Firefox 96.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 96.0" +Browser="Firefox" +Version="96.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/96.0*] +Parent="Firefox 96.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 95.0 for Android + +[Firefox 95.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 95.0" +Browser="Firefox" +Version="95.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/95.0*] +Parent="Firefox 95.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 94.0 for Android + +[Firefox 94.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 94.0" +Browser="Firefox" +Version="94.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/94.0*] +Parent="Firefox 94.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 93.0 for Android + +[Firefox 93.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 93.0" +Browser="Firefox" +Version="93.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/93.0*] +Parent="Firefox 93.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 92.0 for Android + +[Firefox 92.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 92.0" +Browser="Firefox" +Version="92.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/92.0*] +Parent="Firefox 92.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 91.0 for Android + +[Firefox 91.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 91.0" +Browser="Firefox" +Version="91.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/91.0*] +Parent="Firefox 91.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 90.0 for Android + +[Firefox 90.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 90.0" +Browser="Firefox" +Version="90.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/90.0*] +Parent="Firefox 90.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 89.0 for Android + +[Firefox 89.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 89.0" +Browser="Firefox" +Version="89.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/89.0*] +Parent="Firefox 89.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 88.0 for Android + +[Firefox 88.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 88.0" +Browser="Firefox" +Version="88.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/88.0*] +Parent="Firefox 88.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 87.0 for Android + +[Firefox 87.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 87.0" +Browser="Firefox" +Version="87.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/87.0*] +Parent="Firefox 87.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 86.0 for Android + +[Firefox 86.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 86.0" +Browser="Firefox" +Version="86.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/86.0*] +Parent="Firefox 86.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 85.0 for Android + +[Firefox 85.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 85.0" +Browser="Firefox" +Version="85.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/85.0*] +Parent="Firefox 85.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 84.0 for Android + +[Firefox 84.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 84.0" +Browser="Firefox" +Version="84.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/84.0*] +Parent="Firefox 84.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 83.0 for Android + +[Firefox 83.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 83.0" +Browser="Firefox" +Version="83.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/83.0*] +Parent="Firefox 83.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 82.0 for Android + +[Firefox 82.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 82.0" +Browser="Firefox" +Version="82.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/82.0*] +Parent="Firefox 82.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 81.0 for Android + +[Firefox 81.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 81.0" +Browser="Firefox" +Version="81.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/81.0*] +Parent="Firefox 81.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 80.0 for Android + +[Firefox 80.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 80.0" +Browser="Firefox" +Version="80.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/80.0*] +Parent="Firefox 80.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 79.0 for Android + +[Firefox 79.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 79.0" +Browser="Firefox" +Version="79.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/79.0*] +Parent="Firefox 79.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 78.0 for Android + +[Firefox 78.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 78.0" +Browser="Firefox" +Version="78.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/78.0*] +Parent="Firefox 78.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 77.0 for Android + +[Firefox 77.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 77.0" +Browser="Firefox" +Version="77.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/77.0*] +Parent="Firefox 77.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 76.0 for Android + +[Firefox 76.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 76.0" +Browser="Firefox" +Version="76.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/76.0*] +Parent="Firefox 76.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 75.0 for Android + +[Firefox 75.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 75.0" +Browser="Firefox" +Version="75.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/75.0*] +Parent="Firefox 75.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 74.0 for Android + +[Firefox 74.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 74.0" +Browser="Firefox" +Version="74.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/74.0*] +Parent="Firefox 74.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 73.0 for Android + +[Firefox 73.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 73.0" +Browser="Firefox" +Version="73.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/73.0*] +Parent="Firefox 73.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 72.0 for Android + +[Firefox 72.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 72.0" +Browser="Firefox" +Version="72.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/72.0*] +Parent="Firefox 72.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 71.0 for Android + +[Firefox 71.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 71.0" +Browser="Firefox" +Version="71.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/71.0*] +Parent="Firefox 71.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 70.0 for Android + +[Firefox 70.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 70.0" +Browser="Firefox" +Version="70.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/70.0*] +Parent="Firefox 70.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 69.0 for Android + +[Firefox 69.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 69.0" +Browser="Firefox" +Version="69.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/69.0*] +Parent="Firefox 69.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 68.0 for Android + +[Firefox 68.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 68.0" +Browser="Firefox" +Version="68.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/68.0*] +Parent="Firefox 68.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 67.0 for Android + +[Firefox 67.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 67.0" +Browser="Firefox" +Version="67.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/67.0*] +Parent="Firefox 67.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 66.0 for Android + +[Firefox 66.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 66.0" +Browser="Firefox" +Version="66.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/66.0*] +Parent="Firefox 66.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 65.0 for Android + +[Firefox 65.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 65.0" +Browser="Firefox" +Version="65.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/65.0*] +Parent="Firefox 65.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 64.0 for Android + +[Firefox 64.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 64.0" +Browser="Firefox" +Version="64.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/64.0*] +Parent="Firefox 64.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 63.0 for Android + +[Firefox 63.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 63.0" +Browser="Firefox" +Version="63.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/63.0*] +Parent="Firefox 63.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 62.0 for Android + +[Firefox 62.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 62.0" +Browser="Firefox" +Version="62.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/62.0*] +Parent="Firefox 62.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 61.0 for Android + +[Firefox 61.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 61.0" +Browser="Firefox" +Version="61.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/61.0*] +Parent="Firefox 61.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 60.0 for Android + +[Firefox 60.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 60.0" +Browser="Firefox" +Version="60.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/60.0*] +Parent="Firefox 60.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 59.0 for Android + +[Firefox 59.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 59.0" +Browser="Firefox" +Version="59.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/59.0*] +Parent="Firefox 59.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 58.0 for Android + +[Firefox 58.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 58.0" +Browser="Firefox" +Version="58.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/58.0*] +Parent="Firefox 58.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 57.0 for Android + +[Firefox 57.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 57.0" +Browser="Firefox" +Version="57.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/57.0*] +Parent="Firefox 57.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 56.0 for Android + +[Firefox 56.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 56.0" +Browser="Firefox" +Version="56.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/56.0*] +Parent="Firefox 56.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 55.0 for Android + +[Firefox 55.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 55.0" +Browser="Firefox" +Version="55.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/55.0*] +Parent="Firefox 55.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 54.0 for Android + +[Firefox 54.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 54.0" +Browser="Firefox" +Version="54.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/54.0*] +Parent="Firefox 54.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 53.0 for Android + +[Firefox 53.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 53.0" +Browser="Firefox" +Version="53.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/53.0*] +Parent="Firefox 53.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 52.0 for Android + +[Firefox 52.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 52.0" +Browser="Firefox" +Version="52.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/52.0*] +Parent="Firefox 52.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 51.0 for Android + +[Firefox 51.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 51.0" +Browser="Firefox" +Version="51.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/51.0*] +Parent="Firefox 51.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.1 for Android + +[Firefox 50.1 for Android] +Parent="DefaultProperties" +Comment="Firefox 50.1" +Browser="Firefox" +Version="50.1" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/50.1*] +Parent="Firefox 50.1 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/50.1*] +Parent="Firefox 50.1 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/50.1*] +Parent="Firefox 50.1 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.0 for Android + +[Firefox 50.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 50.0" +Browser="Firefox" +Version="50.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/50.0*] +Parent="Firefox 50.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 49.0 for Android + +[Firefox 49.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 49.0" +Browser="Firefox" +Version="49.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/49.0*] +Parent="Firefox 49.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 48.0 for Android + +[Firefox 48.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 48.0" +Browser="Firefox" +Version="48.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0 for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 6.0 for Android + +[Firefox 6.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 6.0" +Browser="Firefox" +Version="6.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/6.0*] +Parent="Firefox 6.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/6.0*] +Parent="Firefox 6.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 5.0 for Android + +[Firefox 5.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 5.0" +Browser="Firefox" +Version="5.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/5.0*] +Parent="Firefox 5.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/5.0*] +Parent="Firefox 5.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.0 for Android + +[Firefox 4.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 4.0" +Browser="Firefox" +Version="4.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/4.0*] +Parent="Firefox 4.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/4.0*] +Parent="Firefox 4.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.3 for Android + +[Firefox 2.3 for Android] +Parent="DefaultProperties" +Comment="Firefox 2.3" +Browser="Firefox" +Version="2.3" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.3*] +Parent="Firefox 2.3 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.3*] +Parent="Firefox 2.3 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.1 for Android + +[Firefox 2.1 for Android] +Parent="DefaultProperties" +Comment="Firefox 2.1" +Browser="Firefox" +Version="2.1" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.1*] +Parent="Firefox 2.1 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.1*] +Parent="Firefox 2.1 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0 for Android + +[Firefox 2.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 2.0" +Browser="Firefox" +Version="2.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.0*] +Parent="Firefox 2.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.0*] +Parent="Firefox 2.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.1 for Android + +[Firefox 1.1 for Android] +Parent="DefaultProperties" +Comment="Firefox 1.1" +Browser="Firefox" +Version="1.1" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/1.1*] +Parent="Firefox 1.1 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/1.1*] +Parent="Firefox 1.1 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0 for Android + +[Firefox 1.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 1.0" +Browser="Firefox" +Version="1.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/1.0*] +Parent="Firefox 1.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/1.0*] +Parent="Firefox 1.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 31.0 for Android + +[Firefox 31.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 31.0" +Browser="Firefox" +Version="31.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 30.0 for Android + +[Firefox 30.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 30.0" +Browser="Firefox" +Version="30.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 29.0 for Android + +[Firefox 29.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 29.0" +Browser="Firefox" +Version="29.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/29.0*] +Parent="Firefox 29.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/29.0*] +Parent="Firefox 29.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 28.0 for Android + +[Firefox 28.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 28.0" +Browser="Firefox" +Version="28.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/28.0*] +Parent="Firefox 28.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/28.0*] +Parent="Firefox 28.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 27.0 for Android + +[Firefox 27.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 27.0" +Browser="Firefox" +Version="27.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/27.0*] +Parent="Firefox 27.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/27.0*] +Parent="Firefox 27.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 26.0 for Android + +[Firefox 26.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 26.0" +Browser="Firefox" +Version="26.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/26.0*] +Parent="Firefox 26.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/26.0*] +Parent="Firefox 26.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 25.0 for Android + +[Firefox 25.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 25.0" +Browser="Firefox" +Version="25.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/25.0*] +Parent="Firefox 25.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/25.0*] +Parent="Firefox 25.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 24.0 for Android + +[Firefox 24.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 24.0" +Browser="Firefox" +Version="24.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/24.0*] +Parent="Firefox 24.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/24.0*] +Parent="Firefox 24.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 23.0 for Android + +[Firefox 23.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 23.0" +Browser="Firefox" +Version="23.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/23.0*] +Parent="Firefox 23.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/23.0*] +Parent="Firefox 23.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 22.0 for Android + +[Firefox 22.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 22.0" +Browser="Firefox" +Version="22.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/22.0*] +Parent="Firefox 22.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/22.0*] +Parent="Firefox 22.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 21.0 for Android + +[Firefox 21.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 21.0" +Browser="Firefox" +Version="21.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/21.0*] +Parent="Firefox 21.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/21.0*] +Parent="Firefox 21.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 20.0 for Android + +[Firefox 20.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 20.0" +Browser="Firefox" +Version="20.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/20.0*] +Parent="Firefox 20.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/20.0*] +Parent="Firefox 20.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 47.0 for Android + +[Firefox 47.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 47.0" +Browser="Firefox" +Version="47.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 46.0 for Android + +[Firefox 46.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 46.0" +Browser="Firefox" +Version="46.0" +Platform="Android" +isMobileDevice="true" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0 for Android" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0 for Android" +isTablet="true" +Device_Type="Tablet" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 19.0 for Android + +[Firefox 19.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 19.0" +Browser="Firefox" +Version="19.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/19.0*] +Parent="Firefox 19.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/19.0*] +Parent="Firefox 19.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 18.0 for Android + +[Firefox 18.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 18.0" +Browser="Firefox" +Version="18.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/18.0*] +Parent="Firefox 18.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/18.0*] +Parent="Firefox 18.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 17.0 for Android + +[Firefox 17.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 17.0" +Browser="Firefox" +Version="17.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/17.0*] +Parent="Firefox 17.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/17.0*] +Parent="Firefox 17.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 16.0 for Android + +[Firefox 16.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 16.0" +Browser="Firefox" +Version="16.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/16.0*] +Parent="Firefox 16.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/16.0*] +Parent="Firefox 16.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 15.0 for Android + +[Firefox 15.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 15.0" +Browser="Firefox" +Version="15.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/15.0*] +Parent="Firefox 15.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/15.0*] +Parent="Firefox 15.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 14.0 for Android + +[Firefox 14.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 14.0" +Browser="Firefox" +Version="14.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/14.0*] +Parent="Firefox 14.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/14.0*] +Parent="Firefox 14.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 13.0 for Android + +[Firefox 13.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 13.0" +Browser="Firefox" +Version="13.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/13.0*] +Parent="Firefox 13.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/13.0*] +Parent="Firefox 13.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 12.0 for Android + +[Firefox 12.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 12.0" +Browser="Firefox" +Version="12.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/12.0*] +Parent="Firefox 12.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/12.0*] +Parent="Firefox 12.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 11.0 for Android + +[Firefox 11.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 11.0" +Browser="Firefox" +Version="11.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/11.0*] +Parent="Firefox 11.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/11.0*] +Parent="Firefox 11.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 10.0 for Android + +[Firefox 10.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 10.0" +Browser="Firefox" +Version="10.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/10.0*] +Parent="Firefox 10.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/10.0*] +Parent="Firefox 10.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 9.0 for Android + +[Firefox 9.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 9.0" +Browser="Firefox" +Version="9.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/9.0*] +Parent="Firefox 9.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/9.0*] +Parent="Firefox 9.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 8.0 for Android + +[Firefox 8.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 8.0" +Browser="Firefox" +Version="8.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/8.0*] +Parent="Firefox 8.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/8.0*] +Parent="Firefox 8.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 7.0 for Android + +[Firefox 7.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 7.0" +Browser="Firefox" +Version="7.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/7.0*] +Parent="Firefox 7.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/7.0*] +Parent="Firefox 7.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 45.0 for Android + +[Firefox 45.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 45.0" +Browser="Firefox" +Version="45.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 44.0 for Android + +[Firefox 44.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 44.0" +Browser="Firefox" +Version="44.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 43.0 for Android + +[Firefox 43.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 43.0" +Browser="Firefox" +Version="43.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 42.0 for Android + +[Firefox 42.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 42.0" +Browser="Firefox" +Version="42.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 41.0 for Android + +[Firefox 41.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 41.0" +Browser="Firefox" +Version="41.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 40.0 for Android + +[Firefox 40.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 40.0" +Browser="Firefox" +Version="40.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 39.0 for Android + +[Firefox 39.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 39.0" +Browser="Firefox" +Version="39.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 38.0 for Android + +[Firefox 38.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 38.0" +Browser="Firefox" +Version="38.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 37.0 for Android + +[Firefox 37.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 37.0" +Browser="Firefox" +Version="37.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 36.0 for Android + +[Firefox 36.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 36.0" +Browser="Firefox" +Version="36.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 35.0 for Android + +[Firefox 35.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 35.0" +Browser="Firefox" +Version="35.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 34.0 for Android + +[Firefox 34.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 34.0" +Browser="Firefox" +Version="34.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.1 for Android + +[Firefox 33.1 for Android] +Parent="DefaultProperties" +Comment="Firefox 33.1" +Browser="Firefox" +Version="33.1" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/33.1*] +Parent="Firefox 33.1 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/33.1*] +Parent="Firefox 33.1 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.0 for Android + +[Firefox 33.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 33.0" +Browser="Firefox" +Version="33.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 32.0 for Android + +[Firefox 32.0 for Android] +Parent="DefaultProperties" +Comment="Firefox 32.0" +Browser="Firefox" +Version="32.0" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0 for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0 for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 48.0 + +[Firefox 48.0] +Parent="DefaultProperties" +Comment="Firefox 48.0" +Browser="Firefox" +Version="48.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:48*) Gecko* Firefox/48*anonymized by *] +Parent="Firefox 48.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:48*) Gecko* Firefox/48*anonymized by *] +Parent="Firefox 48.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:48*) Gecko* Firefox/48*anonymized by *] +Parent="Firefox 48.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:48*) Gecko* Firefox/48*anonymized by *] +Parent="Firefox 48.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:48*) Gecko* Firefox anonymized by *] +Parent="Firefox 48.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:48*) Gecko* Firefox anonymized by *] +Parent="Firefox 48.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/48.0* Anonymisiert*] +Parent="Firefox 48.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/48.0* Anonymisiert*] +Parent="Firefox 48.0" +Platform="Win32" + +[Firefox/48.0*anonymized by Abelssoft*] +Parent="Firefox 48.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/48.0*] +Parent="Firefox 48.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/48.0*] +Parent="Firefox 48.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 47.0 + +[Firefox 47.0] +Parent="DefaultProperties" +Comment="Firefox 47.0" +Browser="Firefox" +Version="47.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:47*) Gecko* Firefox/47*anonymized by *] +Parent="Firefox 47.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:47*) Gecko* Firefox/47*anonymized by *] +Parent="Firefox 47.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:47*) Gecko* Firefox/47*anonymized by *] +Parent="Firefox 47.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:47*) Gecko* Firefox/47*anonymized by *] +Parent="Firefox 47.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:47*) Gecko* Firefox anonymized by *] +Parent="Firefox 47.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:47*) Gecko* Firefox anonymized by *] +Parent="Firefox 47.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/47.0* Anonymisiert*] +Parent="Firefox 47.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/47.0* Anonymisiert*] +Parent="Firefox 47.0" +Platform="Win32" + +[Firefox/47.0*anonymized by Abelssoft*] +Parent="Firefox 47.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/47.0*] +Parent="Firefox 47.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/47.0*] +Parent="Firefox 47.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 46.0 + +[Firefox 46.0] +Parent="DefaultProperties" +Comment="Firefox 46.0" +Browser="Firefox" +Version="46.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:46*) Gecko* Firefox/46*anonymized by *] +Parent="Firefox 46.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:46*) Gecko* Firefox/46*anonymized by *] +Parent="Firefox 46.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:46*) Gecko* Firefox/46*anonymized by *] +Parent="Firefox 46.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:46*) Gecko* Firefox/46*anonymized by *] +Parent="Firefox 46.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:46*) Gecko* Firefox anonymized by *] +Parent="Firefox 46.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:46*) Gecko* Firefox anonymized by *] +Parent="Firefox 46.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/46.0* Anonymisiert*] +Parent="Firefox 46.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/46.0* Anonymisiert*] +Parent="Firefox 46.0" +Platform="Win32" + +[Firefox/46.0*anonymized by Abelssoft*] +Parent="Firefox 46.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/46.0*] +Parent="Firefox 46.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/46.0*] +Parent="Firefox 46.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 45.0 + +[Firefox 45.0] +Parent="DefaultProperties" +Comment="Firefox 45.0" +Browser="Firefox" +Version="45.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:45*) Gecko* Firefox/45*anonymized by *] +Parent="Firefox 45.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:45*) Gecko* Firefox/45*anonymized by *] +Parent="Firefox 45.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:45*) Gecko* Firefox/45*anonymized by *] +Parent="Firefox 45.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:45*) Gecko* Firefox/45*anonymized by *] +Parent="Firefox 45.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:45*) Gecko* Firefox anonymized by *] +Parent="Firefox 45.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:45*) Gecko* Firefox anonymized by *] +Parent="Firefox 45.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/45.0* Anonymisiert*] +Parent="Firefox 45.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/45.0* Anonymisiert*] +Parent="Firefox 45.0" +Platform="Win32" + +[Firefox/45.0*anonymized by Abelssoft*] +Parent="Firefox 45.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/45.0*] +Parent="Firefox 45.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/45.0*] +Parent="Firefox 45.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 44.0 + +[Firefox 44.0] +Parent="DefaultProperties" +Comment="Firefox 44.0" +Browser="Firefox" +Version="44.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:44*) Gecko* Firefox/44*anonymized by *] +Parent="Firefox 44.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:44*) Gecko* Firefox/44*anonymized by *] +Parent="Firefox 44.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:44*) Gecko* Firefox/44*anonymized by *] +Parent="Firefox 44.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:44*) Gecko* Firefox/44*anonymized by *] +Parent="Firefox 44.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:44*) Gecko* Firefox anonymized by *] +Parent="Firefox 44.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:44*) Gecko* Firefox anonymized by *] +Parent="Firefox 44.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/44.0* Anonymisiert*] +Parent="Firefox 44.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/44.0* Anonymisiert*] +Parent="Firefox 44.0" +Platform="Win32" + +[Firefox/44.0*anonymized by Abelssoft*] +Parent="Firefox 44.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/44.0*] +Parent="Firefox 44.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/44.0*] +Parent="Firefox 44.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 43.0 + +[Firefox 43.0] +Parent="DefaultProperties" +Comment="Firefox 43.0" +Browser="Firefox" +Version="43.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:43*) Gecko* Firefox/43*anonymized by *] +Parent="Firefox 43.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:43*) Gecko* Firefox/43*anonymized by *] +Parent="Firefox 43.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:43*) Gecko* Firefox/43*anonymized by *] +Parent="Firefox 43.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:43*) Gecko* Firefox/43*anonymized by *] +Parent="Firefox 43.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:43*) Gecko* Firefox anonymized by *] +Parent="Firefox 43.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:43*) Gecko* Firefox anonymized by *] +Parent="Firefox 43.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/43.0* Anonymisiert*] +Parent="Firefox 43.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/43.0* Anonymisiert*] +Parent="Firefox 43.0" +Platform="Win32" + +[Firefox/43.0*anonymized by Abelssoft*] +Parent="Firefox 43.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/43.0*] +Parent="Firefox 43.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/43.0*] +Parent="Firefox 43.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 42.0 + +[Firefox 42.0] +Parent="DefaultProperties" +Comment="Firefox 42.0" +Browser="Firefox" +Version="42.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:42*) Gecko* Firefox/42*anonymized by *] +Parent="Firefox 42.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:42*) Gecko* Firefox/42*anonymized by *] +Parent="Firefox 42.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:42*) Gecko* Firefox/42*anonymized by *] +Parent="Firefox 42.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:42*) Gecko* Firefox/42*anonymized by *] +Parent="Firefox 42.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:42*) Gecko* Firefox anonymized by *] +Parent="Firefox 42.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:42*) Gecko* Firefox anonymized by *] +Parent="Firefox 42.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/42.0* Anonymisiert*] +Parent="Firefox 42.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/42.0* Anonymisiert*] +Parent="Firefox 42.0" +Platform="Win32" + +[Firefox/42.0*anonymized by Abelssoft*] +Parent="Firefox 42.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/42.0*] +Parent="Firefox 42.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/42.0*] +Parent="Firefox 42.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 41.0 + +[Firefox 41.0] +Parent="DefaultProperties" +Comment="Firefox 41.0" +Browser="Firefox" +Version="41.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:41*) Gecko* Firefox/41*anonymized by *] +Parent="Firefox 41.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:41*) Gecko* Firefox/41*anonymized by *] +Parent="Firefox 41.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:41*) Gecko* Firefox/41*anonymized by *] +Parent="Firefox 41.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:41*) Gecko* Firefox/41*anonymized by *] +Parent="Firefox 41.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:41*) Gecko* Firefox anonymized by *] +Parent="Firefox 41.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:41*) Gecko* Firefox anonymized by *] +Parent="Firefox 41.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/41.0* Anonymisiert*] +Parent="Firefox 41.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/41.0* Anonymisiert*] +Parent="Firefox 41.0" +Platform="Win32" + +[Firefox/41.0*anonymized by Abelssoft*] +Parent="Firefox 41.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/41.0*] +Parent="Firefox 41.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/41.0*] +Parent="Firefox 41.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 40.0 + +[Firefox 40.0] +Parent="DefaultProperties" +Comment="Firefox 40.0" +Browser="Firefox" +Version="40.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:40*) Gecko* Firefox/40*anonymized by *] +Parent="Firefox 40.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:40*) Gecko* Firefox/40*anonymized by *] +Parent="Firefox 40.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:40*) Gecko* Firefox/40*anonymized by *] +Parent="Firefox 40.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:40*) Gecko* Firefox/40*anonymized by *] +Parent="Firefox 40.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:40*) Gecko* Firefox anonymized by *] +Parent="Firefox 40.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:40*) Gecko* Firefox anonymized by *] +Parent="Firefox 40.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/40.0* Anonymisiert*] +Parent="Firefox 40.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/40.0* Anonymisiert*] +Parent="Firefox 40.0" +Platform="Win32" + +[Firefox/40.0*anonymized by Abelssoft*] +Parent="Firefox 40.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/40.0*] +Parent="Firefox 40.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/40.0*] +Parent="Firefox 40.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 39.0 + +[Firefox 39.0] +Parent="DefaultProperties" +Comment="Firefox 39.0" +Browser="Firefox" +Version="39.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:39*) Gecko* Firefox/39*anonymized by *] +Parent="Firefox 39.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:39*) Gecko* Firefox/39*anonymized by *] +Parent="Firefox 39.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:39*) Gecko* Firefox/39*anonymized by *] +Parent="Firefox 39.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:39*) Gecko* Firefox/39*anonymized by *] +Parent="Firefox 39.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:39*) Gecko* Firefox anonymized by *] +Parent="Firefox 39.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:39*) Gecko* Firefox anonymized by *] +Parent="Firefox 39.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/39.0* Anonymisiert*] +Parent="Firefox 39.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/39.0* Anonymisiert*] +Parent="Firefox 39.0" +Platform="Win32" + +[Firefox/39.0*anonymized by Abelssoft*] +Parent="Firefox 39.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/39.0*] +Parent="Firefox 39.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/39.0*] +Parent="Firefox 39.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 38.0 + +[Firefox 38.0] +Parent="DefaultProperties" +Comment="Firefox 38.0" +Browser="Firefox" +Version="38.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:38*) Gecko* Firefox/38*anonymized by *] +Parent="Firefox 38.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:38*) Gecko* Firefox/38*anonymized by *] +Parent="Firefox 38.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:38*) Gecko* Firefox/38*anonymized by *] +Parent="Firefox 38.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:38*) Gecko* Firefox/38*anonymized by *] +Parent="Firefox 38.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:38*) Gecko* Firefox anonymized by *] +Parent="Firefox 38.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:38*) Gecko* Firefox anonymized by *] +Parent="Firefox 38.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/38.0* Anonymisiert*] +Parent="Firefox 38.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/38.0* Anonymisiert*] +Parent="Firefox 38.0" +Platform="Win32" + +[Firefox/38.0*anonymized by Abelssoft*] +Parent="Firefox 38.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/38.0*] +Parent="Firefox 38.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/38.0*] +Parent="Firefox 38.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 37.0 + +[Firefox 37.0] +Parent="DefaultProperties" +Comment="Firefox 37.0" +Browser="Firefox" +Version="37.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:37*) Gecko* Firefox/37*anonymized by *] +Parent="Firefox 37.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:37*) Gecko* Firefox/37*anonymized by *] +Parent="Firefox 37.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:37*) Gecko* Firefox/37*anonymized by *] +Parent="Firefox 37.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:37*) Gecko* Firefox/37*anonymized by *] +Parent="Firefox 37.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:37*) Gecko* Firefox anonymized by *] +Parent="Firefox 37.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:37*) Gecko* Firefox anonymized by *] +Parent="Firefox 37.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/37.0* Anonymisiert*] +Parent="Firefox 37.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/37.0* Anonymisiert*] +Parent="Firefox 37.0" +Platform="Win32" + +[Firefox/37.0*anonymized by Abelssoft*] +Parent="Firefox 37.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/37.0*] +Parent="Firefox 37.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/37.0*] +Parent="Firefox 37.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 36.0 + +[Firefox 36.0] +Parent="DefaultProperties" +Comment="Firefox 36.0" +Browser="Firefox" +Version="36.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:36*) Gecko* Firefox/36*anonymized by *] +Parent="Firefox 36.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:36*) Gecko* Firefox/36*anonymized by *] +Parent="Firefox 36.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:36*) Gecko* Firefox/36*anonymized by *] +Parent="Firefox 36.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:36*) Gecko* Firefox/36*anonymized by *] +Parent="Firefox 36.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:36*) Gecko* Firefox anonymized by *] +Parent="Firefox 36.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:36*) Gecko* Firefox anonymized by *] +Parent="Firefox 36.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/36.0* Anonymisiert*] +Parent="Firefox 36.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/36.0* Anonymisiert*] +Parent="Firefox 36.0" +Platform="Win32" + +[Firefox/36.0*anonymized by Abelssoft*] +Parent="Firefox 36.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/36.0*] +Parent="Firefox 36.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/36.0*] +Parent="Firefox 36.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 35.0 + +[Firefox 35.0] +Parent="DefaultProperties" +Comment="Firefox 35.0" +Browser="Firefox" +Version="35.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:35*) Gecko* Firefox/35*anonymized by *] +Parent="Firefox 35.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:35*) Gecko* Firefox/35*anonymized by *] +Parent="Firefox 35.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:35*) Gecko* Firefox/35*anonymized by *] +Parent="Firefox 35.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:35*) Gecko* Firefox/35*anonymized by *] +Parent="Firefox 35.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:35*) Gecko* Firefox anonymized by *] +Parent="Firefox 35.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:35*) Gecko* Firefox anonymized by *] +Parent="Firefox 35.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/35.0* Anonymisiert*] +Parent="Firefox 35.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/35.0* Anonymisiert*] +Parent="Firefox 35.0" +Platform="Win32" + +[Firefox/35.0*anonymized by Abelssoft*] +Parent="Firefox 35.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/35.0*] +Parent="Firefox 35.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/35.0*] +Parent="Firefox 35.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 34.0 + +[Firefox 34.0] +Parent="DefaultProperties" +Comment="Firefox 34.0" +Browser="Firefox" +Version="34.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:34*) Gecko* Firefox/34*anonymized by *] +Parent="Firefox 34.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:34*) Gecko* Firefox/34*anonymized by *] +Parent="Firefox 34.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:34*) Gecko* Firefox/34*anonymized by *] +Parent="Firefox 34.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:34*) Gecko* Firefox/34*anonymized by *] +Parent="Firefox 34.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:34*) Gecko* Firefox anonymized by *] +Parent="Firefox 34.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:34*) Gecko* Firefox anonymized by *] +Parent="Firefox 34.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/34.0* Anonymisiert*] +Parent="Firefox 34.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/34.0* Anonymisiert*] +Parent="Firefox 34.0" +Platform="Win32" + +[Firefox/34.0*anonymized by Abelssoft*] +Parent="Firefox 34.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/34.0*] +Parent="Firefox 34.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/34.0*] +Parent="Firefox 34.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.0 + +[Firefox 33.0] +Parent="DefaultProperties" +Comment="Firefox 33.0" +Browser="Firefox" +Version="33.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:33*) Gecko* Firefox/33*anonymized by *] +Parent="Firefox 33.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:33*) Gecko* Firefox/33*anonymized by *] +Parent="Firefox 33.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:33*) Gecko* Firefox/33*anonymized by *] +Parent="Firefox 33.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:33*) Gecko* Firefox/33*anonymized by *] +Parent="Firefox 33.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:33*) Gecko* Firefox anonymized by *] +Parent="Firefox 33.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:33*) Gecko* Firefox anonymized by *] +Parent="Firefox 33.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/33.0* Anonymisiert*] +Parent="Firefox 33.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/33.0* Anonymisiert*] +Parent="Firefox 33.0" +Platform="Win32" + +[Firefox/33.0*anonymized by Abelssoft*] +Parent="Firefox 33.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/33.0*] +Parent="Firefox 33.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/33.0*] +Parent="Firefox 33.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 32.0 + +[Firefox 32.0] +Parent="DefaultProperties" +Comment="Firefox 32.0" +Browser="Firefox" +Version="32.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:32*) Gecko* Firefox/32*anonymized by *] +Parent="Firefox 32.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:32*) Gecko* Firefox/32*anonymized by *] +Parent="Firefox 32.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:32*) Gecko* Firefox/32*anonymized by *] +Parent="Firefox 32.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:32*) Gecko* Firefox/32*anonymized by *] +Parent="Firefox 32.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:32*) Gecko* Firefox anonymized by *] +Parent="Firefox 32.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:32*) Gecko* Firefox anonymized by *] +Parent="Firefox 32.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/32.0* Anonymisiert*] +Parent="Firefox 32.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/32.0* Anonymisiert*] +Parent="Firefox 32.0" +Platform="Win32" + +[Firefox/32.0*anonymized by Abelssoft*] +Parent="Firefox 32.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/32.0*] +Parent="Firefox 32.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/32.0*] +Parent="Firefox 32.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 31.0 + +[Firefox 31.0] +Parent="DefaultProperties" +Comment="Firefox 31.0" +Browser="Firefox" +Version="31.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:31*) Gecko* Firefox/31*anonymized by *] +Parent="Firefox 31.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:31*) Gecko* Firefox/31*anonymized by *] +Parent="Firefox 31.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:31*) Gecko* Firefox/31*anonymized by *] +Parent="Firefox 31.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:31*) Gecko* Firefox/31*anonymized by *] +Parent="Firefox 31.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:31*) Gecko* Firefox anonymized by *] +Parent="Firefox 31.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:31*) Gecko* Firefox anonymized by *] +Parent="Firefox 31.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/31.0* Anonymisiert*] +Parent="Firefox 31.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/31.0* Anonymisiert*] +Parent="Firefox 31.0" +Platform="Win32" + +[Firefox/31.0*anonymized by Abelssoft*] +Parent="Firefox 31.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/31.0*] +Parent="Firefox 31.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/31.0*] +Parent="Firefox 31.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 30.0 + +[Firefox 30.0] +Parent="DefaultProperties" +Comment="Firefox 30.0" +Browser="Firefox" +Version="30.0" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:30*) Gecko* Firefox/30*anonymized by *] +Parent="Firefox 30.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:30*) Gecko* Firefox/30*anonymized by *] +Parent="Firefox 30.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:30*) Gecko* Firefox/30*anonymized by *] +Parent="Firefox 30.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:30*) Gecko* Firefox/30*anonymized by *] +Parent="Firefox 30.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:30*) Gecko* Firefox anonymized by *] +Parent="Firefox 30.0" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:30*) Gecko* Firefox anonymized by *] +Parent="Firefox 30.0" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/30.0* Anonymisiert*] +Parent="Firefox 30.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/30.0* Anonymisiert*] +Parent="Firefox 30.0" +Platform="Win32" + +[Firefox/30.0*anonymized by Abelssoft*] +Parent="Firefox 30.0" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/30.0*] +Parent="Firefox 30.0" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko*/30.0*] +Parent="Firefox 30.0" +Platform="MacOSX" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic + +[Firefox Generic] +Parent="DefaultProperties" +Comment="Firefox Generic" +Browser="Firefox" +Device_Type="Desktop" + +[Mozilla/5.0 (*Linux*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Linux" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="MacOSX" + +[Mozilla/4.0 (*Linux*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Linux" + +[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win8.1" + +[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win8" + +[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="Win7" + +[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="WinVista" + +[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/*] +Parent="Firefox Generic" +Platform="MacOSX" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:*) Gecko* Firefox/*anonymized by *] +Parent="Firefox Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:*) Gecko* Firefox/*anonymized by *] +Parent="Firefox Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:*) Gecko* Firefox/*anonymized by *] +Parent="Firefox Generic" +Platform="Win32" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:*) Gecko* Firefox anonymized by *] +Parent="Firefox Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows*; rv:*) Gecko* Firefox anonymized by *] +Parent="Firefox Generic" +Platform="Win32" + +[Mozilla/5.0 (*Windows*) Gecko* Firefox/* Anonymisiert*] +Parent="Firefox Generic" +Platform="Win32" + +[Firefox/*anonymized by Abelssoft*] +Parent="Firefox Generic" +Platform="Win32" + +[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/*] +Parent="Firefox Generic" + +[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="Win10" + +[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="Win8.1" + +[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/*Mozilla/5.0*] +Parent="Firefox Generic" +Platform="WinVista" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:1.9.1*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.5" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:1.9.1*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.5" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:1.9.1*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.5" +Platform="WinVista" + +[Mozilla/5.0 (*Windows NT 6.2*; rv:1.9.2*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.6" +Platform="Win8" + +[Mozilla/5.0 (*Windows NT 6.1*; rv:1.9.2*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.6" +Platform="Win7" + +[Mozilla/5.0 (*Windows NT 6.0*; rv:1.9.2*) Gecko* Firefox *] +Parent="Firefox Generic" +Version="3.6" +Platform="WinVista" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PrivacyBrowser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic for Android + +[Firefox Generic for Android] +Parent="DefaultProperties" +Comment="Firefox Generic" +Browser="Firefox" +Platform="Android" +isMobileDevice="true" +isTablet="true" +Device_Type="Tablet" + +[Mozilla/5.0 (*Linux*Android* Build/*) Gecko* Firefox/*] +Parent="Firefox Generic for Android" + +[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/*] +Parent="Firefox Generic for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/*] +Parent="Firefox Generic for Android" + +[Mozilla/5.0 (*Android*Mobile*)*Gecko*Firefox/*] +Parent="Firefox Generic for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Mobile*)*Gecko*Firefox/* anonymized by Abelssoft*] +Parent="Firefox Generic for Android" +isTablet="false" +Device_Type="Mobile Phone" + +[Mozilla/5.0 (*Android*Tablet*)*Gecko*Firefox/*] +Parent="Firefox Generic for Android" + +[Mozilla/5.0 (*Android*Tablet*)*Gecko*Firefox/* anonymized by Abelssoft*] +Parent="Firefox Generic for Android" + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic for Maemo + +[*] +Parent="DefaultProperties" +Comment="Default Browser" +Browser="Default Browser" + diff --git a/utils/Docker/www/config/php-7.2.ini b/utils/Docker/www/config/php-7.2.ini new file mode 100644 index 0000000..95eeeba --- /dev/null +++ b/utils/Docker/www/config/php-7.2.ini @@ -0,0 +1,1646 @@ +; cPanel-generated php ini directives, do not edit
+; Manual editing of this file may result in unexpected behavior.
+; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
+; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
+
+[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable. (As of PHP 5.2.0)
+; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (C:\windows or C:\winnt)
+; See the PHP docs for more specific information.
+; http://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; http://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security conscience applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it's
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is php.ini-production INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; html_errors
+; Default Value: On
+; Development Value: On
+; Production value: On
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; session.hash_bits_per_character
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; track_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+
+; url_rewriter.tags
+; Default Value: "a=href,area=href,frame=src,form=,fieldset="
+; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
+; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; http://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/short-open-tag
+short_open_tag = On
+
+; The number of significant digits displayed in floating point numbers.
+; http://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; http://php.net/output-buffering
+output_buffering = Off
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; http://php.net/output-handler
+;output_handler =
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; http://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; http://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; http://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; http://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; When floats & doubles are serialized store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+serialize_precision = 100
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; http://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions for security reasons.
+; It receives a comma-delimited list of function names.
+; http://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes for security reasons.
+; It receives a comma-delimited list of class names.
+; http://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; <span style="color: ???????"> would work.
+; http://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; http://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; http://php.net/realpath-cache-size
+;realpath_cache_size = 16k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; http://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; http://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+; Default: Off
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+; Default: ""
+;zend.script_encoding =
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; http://php.net/expose-php
+expose_php = Off
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; http://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 600
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; http://php.net/max-input-time
+max_input_time = 180
+
+; Maximum input variable nesting level
+; http://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+max_input_vars = 8000
+
+; Maximum amount of memory a script may consume (128MB)
+; http://php.net/memory-limit
+memory_limit = 512M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE and E_STRICT, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it's automatically initialized to an
+; empty string)
+; E_STRICT - run-time notices, enable to have PHP suggest changes
+; to your code which will ensure the best interoperability
+; and forward compatibility of your code
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+; http://php.net/error-reporting
+;error_reporting = E_ALL
+error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-errors
+display_errors = Off
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. PHP's default behavior is to suppress those
+; errors from clients. Turning the display of startup errors on can be useful in
+; debugging configuration problems. We strongly recommend you
+; set this to 'off' for production servers.
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-startup-errors
+display_startup_errors = Off
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; http://php.net/log-errors
+log_errors = On
+
+; Set maximum length of log_errors. In error_log information about the source is
+; added. The default is 1024 and 0 allows to not apply any maximum length at all.
+; http://php.net/log-errors-max-len
+log_errors_max_len = 1024
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; http://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; http://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This has only effect in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; http://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is on by default.
+;report_zend_debug = 0
+
+; Store the last error/warning message in $php_errormsg (boolean). Setting this value
+; to On can assist in debugging and is appropriate for development servers. It should
+; however be disabled on production servers.
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+; http://php.net/track-errors
+track_errors = Off
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; http://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: On
+; Development Value: On
+; Production value: On
+; http://php.net/html-errors
+html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from http://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; http://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; http://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-prepend-string
+; Example:
+;error_prepend_string = "<span style='color: #ff0000'>"
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-append-string
+; Example:
+;error_append_string = "</span>"
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; http://php.net/error-log
+; Example:
+error_log = /var/log/apache2/php_errors.log
+; Log errors to syslog.
+;error_log = syslog
+;error_log = error_log
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; http://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; http://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; http://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; http://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/register-argc-argv
+register_argc_argv = On
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any affect.
+; http://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; http://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; http://php.net/post-max-size
+post_max_size = 500M
+
+; Automatically add files before PHP document.
+; http://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; http://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a character encoding using
+; the Content-type: header. To disable sending of the charset, simply
+; set it to be empty.
+;
+; PHP's built-in default is text/html
+; http://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; http://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; mbstring or iconv output handler is used.
+; See also output_buffer.
+; http://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/php/includes"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; http://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; http://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; http://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; http://php.net/extension-dir
+; extension_dir = "./"
+; On windows:
+; extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+; sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; http://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; http://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; http://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; http://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; http://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+;fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; http://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; http://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; http://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; http://php.net/upload-max-filesize
+upload_max_filesize = 500M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; http://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; http://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; http://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; http://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename.extension
+;
+; For example, on Windows:
+;
+; extension=msql.dll
+;
+; ... or under UNIX:
+;
+; extension=msql.so
+;
+; ... or with a path:
+;
+; extension=/path/to/extension/msql.so
+;
+; If you only provide the name of the extension, PHP will look for it in its
+; default extension directory.
+
+;;;;
+; Note: packaged extension modules are now loaded via the .ini files
+; found in the directory /etc/php.d; these are loaded by default.
+;;;;
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+date.timezone = "UTC"
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.583333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.583333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < intput_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+
+[sqlite]
+; http://php.net/sqlite.assoc-case
+;sqlite.assoc_case = 0
+
+[sqlite3]
+;sqlite3.extension_dir =
+
+[Pcre]
+;PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+;PCRE library recursion limit.
+;Please note that if you set this value to a high number you may consume all
+;the available process stack and eventually crash PHP (due to reaching the
+;stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+;Enables or disables JIT compilation of patterns. This requires the PCRE
+;library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+;pdo_odbc.db2_instance_name
+
+[Pdo_mysql]
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/pdo_mysql.cache_size
+pdo_mysql.cache_size = 2000
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/pdo_mysql.default-socket
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+sendmail_path = /usr/sbin/sendmail -t -i
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = On
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog;
+;mail.log = syslog
+
+[SQL]
+; http://php.net/sql.safe-mode
+sql.safe_mode = Off
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+;birdstep.max_links = -1
+
+[Interbase]
+; Allow or prevent persistent links.
+ibase.allow_persistent = 1
+
+; Maximum number of persistent links. -1 means no limit.
+ibase.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+ibase.max_links = -1
+
+; Default database name for ibase_connect().
+;ibase.default_db =
+
+; Default username for ibase_connect().
+;ibase.default_user =
+
+; Default password for ibase_connect().
+;ibase.default_password =
+
+; Default charset for ibase_connect().
+;ibase.default_charset =
+
+; Default timestamp format.
+ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
+
+; Default date format.
+ibase.dateformat = "%Y-%m-%d"
+
+; Default time format.
+ibase.timeformat = "%H:%M:%S"
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/mysqli.cache_size
+mysqli.cache_size = 2000
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_statistics
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_memory_statistics
+mysqlnd.collect_memory_statistics = Off
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+; http://php.net/mysqlnd.net_cmd_buffer_size
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+; http://php.net/mysqlnd.net_read_buffer_size
+;mysqlnd.net_read_buffer_size = 32768
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+;session.save_path = "/var/cpanel/php/sessions/ea-php72"
+session.save_path = ""
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+
+; RPM note : session directory must be owned by process owner
+; for mod_php, see /etc/httpd/conf.d/php.conf
+; for php-fpm, see /etc/php-fpm.d/*conf
+
+; Whether to use strict session mode.
+; Strict session mode does not accept uninitialized session ID and regenerate
+; session ID if browser sends uninitialized session ID. Strict mode protects
+; applications from session fixation via session adoption vulnerability. It is
+; disabled by default for maximum compatibility, but enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started
+; on every session initialization. The probability is calculated by using
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator
+; and gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 0
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using the following equation:
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
+; session.gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request. Increasing this value to 1000 will give you
+; a 0.1% chance the gc will run on any give request. For high volume production servers,
+; this is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 0
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script would is the equivalent of
+; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; How many bytes to read from the file.
+; http://php.net/session.entropy-length
+;session.entropy_length = 32
+
+; Specified here to create the session id.
+; http://php.net/session.entropy-file
+; Defaults to /dev/urandom
+; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
+; If neither are found at compile time, the default is no entropy file.
+; On windows, setting the entropy_length setting will activate the
+; Windows random source (using the CryptoAPI)
+;session.entropy_file = /dev/urandom
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Select a hash function for use in generating session ids.
+; Possible Values
+; 0 (MD5 128 bits)
+; 1 (SHA-1 160 bits)
+; This option may also be set to the name of any hash function supported by
+; the hash extension. A list of available hashes is returned by the hash_algos()
+; function.
+; http://php.net/session.hash-function
+session.hash_function = 0
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+; 4 (4 bits: 0-9, a-f)
+; 5 (5 bits: 0-9, a-v)
+; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.hash_bits_per_character = 5
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; form/fieldset are special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. If you want XHTML conformity, remove the form entry.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form=,fieldset="
+; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
+; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
+; http://php.net/url-rewriter.tags
+url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq = "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+; 0: Jump over assertion at run-time
+; 1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = -1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertationException on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+; Eval the expression with current error_reporting(). Set to true if you want
+; error_reporting(0) around the eval().
+; http://php.net/assert.quiet-eval
+;assert.quiet_eval = 0
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_traslation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < intput_encoding < mbsting.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output = pass
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+; portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; overload(replace) single byte functions by mbstring functions.
+; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
+; etc. Possible values are 0,1,2,4 or combination of them.
+; For example, 7 for overload everything.
+; 0: No overload
+; 1: Overload mail() function
+; 2: Overload str*() functions
+; 4: Overload ereg*() functions
+; http://php.net/mbstring.func-overload
+;mbstring.func_overload = 0
+
+; enable strict encoding detection.
+; Default: Off
+;mbstring.strict_detection = On
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 0
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+
+; RPM note : cache directory must be owned by process owner
+; for mod_php, see /etc/httpd/conf.d/php.conf
+; for php-fpm, see /etc/php-fpm.d/*conf
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[mcrypt]
+; For more information about mcrypt settings see http://php.net/mcrypt-module-open
+
+; Directory where to load mcrypt algorithms
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.algorithms_dir=
+
+; Directory where to load mcrypt modes
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.modes_dir=
+
+[dba]
+;dba.default_handler=
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+; Local Variables:
+; tab-width: 4
+; End:
diff --git a/utils/Fieldwork/1ka-128.png b/utils/Fieldwork/1ka-128.png Binary files differnew file mode 100644 index 0000000..5115e5a --- /dev/null +++ b/utils/Fieldwork/1ka-128.png diff --git a/utils/Fieldwork/1ka-192.png b/utils/Fieldwork/1ka-192.png Binary files differnew file mode 100644 index 0000000..3fdacbe --- /dev/null +++ b/utils/Fieldwork/1ka-192.png diff --git a/utils/Fieldwork/import_db.php b/utils/Fieldwork/import_db.php new file mode 100644 index 0000000..232cf71 --- /dev/null +++ b/utils/Fieldwork/import_db.php @@ -0,0 +1,87 @@ +<?php
+
+$filename = '1ka_offline.sql';
+$dbHost = 'localhost';
+$dbUser = 'root';
+$dbPass = '';
+$dbName = '1ka';
+$maxRuntime = 8; // less then your max script execution limit
+
+$deadline = time()+$maxRuntime;
+$progressFilename = $filename.'_filepointer'; // tmp file for progress
+$errorFilename = $filename.'_error'; // tmp file for erro
+
+mysql_connect($dbHost, $dbUser, $dbPass);
+mysql_select_db($dbName);
+mysql_query ("SET foreign_key_checks = 0");
+mysql_query ("DROP database 1ka");
+mysql_query ("CREATE database 1ka");
+
+
+$fp = fopen($filename, 'r');
+
+// check for previous error
+ if( file_exists($errorFilename) ){
+ die('<pre> prejsnja napaka: '.file_get_contents($errorFilename));
+ }
+
+ // activate automatic reload in browser
+ echo '<html><head> <meta http-equiv="refresh" content="'.($maxRuntime+2).'"><pre>';
+
+ // go to previous file position
+ $filePosition = 0;
+ if( file_exists($progressFilename) ){
+ $filePosition = file_get_contents($progressFilename);
+ fseek($fp, $filePosition);
+ }
+
+ $queryCount = 0;
+ $query = '';
+ while( $deadline>time() AND ($line=fgets($fp, 1024000)) ) {
+ if(substr($line,0,2)=='--' OR trim($line)=='' ){
+ continue;
+ }
+
+ $query .= $line;
+ if( substr(trim($query),-1)==';' ){
+ if( !mysql_query($query) ){
+ $error = 'Napaka pri uvozu podatkov: ' . mysql_error();
+ file_put_contents($errorFilename, $error."\n");
+ exit;
+ }
+ $query = '';
+ file_put_contents($progressFilename, ftell($fp)); // save the current file position for
+ $queryCount++;
+ }
+ }
+
+ if(feof($fp) ){
+
+ // Zdaj pa še triggerji!
+ mysql_query ("DROP TRIGGER IF EXISTS srv_anketa_zero");
+ mysql_query ("CREATE TRIGGER srv_anketa_zero BEFORE DELETE ON srv_anketa FOR EACH ROW BEGIN DECLARE dummy INTEGER; IF OLD.id <= 0 THEN SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_anketa; END IF; END");
+
+ mysql_query ("DROP TRIGGER IF EXISTS srv_grupa_zero");
+ mysql_query ("CREATE TRIGGER srv_grupa_zero BEFORE DELETE ON srv_grupa FOR EACH ROW BEGIN DECLARE dummy INTEGER; IF OLD.id <= 0 THEN SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_grupa; END IF; END;");
+
+ mysql_query ("DROP TRIGGER IF EXISTS srv_if_zero");
+ mysql_query ("CREATE TRIGGER srv_if_zero BEFORE DELETE ON srv_if FOR EACH ROW BEGIN DECLARE dummy INTEGER; IF OLD.id <= 0 THEN SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_if; END IF; END;");
+
+ mysql_query ("DROP TRIGGER IF EXISTS srv_spremenljivka_zero");
+ mysql_query ("CREATE TRIGGER srv_spremenljivka_zero BEFORE DELETE ON srv_spremenljivka FOR EACH ROW BEGIN DECLARE dummy INTEGER; IF OLD.id <= 0 THEN SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_spremenljivka; END IF; END;");
+
+ mysql_query ("DROP TRIGGER IF EXISTS srv_vrednost_zero");
+ mysql_query ("CREATE TRIGGER srv_vrednost_zero BEFORE DELETE ON srv_vrednost FOR EACH ROW BEGIN DECLARE dummy INTEGER; IF OLD.id <= 0 THEN SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_vrednost; END IF; END;");
+
+ mysql_query ("DROP FUNCTION IF EXISTS MAX_RECNUM");
+ mysql_query ("CREATE FUNCTION MAX_RECNUM (aid INT(11)) RETURNS INT(11) BEGIN DECLARE max INT(11); SELECT MAX(recnum) INTO max FROM srv_user WHERE ank_id = aid AND preview='0'; IF max IS NULL THEN SET max = '0' ; END IF; RETURN max+1; END;");
+
+
+
+
+
+ echo 'Podatki uspesno uvozeni!';
+ }else {
+ echo ftell($fp).'/'.filesize($filename).' '.(round(ftell($fp)/filesize($filename), 2)*100).'%'."\n";
+ echo $queryCount.' zahtevkov obdelanih! Prosimo, cakajte, podatki se uvazajo...';
+ }
\ No newline at end of file diff --git a/utils/Fieldwork/index.php b/utils/Fieldwork/index.php new file mode 100644 index 0000000..15d5d59 --- /dev/null +++ b/utils/Fieldwork/index.php @@ -0,0 +1,98 @@ +<html>
+ <head>
+ <title>1KA</title>
+ <meta charset="utf-8">
+ <link rel="shortcut icon" sizes="192x192" href="1ka-192.png">
+ <link rel="shortcut icon" sizes="128x128" href="1ka-128.png">
+ <style type="text/css">
+ html, body {
+ font-family: Arial;
+ }
+ span.veliki {
+ display: block;
+ width: 50px;
+ height: 50px;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center;
+ padding: 7px 6px 4px 6px;
+ font: bold 38px helvetica;
+ color: #black;
+ background-color: #9a9add;
+ border: 1px solid #9a9add;
+ border-radius: 10px;
+ }
+ span.veliki.rdeci {
+ background-color: #dd9a9a;
+ }
+ span.veliki.zeleni {
+ background-color: #9aff9a;
+ padding-bottom: 10px;
+ padding-top: 2px;
+ }
+ div.blok {
+ displaY: block;
+ float: left;
+ width: 200px;
+ height: 200px;
+
+ text-align: center;
+ text-transform: uppercase;
+ }
+
+ div.spodaj {
+ cleaR: both;
+ width: 900px;
+ margin-top: 25px;
+ margin-left: auto;
+ margin-right: auto;
+ }
+ div.zgoraj {
+ clear: both;
+ width: 900px;
+ margin-top: 25px;
+ margin-left: auto;
+ margin-right: auto;
+ }
+ a, a:visited {
+ text-decoration: none;
+ color: black;
+ }
+ </style>
+ </head>
+
+ <body>
+ <div class="zgoraj">
+<?php
+ include_once ('../../settings.php');
+ include_once ('../../function.php');
+ $result = sisplet_query ("SELECT naslov, id FROM srv_anketa WHERE id IN (" .implode (",", $terminal_surveys) .")");
+ while ($r = mysqli_fetch_row ($result)) {
+?>
+ <div class="blok">
+ <a href="/a/<?=$r[1]?>" target="_blank"><span class="veliki"><?=$r[0][0]?></span><br>
+ <?=$r[0]?></a>
+
+ </div>
+<?
+ }
+?>
+ </div>
+ <br><br><br>
+ <div class="spodaj">
+ <div class="blok">
+ <a href="/utils/SurveySyncDump.php" target="_blank"><span class="veliki zeleni">⇄</span><br>
+ Sihnroniziraj</a>
+
+ </div>
+ <div class="blok">
+ <a href="/admin/" target="_blank"><span class="veliki rdeci">A</span><br>
+ Admin</a>
+
+ </div>
+ </div>
+
+ </body>
+</html>
+<?php
+?>
\ No newline at end of file diff --git a/utils/ParseForm.php b/utils/ParseForm.php new file mode 100644 index 0000000..d086ea5 --- /dev/null +++ b/utils/ParseForm.php @@ -0,0 +1,326 @@ +<?php
+
+// Deluje pravilno le za eno formo
+// Mogoce bi tudi razsiril tako da bi podal form name
+
+// Zaenkrat le radio in checkbox.
+class ParseForm {
+
+ var $content; // vsebina strani
+ var $url;
+
+ // cookies
+ var $cookies;
+
+ // direktno dumpano
+ // [offset][0] -- name , [offset][1] -- value
+ var $inputs;
+ var $selects;
+ var $hidden;
+ var $checkboxes;
+ var $radio;
+ var $textbox;
+
+ // Kam kaze forma
+ var $method;
+ var $action;
+
+ // urejeno
+ var $arr_checkbox;
+ var $arr_radio;
+ var $arr_hidden;
+
+ function ParseForm ($url) {
+ $this->url = $url;
+
+ $fv = file_get_contents (str_replace('&', '&', $url));
+
+ if (strpos ($fv, "<body") !== false) {
+ $fv = substr ($fv, strpos ($fv, "<body"), strpos ($fv, "</body>"));
+ }
+ $this->content = $fv;
+ }
+
+ function GetCookies () {
+ ob_start();
+ $ch = curl_init($this->url);
+ curl_setopt($ch, CURLOPT_HEADER, 1);
+ curl_setopt($ch, CURLOPT_NOBODY, 1);
+ $ok = curl_exec($ch);
+ curl_close($ch);
+ $head = ob_get_contents();
+ ob_end_clean();
+
+ preg_match_all ("/Set-Cookie\:(.*?)\;/i", $head, $kukiji);
+ for ($x = 0; $x <= sizeof ($kukiji[1]); $x++) {
+
+ preg_match ("/\ (.*?)\=/i", $kukiji[1][$x], $ime);
+
+ $this->cookies[sizeof($this->cookies)][0] = str_replace (" ", "", str_replace ("=", "", $ime[0]));
+ $this->cookies[sizeof($this->cookies)-1][1] = str_replace ($ime[0], "", $kukiji[1][$x]);
+ }
+ }
+
+ function GetTarget () {
+ preg_match ("/\<form\ (.*?)>/i", $this->content, $forma);
+
+ preg_match ("/method\=\"(.*?)\"/i", $forma[1], $method);
+ $method = str_replace ('method="', '', $method[0]);
+ $this->method = str_replace ('"', '', $method);
+
+ preg_match ("/action\=\"(.*?)\"/i", $forma[1], $action);
+ $action = str_replace ('action="', '', $action[0]);
+ $this->action = str_replace ('"', '', $action);
+
+
+ echo 'METHOD: '.$this->method.'<br>';
+ echo 'ACTION: '.$this->action.'<br>';
+ }
+
+ function GetFields () {
+
+ preg_match_all ("/\<input\ (.*?)>/i", $this->content, $this->inputs);
+echo "<hr>KLican sem na getfields<hr>";
+ // najprej parsajmo inpute
+ for ($x = 0; $x <= sizeof ($this->inputs[1]); $x++) {
+ unset ($value);
+ unset ($type);
+ unset ($name);
+
+ preg_match ("/name\=\"(.*?)\"/i", $this->inputs[1][$x], $name);
+ $name = str_replace ('name="', '', $name[0]);
+ $name = str_replace ('"', '', $name);
+
+ preg_match ("/value\=\"(.*?)\"/i", $this->inputs[1][$x], $value);
+ $value = str_replace ('value="', '', $value[0]);
+ $value = str_replace ('"', '', $value);
+
+ preg_match ("/type\=\"(.*?)\"/i", $this->inputs[1][$x], $type);
+ $type = str_replace ('type="', '', $type[0]);
+ $type = str_replace ('"', '', $type);
+
+ if (strtolower ($type) == "checkbox") {
+ $this->checkboxes[sizeof($this->checkboxes)][0] = $name;
+ $this->checkboxes[sizeof($this->checkboxes)-1][1] = $value;
+ }
+ if (strtolower ($type) == "radio") {
+ $this->radio[sizeof($this->radio)][0] = $name;
+ $this->radio[sizeof($this->radio)-1][1] = $value;
+ }
+ if (strtolower ($type) == "hidden") {
+ $this->hidden[sizeof($this->hidden)][0] = $name;
+ $this->hidden[sizeof($this->hidden)-1][1] = $value;
+ }
+ if (strtolower ($type) == "text") {
+ $this->textbox[sizeof($this->textbox)][0] = $name;
+ $this->textbox[sizeof($this->textbox)-1][1] = $value;
+ }
+ }
+
+ }
+
+ // Izpise na zaslon vsa polja
+ function DumpFields () {
+ for ($a=0; $a<=sizeof($this->checkboxes); $a++) {
+ echo "Checkbox" .$this->checkboxes[$a][0] .", val: " .$this->checkboxes[$a][1] ."<br>";
+ }
+ for ($a=0; $a<=sizeof($this->radio); $a++) {
+ echo "Radio name=" .$this->radio[$a][0] .", val: " .$this->radio[$a][1] ."<br>";
+ }
+ for ($a=0; $a<=sizeof($this->hidden); $a++) {
+ echo "Radio name=" .$this->hidden[$a][0] .", val: " .$this->hidden[$a][1] ."<br>";
+ }
+ }
+
+ // Spravi elemente forme v array (arr[offset][0]--name, arr[offset][1..n]-- val)
+ function FieldsToArrays () {
+
+ $pre_name = "";
+
+ for ($a=0; $a<=sizeof($this->radio); $a++) {
+ if ($this->radio[$a][0] != $pre_name) {
+ $this->arr_radio[sizeof($this->arr_radio)][0] = $this->radio[$a][0];
+ $pre_name = $this->radio[$a][0];
+ }
+
+ $this->arr_radio[sizeof($this->arr_radio)-1][sizeof($this->arr_radio[sizeof($this->arr_radio)-1])] = $this->radio[$a][1];
+ }
+
+ for ($a=0; $a<=sizeof($this->hidden); $a++) {
+ if ($this->hidden[$a][0] != $pre_name) {
+ $this->arr_hidden[sizeof($this->arr_hidden)][0] = $this->hidden[$a][0];
+ $pre_name = $this->hidden[$a][0];
+ }
+
+ $this->arr_hidden[sizeof($this->arr_hidden)-1][sizeof($this->arr_hidden[sizeof($this->arr_hidden)-1])] = $this->hidden[$a][1];
+ }
+
+
+ for ($a=0; $a<=sizeof($this->checkboxes); $a++) {
+ if ($this->checkboxes[$a][0] != $pre_name) {
+ $this->arr_checkbox[sizeof($this->arr_checkbox)][0] = $this->checkboxes[$a][0];
+ $pre_name = $this->checkboxes[$a][0];
+ }
+
+ $this->arr_checkbox[sizeof($this->arr_checkbox)-1][sizeof($this->arr_checkbox[sizeof($this->arr_checkbox)-1])] = $this->checkboxes[$a][1];
+ }
+ }
+
+ // nakljucno izpolni in submita formo.
+ function RandomFill () {
+ $radios = "";
+ $checks = "";
+ $data = "";
+
+ // Najprej random radio
+ for ($a = 0; $a < sizeof($this->arr_radio); $a++) {
+ $radios .= "&" .$this->arr_radio[$a][0] ."=" .$this->arr_radio[$a][rand(1, sizeof($this->arr_radio[$a])-1)];
+ $data[$this->arr_radio[$a][0]] = $this->arr_radio[$a][rand(1, sizeof($this->arr_radio[$a])-1)];
+echo "Na ossfet " .$this->arr_radio[$a][0] ." nastavljam vrednost " .$this->arr_radio[$a][rand(1, sizeof($this->arr_radio[$a])-1)];
+ }
+ // hidden ni random
+ for ($a = 0; $a < sizeof($this->arr_hidden); $a++) {
+ $hidden .= "&" .$this->arr_hidden[$a][0] ."=" .$this->arr_hidden[$a][sizeof($this->arr_hidden[$a])-1];
+ $data[$this->arr_hidden[$a][0]] = $this->arr_hidden[$a][sizeof($this->arr_hidden[$a])-1];
+ }
+ // random checkbox
+ for ($a = 0; $a < sizeof($this->arr_checkbox); $a++) {
+
+ // Obkljukamo nakljucno kljukic
+ $kljukic = rand (1, sizeof($this->arr_checkbox[$a]));
+
+ for ($b = 0; $b < $kljukic; $b++) {
+ $checks .= "&" .$this->arr_checkbox[$a][0] ."=" .$this->arr_checkbox[$a][rand(1, sizeof($this->arr_checkbox[$a])-1)];
+ $data[$this->arr_checkbox[$a][0]] = $this->arr_checkbox[$a][rand(1, sizeof($this->arr_checkbox[$a])-1)];
+ }
+ }
+echo "data[vrednost_2901] je " .$data['vrednost_2901'];
+echo "<br><br>PRVIC JE DATA ";
+echo var_dump($data);
+echo "<br><br>";
+
+
+
+ $content = str_replace ("&=", "", str_replace ("&=", "", substr ($radios . $checks .$hidden, 1)));
+echo "Izpolnil: $content";
+
+ if (strpos ($this->action, "http://")===false) {
+ if (strpos ($this->action, "/")===false) {
+ $url = substr ($this->url, 0, strrpos($this->url, "/")) ."/" .$this->action;
+ }
+ elseif (strpos ($this->action, "/") > 1) {
+ $url = substr ($this->url, 0, strrpos($this->url, "/")) .$this->action;
+ }
+ else {
+ $url = substr ($this->url, 0, strpos($this->url, "/")) .$this->action;
+ }
+
+ }
+
+ echo "<br>DRUGIC JE DATA: ";
+ echo var_dump($data);
+ echo "<hr>";
+ $url = 'dest.php';
+ if (strtolower ($this->method) == "post") {
+ $this->do_post_request ($url, $data);
+ }
+ else {
+// ponavljaj skripto.
+ }
+
+ }
+
+ function do_post_request ($url, $data) {
+ echo '<hr><hr>';
+
+ echo "VSEBINA STRANI KI JO POSILJAM JE " .$this->content ."<br>";
+ echo "POSTATI HOCEM PODATAKE ";
+ echo var_dump($data);
+ echo "<br>";
+ echo "POSTATI HOCEM NA $url";
+
+ foreach($data as $key => $param) {
+ if (empty($param)) {
+ unset($data[$key]);
+ }
+ }
+ // Create data
+ $data = http_build_query($data);
+
+ // Headers
+ $headers = "Content-type: application/x-www-form-urlencoded\r\n";
+ $headers .= "Content-Length: " . strlen($data) . "\r\n";
+
+ for ($x = 0; $x < sizeof ($this->cookies); $x++) {
+ if ($this->cookies[$x][0]!="") {
+ $kukis .= "; " .$this->cookies[$x][0] ."=" .$this->cookies[$x][1];
+ }
+ }
+ if (strlen ($kukis) > 1) $headers .= "Cookie: " .substr ($kukis, 2, strlen($kukis)) ."\r\n";
+
+ echo "<br>header: $headers<hr>";
+
+ // Create stream
+ $options = array(
+ 'http' => array(
+ 'method' => 'POST',
+ 'header' => $headers,
+ 'content' => $data
+ )
+ );
+
+ echo "tu poslal naprej ---_" ;
+ echo var_dump($data);
+ echo '_-----';
+
+ $context = stream_context_create($options);
+
+
+
+ // Get the result
+ $result = file_get_contents($url, false, $context);
+ echo "<br><br><br>KAR DOBIM NAZAJ: $result";
+/* // Lahko bi malo izpopolnil!!!
+ if (strpos ($result, '<form') !== false) {
+ echo "Grem na naslednjo stran...";
+ $this->ParseNextPage ($result);
+ }
+*/ }
+
+ function ParseNextPage ($content) {
+ if (strpos ($content, "<body") !== false) {
+ $content = substr ($content, strpos ($content, "<body"), strpos ($content, "</body>"));
+ }
+
+
+
+
+ $this->inputs = "";
+ $this->selects= "";
+ $this->hidden= "";
+ $this->checkboxes= "";
+ $this->radio= "";
+ $this->textbox= "";
+
+ // Kam kaze forma
+ $this->method= "";
+ $this->action= "";
+
+ // urejeno
+ $this->arr_checkbox= "";
+ $this->arr_radio= "";
+ $this->arr_hidden= "";
+
+ $this->content = $content;
+ echo "Sem na parsenextpage, grem klicat getfields";
+ // kukijev na naslednjih straneh ne preverjam vec.
+ $this->GetTarget();
+ $this->GetFields();
+ $this->FieldsToArrays();
+ $this->RandomFill();
+ }
+
+
+}
+
+?>
\ No newline at end of file diff --git a/utils/SurveySyncDump.php b/utils/SurveySyncDump.php new file mode 100644 index 0000000..7f317f5 --- /dev/null +++ b/utils/SurveySyncDump.php @@ -0,0 +1,87 @@ +<?php
+
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+include_once ('../function.php');
+include_once ('../admin/survey/definition.php');
+include_once ('../vendor/autoload.php');
+
+// daj to v settings.php za tablice :-)
+
+global $connect_db;
+$data = true;
+
+$ftp_server= $terminal_ftp_server;
+$ftp_user_name = $terminal_ftp_user_name;
+$ftp_user_pass = $terminal_ftp_user_pass;
+
+$dostop = new Dostop();
+?>
+<html>
+ <head>
+ <title>Sinhronizacija podatkov</title>
+ <meta charset="utf-8">
+</head>
+<body>
+<?
+echo 'Pripravljam se na sinhronizacijo podatkov...<br>';
+
+foreach ($terminal_surveys as $anketa) {
+
+ echo 'Preverjam dostop do ankete ' .$anketa .'...';
+ SurveyInfo::getInstance()->SurveyInit($anketa);
+
+ if ($dostop->checkDostop($anketa) == true) {
+
+ echo 'OK<br>';
+
+ SurveyCopy::setSrcSurvey($anketa);
+ SurveyCopy::setSrcConectDb($connect_db);
+ SurveyCopy::setDestSite(0);
+ $dump = SurveyCopy::downloadArrayVar($data);
+
+
+ $nd = array();
+ foreach ($dump as $kljuc=>$vrednost) {
+ $nd[$terminal_id ."||~||" .$terminal_secret][$kljuc] = $vrednost;
+ }
+
+
+ $fn = $terminal_id ."-" .$anketa .'-'.date("YmdHis").'.1ka';
+ $fp = fopen($site_path .'admin/survey/SurveyBackup/' .$fn, 'w');
+ fwrite($fp, serialize($nd));
+ fclose($fp);
+
+ echo 'Anketa je izvožena, pripravljam prenos na strežnik....';
+
+ $file = $fn;
+ $remote_file = $fn;
+
+ // set up basic connection
+ $conn_id = ftp_connect($ftp_server);
+ $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
+ ftp_pasv($conn_id, true);
+
+ // upload a file
+ if (ftp_put($conn_id, $remote_file, $site_path .'admin/survey/SurveyBackup/' .$file, FTP_ASCII)) {
+ echo 'OK. <br>Prenos ankete je uspel.<br><br>';
+
+ } else {
+ echo 'NAPAKA. <br>Prenos ankete ni uspel. ALI STE PRIKLOPLJENI NA INTERNET?<br><br>';
+ }
+
+ // close the connection
+ ftp_close($conn_id);
+ }
+
+ else {
+ echo 'nimate dostopa, zato ne izvažam!<br><strong>Ali ste prijavljeni?</strong><br>';
+ }
+}
+?>
+
+ <br><br>Opravljeno.
\ No newline at end of file diff --git a/utils/SurveySyncMergeImport.php b/utils/SurveySyncMergeImport.php new file mode 100644 index 0000000..3ed8eb5 --- /dev/null +++ b/utils/SurveySyncMergeImport.php @@ -0,0 +1,145 @@ +<?php
+
+// tekstovna vsebina
+// V SETTINGS.PHP DODAJ SYNC_SERVER_PATH!!!!!
+
+include_once ('../function.php');
+include_once ('../admin/survey/definition.php');
+include_once ('../vendor/autoload.php');
+include_once ('../settings.php');
+
+$struktura = array();
+$podatki = array(
+ 'srv_user' => array(),
+ 'srv_data_checkgrid' => array(),
+ 'srv_data_checkgrid_active' => array(),
+ 'srv_data_glasovanje' => array(),
+ 'srv_data_grid' => array(),
+ 'srv_data_grid_active' => array(),
+ 'srv_data_rating' => array(),
+ 'srv_data_text' => array(),
+ 'srv_data_text_active' => array(),
+ 'srv_data_textgrid' => array(),
+ 'srv_data_textgrid_active' => array(),
+ 'srv_data_upload' => array(),
+ 'srv_data_vrednost' => array(),
+ 'srv_data_vrednost_active' => array(),
+ 'srv_user_grupa' => array(),
+ 'srv_user_grupa_active' => array());
+
+
+// You can use the desired folder to check and comment the others.
+// foreach (glob("../downloads/*") as $path) { // lists all files in sub-folder called "downloads"
+
+$obdelani = array();
+
+$uvozeno = false;
+
+if ($handle = opendir($sync_server_path)) {
+
+ foreach (glob($sync_server_path ."*.1ka") as $path) { // lists all files in folder called "test"
+ $datoteke[$path] = filectime($path);
+ } arsort($datoteke);
+
+ foreach ($datoteke as $file => $timestamp) {
+ $raw = file_get_contents($file);
+ $vsebina = unserialize($raw);
+
+ $num = 0;
+
+ foreach ($vsebina as $machine_ID => $kljuc) {
+
+
+ // imam ime in secret v machine_id.
+ $terminal = explode ("||~||", $machine_ID);
+
+ // preverim, če sem to anketo + ta računalnik že delal - če nisem, grem delati.
+ if (!in_array($terminal[0] ."-" .$kljuc['srv_anketa'][0]['id'], $obdelani)) {
+ array_push($obdelani, $terminal[0] ."-" .$kljuc['srv_anketa'][0]['id']);
+ // Porihtaj naslov tako da bo "Fieldwork: anketa datum URA";
+
+ // preverim če je secret OK...
+ $result = sisplet_query ("SELECT sid_server, id FROM srv_fieldwork WHERE secret='" .$terminal[1] ."' AND terminal_id='" .$terminal[0] ."' AND sid_terminal='" .$kljuc['srv_anketa'][0]['id'] ."' AND sid_server='" .$_GET['srv_id'] ."'");
+ if ($r = mysqli_fetch_row ($result)) {
+
+ if (count($struktura) == 0) {
+
+ $num = substr_count($raw, '"recnum"');
+
+ mysql_query ("UPDATE srv_fieldwork SET lastnum='$num' WHERE id='" .$r[1] ."'");
+
+ // $struktura['version'] = $kljuc['version'];
+ $struktura['version'] = time();
+ $struktura['srv_anketa'] = $kljuc['srv_anketa'];
+ // tole pa popravi (naslov)
+ $struktura['srv_anketa'][0]['naslov'] = "Fieldwork: " .$kljuc['srv_anketa'][0]['naslov'] .' ' .date('H:i:s');
+ $struktura['srv_alert'] = $kljuc['srv_alert'];
+ $struktura['srv_call_setting'] = $kljuc['srv_call_setting'];
+ $struktura['srv_dostop'] = $kljuc['srv_dostop'];
+ $struktura['srv_dostop_language'] = $kljuc['srv_dostop_language'];
+ $struktura['srv_language'] = $kljuc['srv_language'];
+ $struktura['srv_grupa'] = $kljuc['srv_grupa'];
+ $struktura['srv_spremenljivka'] = $kljuc['srv_spremenljivka'];
+ $struktura['srv_vrednost'] = $kljuc['srv_vrednost'];
+ $struktura['srv_grid'] = $kljuc['srv_grid'];
+ $struktura['srv_grid_multiple'] = $kljuc['srv_grid_multiple'];
+ $struktura['srv_language_spremenljivka'] = $kljuc['srv_language_spremenljivka'];
+ $struktura['srv_language_vrednost'] = $kljuc['srv_language_vrednost'];
+ $struktura['srv_language_grid'] = $kljuc['srv_language_grid'];
+ $struktura['srv_missing_values'] = $kljuc['srv_missing_values'];
+ $struktura['srv_calculation'] = $kljuc['srv_calculation'];
+ $struktura['srv_survey_misc'] = $kljuc['srv_survey_misc'];
+ $struktura['srv_glasovanje'] = $kljuc['srv_glasovanje'];
+ $struktura['srv_if'] = $kljuc['srv_if'];
+ $struktura['srv_condition'] = $kljuc['srv_condition'];
+ $struktura['srv_condition_grid'] = $kljuc['srv_condition_grid'];
+ $struktura['srv_condition_vre'] = $kljuc['srv_condition_vre'];
+ $struktura['srv_loop'] = $kljuc['srv_loop'];
+ $struktura['srv_loop_vre'] = $kljuc['srv_loop_vre'];
+ $struktura['srv_loop_data'] = $kljuc['srv_loop_data'];
+ $struktura['srv_branching'] = $kljuc['srv_branching'];
+ $struktura['data'] = true;
+ }
+
+ $podatki['srv_user'] = array_merge($podatki['srv_user'], $kljuc['srv_user']);
+ $podatki['srv_data_checkgrid'] = array_merge($podatki['srv_data_checkgrid'], $kljuc['srv_data_checkgrid']);
+ $podatki['srv_data_checkgrid_active'] = array_merge($podatki['srv_data_checkgrid_active'], $kljuc['srv_data_checkgrid_active']);
+ $podatki['srv_data_glasovanje'] = array_merge($podatki['srv_data_glasovanje'], $kljuc['srv_data_glasovanje']);
+ $podatki['srv_data_grid'] = array_merge($podatki['srv_data_grid'], $kljuc['srv_data_grid']);
+ $podatki['srv_data_grid_active'] = array_merge($podatki['srv_data_grid_active'], $kljuc['srv_data_grid_active']);
+ $podatki['srv_data_rating'] = array_merge($podatki['srv_data_rating'], $kljuc['srv_data_rating']);
+ $podatki['srv_data_text'] = array_merge($podatki['srv_data_text'], $kljuc['srv_data_text']);
+ $podatki['srv_data_text_active'] = array_merge($podatki['srv_data_text_active'], $kljuc['srv_data_text_active']);
+ $podatki['srv_data_textgrid'] = array_merge($podatki['srv_data_textgrid'], $kljuc['srv_data_textgrid']);
+ $podatki['srv_data_textgrid_active'] = array_merge($podatki['srv_data_textgrid_active'], $kljuc['srv_data_textgrid_active']);
+ $podatki['srv_data_upload'] = array_merge($podatki['srv_data_upload'], $kljuc['srv_data_upload']);
+ $podatki['srv_data_vrednost'] = array_merge($podatki['srv_data_vrednost'], $kljuc['srv_data_vrednost']);
+ $podatki['srv_data_vrednost_active'] = array_merge($podatki['srv_data_vrednost_active'], $kljuc['srv_data_vrednost_active']);
+ $podatki['srv_user_grupa'] = array_merge($podatki['srv_user_grupa'], $kljuc['srv_user_grupa']);
+ $podatki['srv_user_grupa_active'] = array_merge($podatki['srv_user_grupa_active'], $kljuc['srv_user_grupa_active']);
+
+ $uvozeno = true;
+ }
+ }
+ }
+ }
+}
+
+if ($uvozeno == true) {
+
+ $skupno = array_merge ($struktura, $podatki);
+
+ SurveyCopy::setSrcSurvey(-1);
+ SurveyCopy::setSrcConectDb($connect_db);
+ SurveyCopy::setDestSite(0);
+
+ SurveyCopy::setSourceArray($skupno);
+
+ $new_srv_id = SurveyCopy::doCopy();
+
+ header ('location: ' .$site_url .'admin/survey/index.php?anketa=' .$_GET['srv_id'] .'&a=fieldwork&n=' .$new_srv_id);
+}
+else {
+ header ('location: ' .$site_url .'admin/survey/index.php?anketa=' .$_GET['srv_id'] .'&a=fieldwork&n=0');
+}
+
diff --git a/utils/checkLanguageKeys.php b/utils/checkLanguageKeys.php new file mode 100644 index 0000000..edf56ad --- /dev/null +++ b/utils/checkLanguageKeys.php @@ -0,0 +1,44 @@ +<?php
+/*
+ * Created on 5.2.2010
+ *
+ * primerja oba language fajla 1.php in 2.php in izpiše ključe ki manjkajo v posameznem
+ */
+ include_once('../function.php');
+
+
+
+ $_tmp_slo = array();
+ $_tmp_eng = array();
+
+ include_once($site_path.'lang/1.php');
+ $_tmp_slo = $lang;
+ include_once($site_path.'lang/2.php');
+ $_tmp_eng = $lang;
+
+ // $_dif = array_diff_key($_tmp_slo, $_tmp_eng);
+
+ $_slo_not_in_eng = array();
+ $_eng_not_in_slo = array();
+
+ foreach($_tmp_slo as $key => $value) {
+ if (!isset($_tmp_eng[$key])) {
+ $_eng_not_in_slo[] = $key;
+ }
+ }
+
+ foreach($_tmp_eng as $key => $value) {
+ if (!isset($_tmp_slo[$key])) {
+ $_slo_not_in_eng[] = $key;
+ }
+ }
+ echo "<b>Kljuci kateri so v slovenscini in jih ni v anglescini:</b><br/>";
+ foreach ($_eng_not_in_slo as $value) {
+ print_r($value."<br>");
+ }
+
+ echo "<hr/><br/><b>Kljuci kateri so v anglescini in jih ni v slovenscini:</b><br/>";
+ foreach ($_slo_not_in_eng as $value) {
+ print_r($value."<br>");
+ }
+?>
diff --git a/utils/create_salt.php b/utils/create_salt.php new file mode 100644 index 0000000..7ed5c73 --- /dev/null +++ b/utils/create_salt.php @@ -0,0 +1,94 @@ +<?
+
+ $nabor[0] = "a";
+ $nabor[1] = "b";
+ $nabor[2] = "c";
+ $nabor[3] = "d";
+ $nabor[4] = "e";
+ $nabor[5] = "f";
+ $nabor[6] = "g";
+ $nabor[7] = "h";
+ $nabor[8] = "i";
+ $nabor[9] = "j";
+ $nabor[10] = "k";
+ $nabor[11] = "l";
+ $nabor[12] = "m";
+ $nabor[13] = "n";
+ $nabor[14] = "o";
+ $nabor[15] = "p";
+ $nabor[16] = "q";
+ $nabor[17] = "r";
+ $nabor[18] = "s";
+ $nabor[19] = "t";
+ $nabor[20] = "u";
+ $nabor[21] = "v";
+ $nabor[22] = "w";
+ $nabor[23] = "x";
+ $nabor[24] = "y";
+ $nabor[25] = "z";
+ $nabor[26] = "A";
+ $nabor[27] = "B";
+ $nabor[28] = "C";
+ $nabor[29] = "D";
+ $nabor[30] = "E";
+ $nabor[31] = "F";
+ $nabor[32] = "G";
+ $nabor[33] = "H";
+ $nabor[34] = "I";
+ $nabor[35] = "J";
+ $nabor[36] = "K";
+ $nabor[37] = "L";
+ $nabor[38] = "M";
+ $nabor[39] = "N";
+ $nabor[40] = "O";
+ $nabor[41] = "P";
+ $nabor[42] = "Q";
+ $nabor[43] = "R";
+ $nabor[44] = "S";
+ $nabor[45] = "T";
+ $nabor[46] = "U";
+ $nabor[47] = "V";
+ $nabor[48] = "W";
+ $nabor[49] = "X";
+ $nabor[50] = "Y";
+ $nabor[51] = "Z";
+ $nabor[52] = "1";
+ $nabor[53] = "2";
+ $nabor[54] = "3";
+ $nabor[55] = "4";
+ $nabor[56] = "5";
+ $nabor[57] = "6";
+ $nabor[58] = "7";
+ $nabor[59] = "8";
+ $nabor[60] = "9";
+ $nabor[61] = "0";
+ $nabor[62] = ".";
+ $nabor[63] = ",";
+ $nabor[64] = ";";
+ $nabor[65] = ":";
+ $nabor[66] = "-";
+ $nabor[67] = "_";
+ $nabor[68] = "?";
+ $nabor[69] = "!";
+ $nabor[70] = "#";
+ $nabor[71] = "$";
+ $nabor[72] = "%";
+ $nabor[73] = "&";
+ $nabor[74] = "/";
+ $nabor[75] = "(";
+ $nabor[76] = ")";
+ $nabor[77] = "@";
+ $nabor[78] = "{";
+ $nabor[79] = "}";
+ $nabor[80] = "[";
+ $nabor[81] = "]";
+ $nabor[82] = "<";
+ $nabor[83] = ">";
+
+ $salt = "";
+ for ($l = 0; $l<256; $l++) {
+ $salt .= $nabor[rand (0, sizeof ($nabor)-1)];
+ }
+ echo '<font face="courier" size="2">' .$salt .'</font>';
+
+?>
diff --git a/utils/gdpr_request.php b/utils/gdpr_request.php new file mode 100644 index 0000000..fc036fe --- /dev/null +++ b/utils/gdpr_request.php @@ -0,0 +1,24 @@ +<?php
+
+ /*
+ * Skripta ki se klice ko respondent poslje zahtevek za izbris oz. vpogled v podatke (GDPR zahtevek)
+ */
+
+ include_once('../admin/survey/definition.php');
+ include_once('../function.php');
+ include_once('../vendor/autoload.php');
+
+ // Testiranje...
+ /*$_POST = array(
+ 'email' => 'xxx.yy@gg.si',
+ 'srv-name' => 'Test ime',
+ 'srv-url' => 'http://1ka/a/75/xcxx?fsad=erwre',
+ 'gdpr-action' => '3',
+ 'gdpr-note' => 'blabalbalb asfasf',
+ 'gdpr-notice-me' => '1'
+ );*/
+
+ $gdpr = new GDPR();
+ $gdpr->sendGDPRRequest($_POST);
+
+?>
\ No newline at end of file diff --git a/utils/genSTR.php b/utils/genSTR.php new file mode 100644 index 0000000..1b4c798 --- /dev/null +++ b/utils/genSTR.php @@ -0,0 +1,22 @@ +<?php
+ include ('../settings.php');
+ include ('../function.php');
+
+ $len = 200;
+ $charset = "3g98h%$&/()=+*?-_.:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
+
+ $moja = "";
+
+ for ($a=0; $a<200; $a++) {
+ $moja .= $charset[rand(0, strlen($charset))];
+ }
+
+
+ $njegova = (str_replace ("'", "", base64_decode($_GET['s'])));
+
+ sisplet_query ("DELETE FROM aai_prenosi WHERE timestamp < (UNIX_TIMESTAMP() - 600);");
+ sisplet_query ("INSERT INTO aai_prenosi (timestamp, moja, njegova) VALUES (UNIX_TIMESTAMP(), '" .$moja ."', '" .$njegova ."')");
+
+ die ($moja);
+
+
diff --git a/utils/google-oauth2.php b/utils/google-oauth2.php new file mode 100644 index 0000000..f9ac9d9 --- /dev/null +++ b/utils/google-oauth2.php @@ -0,0 +1,11 @@ +<?php
+
+ require_once ('../settings.php');
+ require_once ('../function.php');
+ require_once ('../function/ProfileClass.php');
+
+
+ $profile = new Profile();
+ $profile->GoogleLogin();
+
+?>
\ No newline at end of file diff --git a/utils/load_test.php b/utils/load_test.php new file mode 100644 index 0000000..544b6d6 --- /dev/null +++ b/utils/load_test.php @@ -0,0 +1,322 @@ +<?php
+
+/**
+* skripta ki zaporedno klice izpolnjevanje ankete na podanem naslovu $_GET['url'] in stevilu iteracij $_GET['iterate']
+*/
+
+include('../function.php');
+
+if (!isset($_GET['url'])) $_GET['url'] = 'http://www.1ka.si/loadtest';
+if (!isset($_GET['iterate'])) $_GET['iterate'] = 10;
+if (!isset($_GET['uniqueID'])) $_GET['uniqueID'] = '';
+
+$lt = new LoadTest();
+$lt->url($_GET['url']);
+$lt->run($_GET['iterate']);
+
+/**
+*
+* Class, ki na podanem URLju zacne izpolnjevati formo.
+* Ce je na naslednji strani (ki jo dobi nazaj) zopet forma, nadaljuje izpolnjevanje (za izpolnjevanje celotne ankete na vecih straneh)
+*
+* Izpolnjevanje od zacetka se pozene v podanem stevilu iteracij.
+*
+*/
+class LoadTest {
+
+ private $time_start;
+ private $start;
+ private $url;
+ private $subrequests = false;
+
+ /**
+ * zabelezimo zacetek izvajanja skripte
+ *
+ */
+ function __construct () {
+ $this->start = microtime(true);
+ }
+
+ /**
+ * URL na katerem bomo zaceli izpolnjevati formo
+ *
+ * @param mixed $url
+ */
+ function url ($url) {
+ $this->url = $url;
+ }
+
+ /**
+ * pozenemo izpolnjevanje forme v stevilu iteracij
+ *
+ * @param mixed $iterate
+ */
+ function run ($iterate = 1) {
+
+ for ($i=1; $i<=$iterate; $i++) {
+ $this->time_start = microtime(true);
+
+ $this->fill_form($this->url);
+
+ $time_seconds = microtime(true) - $this->time_start;
+ echo $i.'. form filled in '.$time_seconds.' seconds<br>';
+ flush(); @ob_flush();
+ }
+
+ $time_seconds = microtime(true) - $this->start;
+ echo '<br><b>All '.$iterate.' forms filled in '.$time_seconds.' seconds</b>';
+
+ flush(); @ob_flush();
+ }
+
+ /**
+ * izpolnjuje nek form, dokler ne pride do strani brez form elementa
+ *
+ * @param string $url
+ * @param mixed $post
+ */
+ function fill_form ($url, $post=null) {
+ if ($url == '') return;
+ $i = 0;
+
+ do {
+
+ list($header, $content) = $this->post_request($url, $post);
+ if ($this->subrequests) {
+ $this->post_request('http://www.1ka.si/admin/survey/minify/g=jsfrontend');
+ $this->post_request('http://www.1ka.si/admin/survey/script/calendar/calendar.js');
+ $this->post_request('http://www.1ka.si/admin/survey/script/calendar/lang/calendar-si.js');
+ $this->post_request('http://www.1ka.si/admin/survey/script/calendar/calendar-setup.js');
+ $this->post_request('http://www.1ka.si/admin/survey/script/calendar/calendar.css');
+ $this->post_request('http://www.1ka.si/main/survey/skins/Default.css');
+ }
+
+ $url = '';
+
+ // ce stran poslje redirect
+ if (strpos($header, 'HTTP/1.1 302 Found') !== false) {
+
+ $h = explode("\n", $header);
+ foreach ($h AS $l) if (strpos($l, 'Location:') !== false) $location = $l;
+
+ $url = trim( substr($location, 10) );
+ $post = null;
+
+ // obicen page, ki ga gremo parsat
+ } else {
+
+ $form = $this->parse_form($content);
+
+ if ( isset($form['action']) ) $url = $form['action'];
+
+ $form['input'] = $this->randomize_form($form['input']);
+
+ if ( isset($form['input']) ) $post = $form['input'];
+
+ }
+
+ if (++$i >= 10000) { echo 'BREAK'; break; } // preprecimo, da se ne zacikla
+
+ } while ($url != '');
+
+ /*if (strpos($content, 'Hvala za sodelovanje') === false)
+ echo '<hr>'.$header.'<br>'.$content.'<hr>';
+ else
+ echo '<hr>KONEC<hr>';*/
+ }
+
+ /**
+ * sparsa podano HTML vsebino strani in vrne array s podatki form-a
+ *
+ * @param mixed $content
+ */
+ function parse_form ($content) {
+ $form = array();
+
+ $dom = new DOMDocument();
+ @$dom->loadHTML($content);
+ $dom->preserveWhiteSpace = false;
+
+ $form_el = $dom->getElementsByTagName('form');
+ foreach ($form_el AS $oneform) // na strani mora biti samo en form... ker drugace ne vemo katerega izbrati
+ $form['action'] = $oneform->getAttribute('action');
+
+ // gremo cez input polja
+ $inputs = $dom->getElementsByTagName('input');
+
+ foreach ($inputs AS $input) {
+ $name = $input->getAttribute('name');
+ $value = $input->getAttribute('value');
+ $type = $input->getAttribute('type');
+ if ($name != '') {
+ $form['input'][$name]['type'] = $type;
+ $form['input'][$name][] = $value;
+ }
+ }
+
+ return $form;
+ }
+
+ /**
+ * zrandomizira vrednosti forma
+ *
+ * @param mixed $form
+ */
+ function randomize_form($form) {
+ /*echo '<pre>';
+ echo "\noriginale: ";
+ print_r($form);*/
+
+ if ( count($form) == 0 ) return $form;
+
+ foreach ($form AS $key => $input) {
+
+ // radio button - izberemo enega nakljucno
+ if ($input['type'] == 'radio') {
+ $pos = rand(0, count($input)-2);
+ $form[$key] = $input[$pos];
+
+ // checkbox (razlika je v tabeli in navadnih, ker imajo razlicen nacin poimenovanja, in se ne da drugace zaznati skupin... zakompliciran..)
+ } elseif ($input['type'] == 'checkbox') {
+
+ // navaden checkbox - izberemo enega nakljucno
+ if ( count($input) > 2 ) {
+ $pos = rand(0, count($input)-2);
+ $form[$key] = $input[$pos];
+
+ // multigrid checkbox - vsak checkbox obkljukamo z verjetnostjo 50% (ker se ne da razbrati vrstic zaradi takega poimenovanja)
+ } else {
+ foreach ($input AS $k => $v) {
+ if ($v != 'checkbox')
+ if (rand(0,1) >= 0.5) $form[$key] = $v; else unset($form[$key]);
+ }
+ }
+
+ // textfield - vpisemo nek random string
+ } elseif ($input['type'] == 'text') {
+ $form[$key] = ($_GET['uniqueID']!=''?$_GET['uniqueID'].'-':'') . substr(sha1(rand(0,1).time()), 0, 10);
+
+
+ // ce je samo 1 element, nimamo kaj randomizirat (count je 2, ker je en type)
+ } else {
+ $form[$key] = $input[0];
+
+ }
+
+
+ }
+
+ /*echo "\nrandomized:";
+ print_r($form);
+ echo '</pre>';*/
+
+ return $form;
+ }
+
+ /**
+ * en primercek, ki poslje vse parametre. request_show.php pa izpise vse post, get in cookieje ki jih prejme
+ *
+ */
+ function test_example() {
+
+ $post = array('test' => 'foobar', 'okay' => 'yes', '6' => 'test');
+
+ $get = array ('get'=>'gett', 'get222'=>'123');
+
+ $cookie = array ('ena' => 'prvi', 'dva' => 'drugiff');
+
+ list($header, $content) = $this->post_request(
+ "http://test.1ka.si/utils/request_show.php?pa_v_urlju=tudi_dela",
+ $post,
+ $get,
+ $cookie
+ );
+
+ echo $header.'<hr>'.$content;
+ }
+
+ /**
+ * naredi request (POST oz GET, nastavi tudi COOKIE) in vrne rezultat
+ *
+ */
+ function post_request($url, $_post=null, $_get=null, $_cookie=null, $referer='') {
+
+ if ($referer == '') $referer = $url;
+
+ if ($_post != null) {
+ $data = array();
+ while (list($n, $v) = each($_post)) {
+ $data[] = "$n=$v";
+ }
+ $data = implode('&', $data);
+ }
+
+ if ($_get != null) {
+ $get = array();
+ while (list($n,$v) = each($_get)) {
+ $get[] = "$n=$v";
+ }
+ $get = '?'.implode('&', $get);
+ } else $get = '';
+
+ if ($_cookie != null) {
+ $cookie = array();
+ while (list($n,$v) = each($_cookie)) {
+ $coookie[] = "$n=$v";
+ }
+ $cookie = implode('; ', $coookie);
+ }
+
+ // sparsamo url
+ $url = parse_url($url);
+ if ($url['scheme'] != 'http') {
+ die('Only HTTP request are supported !');
+ }
+
+ $host = $url['host'];
+ $path = $url['path'];
+ if (isset($url['query'])) $query = ($get==''?'?':'&').$url['query']; else $query = '';
+
+ set_time_limit(0);
+
+ $fp = fsockopen($host, 80);
+
+ //stream_set_blocking($fp, false);
+ stream_set_timeout($fp, 86400);
+
+ // posljemo header
+ if ($_post != null)
+ fputs($fp, "POST {$path}{$get}{$query} HTTP/1.1\r\n");
+ else
+ fputs($fp, "GET {$path}{$get}{$query} HTTP/1.1\r\n");
+ fputs($fp, "Host: $host\r\n");
+ fputs($fp, "Referer: $referer\r\n");
+ if ($_cookie != null)
+ fputs($fp, "Cookie: $cookie\r\n");
+ fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
+ if ($_post != null)
+ fputs($fp, "Content-length: ". strlen($data) ."\r\n");
+ fputs($fp, "Connection: close\r\n\r\n");
+ if ($_post != null)
+ fputs($fp, $data);
+
+ $result = '';
+ while(!feof($fp)) {
+ $result .= fgets($fp, 128);
+ }
+
+ fclose($fp);
+
+ // locimo header od podatkov
+ $result = explode("\r\n\r\n", $result, 2);
+
+ $header = isset($result[0]) ? $result[0] : '';
+ $content = isset($result[1]) ? $result[1] : '';
+
+ // header in podatke vrnemo v arrayu
+ return array($header, $content);
+ }
+
+}
+
+?>
\ No newline at end of file diff --git a/utils/load_test_run.php b/utils/load_test_run.php new file mode 100644 index 0000000..47a1619 --- /dev/null +++ b/utils/load_test_run.php @@ -0,0 +1,107 @@ +<?php
+
+/**
+* skripta, ki asinhrono poklice podani url $_GET['url'] hkrati N-krat $_GET['n']
+*
+*/
+
+// nastavitve za razlicne streznike, da lahko preprosto startamo skripto iz vecih serverjev
+
+if (!isset($_GET['server'])) $_GET['server'] = 2;
+
+if ($_GET['server'] == 1) { // test.1ka.si
+
+ if (!isset($_GET['url'])) $_GET['url'] = 'http://test.1ka.si/utils/load_test';
+ if (!isset($_GET['n'])) $_GET['n'] = 10; $n = (int)$_GET['n']; // kolikokrat asinhrono poklicemo zgornjo povezavo
+ if (!isset($_GET['iterate'])) $_GET['iterate'] = 10; $iterate = (int)$_GET['iterate']; // parameter ki ga podamo naprej - kolikokrat se znotraj ene povezave izpolnjuje form
+
+} elseif ($_GET['server'] == 2) {
+
+ if (!isset($_GET['url'])) $_GET['url'] = 'http://www.1ka.si/utils/load_test.php';
+ if (!isset($_GET['n'])) $_GET['n'] = 2; $n = (int)$_GET['n']; // kolikokrat asinhrono poklicemo zgornjo povezavo
+ if (!isset($_GET['iterate'])) $_GET['iterate'] = 2; $iterate = (int)$_GET['iterate']; // parameter ki ga podamo naprej - kolikokrat se znotraj ene povezave izpolnjuje form
+
+}
+
+
+// zacnemo
+
+$start = microtime(true);
+
+for ($i=0; $i<$n; $i++) {
+ $fp[$i] = JobStartAsync($_GET['url'].'?iterate='.$iterate.'&uniqueID='.$i);
+}
+
+while (true) {
+ sleep(1);
+
+ for ($i=0; $i<$n; $i++)
+ $r[$i] = JobPollAsync($fp[$i]);
+
+ $break = true;
+ for ($i=0; $i<$n; $i++)
+ if ($r[$i] !== false) $break = false;
+ if ($break) break;
+
+ for ($i=0; $i<$n; $i++) {
+ $result = explode("\r\n\r\n", $r[$i], 2);
+ $header = isset($result[0]) ? $result[0] : '';
+ $content = isset($result[1]) ? $result[1] : '';
+ echo "<b>r{$i} = </b>{$content}<br>";
+ }
+
+ echo "<hr>";
+
+ flush(); @ob_flush();
+}
+
+$time_seconds = microtime(true) - $start;
+echo "<h3>All Jobs Complete in {$time_seconds} seconds</h3>";
+
+
+
+// odpre asinhrono povezavo na skripto
+function JobStartAsync($url, $conn_timeout=30, $rw_timeout=86400)
+{
+ $errno = '';
+ $errstr = '';
+
+ $url = parse_url($url);
+ if ($url['scheme'] != 'http') {
+ die('Only HTTP request are supported !');
+ }
+
+ $host = $url['host'];
+ $path = $url['path'];
+ $query = $url['query'] != '' ? "?{$url['query']}" : "";
+
+ set_time_limit(0);
+
+ $fp = fsockopen($host, 80);
+
+ stream_set_blocking($fp, false);
+ stream_set_timeout($fp, $rw_timeout);
+
+ fputs($fp, "GET {$path}{$query} HTTP/1.1\r\n");
+ fputs($fp, "Host: $host\r\n");
+ fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
+ fputs($fp, "Connection: close\r\n\r\n");
+
+ return $fp;
+}
+
+// zaporedoma bere fp in vraca kaj se dogaja: returns false if HTTP disconnect (EOF), or a string (could be empty string) if still connected
+function JobPollAsync(&$fp)
+{
+ if ($fp === false) return false;
+
+ if (feof($fp)) {
+ fclose($fp);
+ $fp = false;
+ return false;
+ }
+
+ return fread($fp, 10000);
+}
+
+?>
\ No newline at end of file diff --git a/utils/musarca.php b/utils/musarca.php new file mode 100644 index 0000000..ee7527f --- /dev/null +++ b/utils/musarca.php @@ -0,0 +1,22 @@ +<?php
+
+/**********************************************
+ *
+ * v .htaccess moraš dodati
+ *
+ * /cookie_da => utils/musarca.php?c=1
+ * /cookie_ne => utils/musarca.php?c=0
+ *
+ */
+
+
+if ($_GET['c']=="1") {
+ // setcookie,...
+ setcookie ('AllowCookie', '1', time()+(3600*24*365*10), '/');
+}
+else {
+ // setcookie....
+ setcookie ('AllowCookie', '0', time()+(3600*24*365*10), '/');
+}
+header ('location: /index.php');
+?>
diff --git a/utils/password_create.php b/utils/password_create.php new file mode 100644 index 0000000..e13ba44 --- /dev/null +++ b/utils/password_create.php @@ -0,0 +1,13 @@ +<?php
+/***************************************
+ * Description:
+ * Autor: Robert Šmalc
+ * Created date: 16.11.2016
+ *****************************************/
+include_once ("../function.php");
+$geslo = 'admin';
+
+global $pass_salt;
+$password = base64_encode((hash(SHA256, $geslo .$pass_salt)));
+
+sisplet_query("UPDATE users SET pass='".$password."' WHERE id=1045");
\ No newline at end of file diff --git a/utils/phpinfo.php b/utils/phpinfo.php new file mode 100644 index 0000000..3d0f18c --- /dev/null +++ b/utils/phpinfo.php @@ -0,0 +1,6 @@ +<?php
+
+phpinfo();
+die();
+
+?>
\ No newline at end of file diff --git a/utils/request_show.php b/utils/request_show.php new file mode 100644 index 0000000..7a21fa9 --- /dev/null +++ b/utils/request_show.php @@ -0,0 +1,16 @@ +<pre>
+<?php
+ echo "POST\n";
+ print_r($_POST);
+ echo "\nGET\n";
+ print_r($_GET);
+ echo "\nCOOKIE\n";
+ print_r($_COOKIE);
+?>
+</pre><?php
+
+
+
+ //phpinfo();
+
+?>
\ No newline at end of file diff --git a/utils/setLastStatus.php b/utils/setLastStatus.php new file mode 100644 index 0000000..a728afb --- /dev/null +++ b/utils/setLastStatus.php @@ -0,0 +1,17 @@ +<?php
+/*
+ * Created on 21.12.2009
+ *
+ * To change the template for this generated file go to
+ * Window - Preferences - PHPeclipse - PHP - Code Templates
+ */
+ include_once('../function.php');
+ $str = "SELECT st.status, st.usr_id FROM srv_userstatus AS st LEFT JOIN (SELECT s.usr_id, max(s.datetime) as statusdatetime FROM srv_userstatus as s GROUP BY s.usr_id ) AS s ON s.usr_id = st.usr_id ";
+ $qry = sisplet_query($str);
+ while ($row = mysqli_fetch_assoc($qry)) {
+ $str2 = "UPDATE srv_user SET last_status = '".$row['status']."' WHERE id = '".$row['usr_id']."'";
+
+ $updated = sisplet_query($str2);
+ print_r($updated."<br>");
+ }
+?>
diff --git a/utils/testQuerySpeed.php b/utils/testQuerySpeed.php new file mode 100644 index 0000000..6082864 --- /dev/null +++ b/utils/testQuerySpeed.php @@ -0,0 +1,53 @@ +<?php
+
+/**
+ * Test speed of query
+ * Uroš Podkrižnik 21.12.2017
+ */
+class testQuerySpeed {
+
+ function __construct() {
+
+ }
+
+ function test($sql_query = "SELECT id FROM srv_anketa", $loopnum = 1000) {
+ $microa = 0;
+ $microo = 0;
+ $microni = 0;
+ $micron = 0;
+ for ($i = 0; $i < $loopnum; $i++) {
+ $starta = microtime(true);
+ $sql_array = sisplet_query($sql_query, 'array');
+ foreach ($sql_array as $pair)
+ $res = $pair;
+ $enda = microtime(true);
+ $microa += ($enda - $starta);
+
+ $starto = microtime(true);
+ $sql_obj = sisplet_query($sql_query, 'obj');
+ foreach ($sql_obj as $pair)
+ $res = $pair;
+ $endo = microtime(true);
+ $microo += ($endo - $starto);
+
+ $startn = microtime(true);
+ $sql = sisplet_query($sql_query);
+ while ($row = mysqli_fetch_assoc($sql))
+ $res = $row;
+ $endn = microtime(true);
+ $microni += ($endn - $startn);
+
+ $startn = microtime(true);
+ $sql = sisplet_query($sql_query);
+ while ($row = mysqli_fetch_assoc($sql))
+ $res = $row;
+ $endn = microtime(true);
+ $micron += ($endn - $startn);
+ }
+ error_log('$microa ' . $microa);
+ error_log('$microo ' . $microo);
+ error_log('$microni ' . $microni);
+ error_log('$micron ' . $micron);
+ }
+
+}
|