├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── Browser.php └── tests ├── BraveTest.php ├── ChromeTest.php ├── CurlWgetTest.php ├── EdgeTest.php ├── FirefoxMobileTest.php ├── FirefoxTest.php ├── InternetExplorerTest.php ├── OperaTest.php ├── PalemoonTest.php ├── StaticTest.php ├── TabDelimitedFileIterator.php ├── UCBrowserTest.php └── lists ├── brave.txt ├── chrome.txt ├── edge.txt ├── firefox-mobile.txt ├── firefox.txt ├── ie.txt ├── opera.txt ├── palemoon.txt └── ucbrowser.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | .phpunit.result.cache 4 | /phpunit.xml 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | dist: trusty 4 | 5 | php: 6 | - 7.4 7 | - 7.3 8 | 9 | install: composer install 10 | 11 | script: phpunit --configuration phpunit.xml.dist 12 | 13 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 | and this project **attempts** to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) while applying 6 | changes when it socially makes sense. 7 | 8 | ## [Unreleased] 9 | 10 | ## [1.9.4] - 2019-07-09 11 | ### Added 12 | - Added better support for Firefox Mobile 13 | - Added support for the Brave browser 14 | - Added support for the UCBrowser 15 | - Added more tests for specific User Agents and more IE tests (removed duplicate UAs as well) 16 | 17 | ## [1.9.3] - 2019-07-08 18 | ### Added 19 | - Added support for curl, wget and the Palemoon browser 20 | 21 | ## [1.9.2] - 2019-06-26 22 | ### Added 23 | - PHPUnit Tests for Firefox, Opera and Chrome (3684 tests, 7368 assertions) 24 | - Stronger tests for Firefox and Chrome 25 | ### Removed 26 | - Dropped support for 5.x PHP due to updates to PHPUnit and legacy nature of 5.X 27 | 28 | ## [1.9.1] - 2019-06-19 29 | ### Added 30 | 6/19/2019: Update (Version 1.9.1) 31 | * Added Firefox iOS (gejobj) 32 | * Corrected 'Vivalidi' to 'Vivaldi' (adaxi) 33 | * Reset enhancement (yahasana) 34 | * Enforce using precise distribution until End Of Life for Travis CI (bburnichon) 35 | * Lazy load browser class on demand (bburnichon) 36 | 37 | ## 1.9.0 - 2010-08-20 38 | ### Added 39 | * Added MSN Explorer Browser 40 | * Added Bing/MSN Robot 41 | * Added the Android Platform 42 | ### Fixed 43 | * Fixed issue with Android 1.6/2.2 44 | 45 | ## 1.8.0 - 2010-04-27 46 | ## Fixed 47 | * Added iPad support 48 | 49 | ## 1.7.0 - 2010-03-07 50 | ### Added 51 | * Added FreeBSD Platform 52 | * Added OpenBSD Platform 53 | * Added NetBSD Platform 54 | * Added SunOS Platform 55 | * Added OpenSolaris Platform 56 | * Added support of the Iceweazel Browser 57 | * Added isChromeFrame() call to check if chromeframe is in use 58 | * Moved the Opera check in front of the Firefox check due to legacy Opera User Agents 59 | * Added the __toString() method (Thanks Deano) 60 | ## Removed 61 | * Almost all of Gary's original code has been replaced 62 | ## Fixed 63 | * Version 1.7 was a *MAJOR* Rebuild (preg_match and other *slow* routine removal(s)) included the following 64 | 65 | ## 0.0.9 - 2008-12-09 66 | ### Fixed 67 | * removed an unused constant and renamed the constructor to use the PHP magic method __construct (thanks to Robin for locating the legacy constant and suggesting the use of the magic method). 68 | 69 | ## 0.0.8 - 2009-11-08 70 | ### Fixed 71 | * A lot of changes to the script, thank you to everyone for the suggestions and emails. This release should add all of the requested features. Added BlackBerry, mobile detection, Opera Mini support, robot detection, Opera 10's UserAgent mess, detection for IceCat and Shiretoko! 72 | 73 | ## 0.0.7 - 2009-04-27 74 | ### Fixed 75 | * John pointed out a terrible typo (see below) - removed the typo 76 | 77 | ## 0.0.6 - 2009-04-22 78 | ### Added 79 | * added support for GoogleBot, the W3C Validator and Yahoo! Slurp 80 | 81 | ## 0.0.5 - 2009-03-14 82 | ### Added 83 | * added support for the iPod; added iPod and iPhone as platforms; added Google.s Android 84 | 85 | ## 0.0.4 - 2009-02-24 86 | ### Fixed 87 | * fixed typo in the usage! (thanks Adam!) 88 | 89 | ## 0.0.3 - 2009-02-19 90 | ### Fixed 91 | * updated typical usage to show a correct example! (thanks David!) 92 | * Updated the version detection for Amaya 93 | * Updated the version detection for Firefox 94 | * Updated the version detection for Lynx 95 | * Updated the version detection for WebTV 96 | * Updated the version detection for NetPositive 97 | * Updated the version detection for IE 98 | * Updated the version detection for OmniWeb 99 | * Updated the version detection for iCab 100 | * Updated the version detection for Safari 101 | * Updated Safari to remove mobile devices (iPhone) 102 | ### Added 103 | * Added version detectionf for edge via [pixelbacon](https://github.com/pixelbacon) 104 | * Added detection for Chrome 105 | * Added detection for iPhone 106 | * Added detection for robots 107 | * Added detection for mobile devices 108 | * Added detection for BlackBerry 109 | * Added detection for iPhone 110 | * Added detection for iPad 111 | * Added detection for Android 112 | ### Removed 113 | * Removed Netscape checks 114 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2013 - 2019 Chris Schuld 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cbschuld/browser.php 2 | 3 | [![Build Status](https://travis-ci.org/cbschuld/Browser.php.png?branch=master)](https://travis-ci.org/cbschuld/Browser.php) 4 | 5 | Helps detect the user's browser and platform at the PHP level via the user agent 6 | 7 | 8 | ## Installation 9 | 10 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 11 | 12 | composer require cbschuld/browser.php 13 | 14 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 15 | 16 | composer require --dev cbschuld/browser.php 17 | 18 | 19 | ## Typical Usage: 20 | 21 | ```php 22 | $browser = new Browser(); 23 | if( $browser->getBrowser() == Browser::BROWSER_FIREFOX && $browser->getVersion() >=10 ) { 24 | echo 'You have FireFox version 10 or greater'; 25 | } 26 | ``` 27 | 28 | ## Browser Detection 29 | 30 | This solution identifies the following Browsers and does a best-guess on the version: 31 | 32 | * Opera (`Browser::BROWSER_OPERA`) 33 | * WebTV (`Browser::BROWSER_WEBTV`) 34 | * NetPositive (`Browser::BROWSER_NETPOSITIVE`) 35 | * Edge (`Browser::BROWSER_EDGE`) 36 | * Internet Explorer (`Browser::BROWSER_IE`) 37 | * Pocket Internet Explorer (`Browser::BROWSER_POCKET_IE`) 38 | * Galeon (`Browser::BROWSER_GALEON`) 39 | * Konqueror (`Browser::BROWSER_KONQUEROR`) 40 | * iCab (`Browser::BROWSER_ICAB`) 41 | * OmniWeb (`Browser::BROWSER_OMNIWEB`) 42 | * Phoenix (`Browser::BROWSER_PHOENIX`) 43 | * Firebird (`Browser::BROWSER_FIREBIRD`) 44 | * UCBrowser (`Browser::BROWSER_UCBROWSER`) 45 | * Firefox (`Browser::BROWSER_FIREFOX`) 46 | * Mozilla (`Browser::BROWSER_MOZILLA`) 47 | * Palemoon (`Browser::BROWSER_PALEMOON`) 48 | * curl (`Browser::BROWSER_CURL`) 49 | * wget (`Browser::BROWSER_WGET`) 50 | * Amaya (`Browser::BROWSER_AMAYA`) 51 | * Lynx (`Browser::BROWSER_LYNX`) 52 | * Safari (`Browser::BROWSER_SAFARI`) 53 | * Playstation (`Browser::BROWSER_PLAYSTATION`) 54 | * iPhone (`Browser::BROWSER_IPHONE`) 55 | * iPod (`Browser::BROWSER_IPOD`) 56 | * Google.s Android(`Browser::BROWSER_ANDROID`) 57 | * Google.s Chrome(`Browser::BROWSER_CHROME`) 58 | * GoogleBot(`Browser::BROWSER_GOOGLEBOT`) 59 | * Yahoo!.s Slurp(`Browser::BROWSER_SLURP`) 60 | * W3C.s Validator(`Browser::BROWSER_W3CVALIDATOR`) 61 | * BlackBerry(`Browser::BROWSER_BLACKBERRY`) 62 | 63 | ## Operating System Detection 64 | 65 | This solution identifies the following Operating Systems: 66 | 67 | * Windows (`Browser::PLATFORM_WINDOWS`) 68 | * Windows CE (`Browser::PLATFORM_WINDOWS_CE`) 69 | * Apple (`Browser::PLATFORM_APPLE`) 70 | * Linux (`Browser::PLATFORM_LINUX`) 71 | * Android (`Browser::PLATFORM_ANDROID`) 72 | * OS/2 (`Browser::PLATFORM_OS2`) 73 | * BeOS (`Browser::PLATFORM_BEOS`) 74 | * iPhone (`Browser::PLATFORM_IPHONE`) 75 | * iPod (`Browser::PLATFORM_IPOD`) 76 | * BlackBerry (`Browser::PLATFORM_BLACKBERRY`) 77 | * FreeBSD (`Browser::PLATFORM_FREEBSD`) 78 | * OpenBSD (`Browser::PLATFORM_OPENBSD`) 79 | * NetBSD (`Browser::PLATFORM_NETBSD`) 80 | * SunOS (`Browser::PLATFORM_SUNOS`) 81 | * OpenSolaris (`Browser::PLATFORM_OPENSOLARIS`) 82 | * iPad (`Browser::PLATFORM_IPAD`) 83 | 84 | ## History and Legacy 85 | 86 | Detecting the user's browser type and version is helpful in web applications that harness some of the newer bleeding edge concepts. With the browser type and version you can notify users about challenges they may experience and suggest they upgrade before using such application. Not a great idea on a large scale public site; but on a private application this type of check can be helpful. 87 | 88 | In an active project of mine we have a pretty graphically intensive and visually appealing user interface which leverages a lot of transparent PNG files. Because we all know how great IE6 supports PNG files it was necessary for us to tell our users the lack of power their browser has in a kind way. 89 | 90 | Searching for a way to do this at the PHP layer and not at the client layer was more of a challenge than I would have guessed; the only script available was written by Gary White and Gary no longer maintains this script because of reliability. I do agree 100% with Gary about the readability; however, there are realistic reasons to desire the user.s browser and browser version and if your visitor is not echoing a false user agent we can take an educated guess. 91 | 92 | I based this solution off of Gary White's original work but have since replaced all of his original code. Either way, thank you to Gary. Sadly, I never was able to get in touch with him regarding this solution. 93 | 94 | ## Testing 95 | 96 | The testing with PHPUnit against known user agents available in tests/lists. Each file is tab delimited with the following fields: 97 | 98 | User Agent, User Agent Type, Browser, Version, Operating System, Operating System Version 99 | 100 | eg 101 | ``` 102 | Opera/9.80 (X11; Linux i686; Ubuntu/14.10) Presto/2.12.388 Version/12.16 Browser Opera 12.16 Linux Linux 103 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1 Browser Chrome 14.0.835.186 Macintosh OS X 10_7_2 104 | ``` 105 | 106 | Tests can be run by phpunit: 107 | 108 | ```bash 109 | vendor/phpunit/phpunit/phpunit 110 | ``` 111 | 112 | 113 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cbschuld/browser.php", 3 | "description": "A PHP Class to detect a user's Browser. This encapsulation provides a breakdown of the browser and the version of the browser using the browser's user-agent string. This is not a guaranteed solution but provides an overall accurate way to detect what browser a user is using.", 4 | "keywords": [ 5 | "browser", 6 | "user agent", 7 | "detection" 8 | ], 9 | "homepage": "https://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/", 10 | "license": "MIT", 11 | "authors": [ 12 | { 13 | "name": "Chris Schuld", 14 | "email": "chris@chrisschuld.com", 15 | "homepage": "https://chrisschuld.com" 16 | } 17 | ], 18 | "autoload": { 19 | "classmap": ["src/Browser.php"] 20 | }, 21 | "require": { 22 | "php": ">=7.2" 23 | }, 24 | "extra": { 25 | "branch-alias": { 26 | "dev-master": "1.9.x-dev" 27 | } 28 | }, 29 | "require-dev": { 30 | "phpunit/phpunit": "^8" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "a096aaa0aae4b86379228e7692e44e74", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "doctrine/instantiator", 12 | "version": "1.3.0", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/doctrine/instantiator.git", 16 | "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", 21 | "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "php": "^7.1" 26 | }, 27 | "require-dev": { 28 | "doctrine/coding-standard": "^6.0", 29 | "ext-pdo": "*", 30 | "ext-phar": "*", 31 | "phpbench/phpbench": "^0.13", 32 | "phpstan/phpstan-phpunit": "^0.11", 33 | "phpstan/phpstan-shim": "^0.11", 34 | "phpunit/phpunit": "^7.0" 35 | }, 36 | "type": "library", 37 | "extra": { 38 | "branch-alias": { 39 | "dev-master": "1.2.x-dev" 40 | } 41 | }, 42 | "autoload": { 43 | "psr-4": { 44 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 45 | } 46 | }, 47 | "notification-url": "https://packagist.org/downloads/", 48 | "license": [ 49 | "MIT" 50 | ], 51 | "authors": [ 52 | { 53 | "name": "Marco Pivetta", 54 | "email": "ocramius@gmail.com", 55 | "homepage": "http://ocramius.github.com/" 56 | } 57 | ], 58 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 59 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", 60 | "keywords": [ 61 | "constructor", 62 | "instantiate" 63 | ], 64 | "time": "2019-10-21T16:45:58+00:00" 65 | }, 66 | { 67 | "name": "myclabs/deep-copy", 68 | "version": "1.9.4", 69 | "source": { 70 | "type": "git", 71 | "url": "https://github.com/myclabs/DeepCopy.git", 72 | "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7" 73 | }, 74 | "dist": { 75 | "type": "zip", 76 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/579bb7356d91f9456ccd505f24ca8b667966a0a7", 77 | "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7", 78 | "shasum": "" 79 | }, 80 | "require": { 81 | "php": "^7.1" 82 | }, 83 | "replace": { 84 | "myclabs/deep-copy": "self.version" 85 | }, 86 | "require-dev": { 87 | "doctrine/collections": "^1.0", 88 | "doctrine/common": "^2.6", 89 | "phpunit/phpunit": "^7.1" 90 | }, 91 | "type": "library", 92 | "autoload": { 93 | "psr-4": { 94 | "DeepCopy\\": "src/DeepCopy/" 95 | }, 96 | "files": [ 97 | "src/DeepCopy/deep_copy.php" 98 | ] 99 | }, 100 | "notification-url": "https://packagist.org/downloads/", 101 | "license": [ 102 | "MIT" 103 | ], 104 | "description": "Create deep copies (clones) of your objects", 105 | "keywords": [ 106 | "clone", 107 | "copy", 108 | "duplicate", 109 | "object", 110 | "object graph" 111 | ], 112 | "time": "2019-12-15T19:12:40+00:00" 113 | }, 114 | { 115 | "name": "phar-io/manifest", 116 | "version": "1.0.3", 117 | "source": { 118 | "type": "git", 119 | "url": "https://github.com/phar-io/manifest.git", 120 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" 121 | }, 122 | "dist": { 123 | "type": "zip", 124 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 125 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 126 | "shasum": "" 127 | }, 128 | "require": { 129 | "ext-dom": "*", 130 | "ext-phar": "*", 131 | "phar-io/version": "^2.0", 132 | "php": "^5.6 || ^7.0" 133 | }, 134 | "type": "library", 135 | "extra": { 136 | "branch-alias": { 137 | "dev-master": "1.0.x-dev" 138 | } 139 | }, 140 | "autoload": { 141 | "classmap": [ 142 | "src/" 143 | ] 144 | }, 145 | "notification-url": "https://packagist.org/downloads/", 146 | "license": [ 147 | "BSD-3-Clause" 148 | ], 149 | "authors": [ 150 | { 151 | "name": "Arne Blankerts", 152 | "email": "arne@blankerts.de", 153 | "role": "Developer" 154 | }, 155 | { 156 | "name": "Sebastian Heuer", 157 | "email": "sebastian@phpeople.de", 158 | "role": "Developer" 159 | }, 160 | { 161 | "name": "Sebastian Bergmann", 162 | "email": "sebastian@phpunit.de", 163 | "role": "Developer" 164 | } 165 | ], 166 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 167 | "time": "2018-07-08T19:23:20+00:00" 168 | }, 169 | { 170 | "name": "phar-io/version", 171 | "version": "2.0.1", 172 | "source": { 173 | "type": "git", 174 | "url": "https://github.com/phar-io/version.git", 175 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" 176 | }, 177 | "dist": { 178 | "type": "zip", 179 | "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", 180 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", 181 | "shasum": "" 182 | }, 183 | "require": { 184 | "php": "^5.6 || ^7.0" 185 | }, 186 | "type": "library", 187 | "autoload": { 188 | "classmap": [ 189 | "src/" 190 | ] 191 | }, 192 | "notification-url": "https://packagist.org/downloads/", 193 | "license": [ 194 | "BSD-3-Clause" 195 | ], 196 | "authors": [ 197 | { 198 | "name": "Arne Blankerts", 199 | "email": "arne@blankerts.de", 200 | "role": "Developer" 201 | }, 202 | { 203 | "name": "Sebastian Heuer", 204 | "email": "sebastian@phpeople.de", 205 | "role": "Developer" 206 | }, 207 | { 208 | "name": "Sebastian Bergmann", 209 | "email": "sebastian@phpunit.de", 210 | "role": "Developer" 211 | } 212 | ], 213 | "description": "Library for handling version information and constraints", 214 | "time": "2018-07-08T19:19:57+00:00" 215 | }, 216 | { 217 | "name": "phpdocumentor/reflection-common", 218 | "version": "2.0.0", 219 | "source": { 220 | "type": "git", 221 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 222 | "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" 223 | }, 224 | "dist": { 225 | "type": "zip", 226 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", 227 | "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", 228 | "shasum": "" 229 | }, 230 | "require": { 231 | "php": ">=7.1" 232 | }, 233 | "require-dev": { 234 | "phpunit/phpunit": "~6" 235 | }, 236 | "type": "library", 237 | "extra": { 238 | "branch-alias": { 239 | "dev-master": "2.x-dev" 240 | } 241 | }, 242 | "autoload": { 243 | "psr-4": { 244 | "phpDocumentor\\Reflection\\": "src/" 245 | } 246 | }, 247 | "notification-url": "https://packagist.org/downloads/", 248 | "license": [ 249 | "MIT" 250 | ], 251 | "authors": [ 252 | { 253 | "name": "Jaap van Otterdijk", 254 | "email": "opensource@ijaap.nl" 255 | } 256 | ], 257 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 258 | "homepage": "http://www.phpdoc.org", 259 | "keywords": [ 260 | "FQSEN", 261 | "phpDocumentor", 262 | "phpdoc", 263 | "reflection", 264 | "static analysis" 265 | ], 266 | "time": "2018-08-07T13:53:10+00:00" 267 | }, 268 | { 269 | "name": "phpdocumentor/reflection-docblock", 270 | "version": "4.3.2", 271 | "source": { 272 | "type": "git", 273 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 274 | "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e" 275 | }, 276 | "dist": { 277 | "type": "zip", 278 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e", 279 | "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e", 280 | "shasum": "" 281 | }, 282 | "require": { 283 | "php": "^7.0", 284 | "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0", 285 | "phpdocumentor/type-resolver": "~0.4 || ^1.0.0", 286 | "webmozart/assert": "^1.0" 287 | }, 288 | "require-dev": { 289 | "doctrine/instantiator": "^1.0.5", 290 | "mockery/mockery": "^1.0", 291 | "phpunit/phpunit": "^6.4" 292 | }, 293 | "type": "library", 294 | "extra": { 295 | "branch-alias": { 296 | "dev-master": "4.x-dev" 297 | } 298 | }, 299 | "autoload": { 300 | "psr-4": { 301 | "phpDocumentor\\Reflection\\": [ 302 | "src/" 303 | ] 304 | } 305 | }, 306 | "notification-url": "https://packagist.org/downloads/", 307 | "license": [ 308 | "MIT" 309 | ], 310 | "authors": [ 311 | { 312 | "name": "Mike van Riel", 313 | "email": "me@mikevanriel.com" 314 | } 315 | ], 316 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 317 | "time": "2019-09-12T14:27:41+00:00" 318 | }, 319 | { 320 | "name": "phpdocumentor/type-resolver", 321 | "version": "1.0.1", 322 | "source": { 323 | "type": "git", 324 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 325 | "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9" 326 | }, 327 | "dist": { 328 | "type": "zip", 329 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", 330 | "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", 331 | "shasum": "" 332 | }, 333 | "require": { 334 | "php": "^7.1", 335 | "phpdocumentor/reflection-common": "^2.0" 336 | }, 337 | "require-dev": { 338 | "ext-tokenizer": "^7.1", 339 | "mockery/mockery": "~1", 340 | "phpunit/phpunit": "^7.0" 341 | }, 342 | "type": "library", 343 | "extra": { 344 | "branch-alias": { 345 | "dev-master": "1.x-dev" 346 | } 347 | }, 348 | "autoload": { 349 | "psr-4": { 350 | "phpDocumentor\\Reflection\\": "src" 351 | } 352 | }, 353 | "notification-url": "https://packagist.org/downloads/", 354 | "license": [ 355 | "MIT" 356 | ], 357 | "authors": [ 358 | { 359 | "name": "Mike van Riel", 360 | "email": "me@mikevanriel.com" 361 | } 362 | ], 363 | "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", 364 | "time": "2019-08-22T18:11:29+00:00" 365 | }, 366 | { 367 | "name": "phpspec/prophecy", 368 | "version": "1.10.0", 369 | "source": { 370 | "type": "git", 371 | "url": "https://github.com/phpspec/prophecy.git", 372 | "reference": "d638ebbb58daba25a6a0dc7969e1358a0e3c6682" 373 | }, 374 | "dist": { 375 | "type": "zip", 376 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d638ebbb58daba25a6a0dc7969e1358a0e3c6682", 377 | "reference": "d638ebbb58daba25a6a0dc7969e1358a0e3c6682", 378 | "shasum": "" 379 | }, 380 | "require": { 381 | "doctrine/instantiator": "^1.0.2", 382 | "php": "^5.3|^7.0", 383 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", 384 | "sebastian/comparator": "^1.2.3|^2.0|^3.0", 385 | "sebastian/recursion-context": "^1.0|^2.0|^3.0" 386 | }, 387 | "require-dev": { 388 | "phpspec/phpspec": "^2.5 || ^3.2", 389 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" 390 | }, 391 | "type": "library", 392 | "extra": { 393 | "branch-alias": { 394 | "dev-master": "1.10.x-dev" 395 | } 396 | }, 397 | "autoload": { 398 | "psr-4": { 399 | "Prophecy\\": "src/Prophecy" 400 | } 401 | }, 402 | "notification-url": "https://packagist.org/downloads/", 403 | "license": [ 404 | "MIT" 405 | ], 406 | "authors": [ 407 | { 408 | "name": "Konstantin Kudryashov", 409 | "email": "ever.zet@gmail.com", 410 | "homepage": "http://everzet.com" 411 | }, 412 | { 413 | "name": "Marcello Duarte", 414 | "email": "marcello.duarte@gmail.com" 415 | } 416 | ], 417 | "description": "Highly opinionated mocking framework for PHP 5.3+", 418 | "homepage": "https://github.com/phpspec/prophecy", 419 | "keywords": [ 420 | "Double", 421 | "Dummy", 422 | "fake", 423 | "mock", 424 | "spy", 425 | "stub" 426 | ], 427 | "time": "2019-12-17T16:54:23+00:00" 428 | }, 429 | { 430 | "name": "phpunit/php-code-coverage", 431 | "version": "7.0.10", 432 | "source": { 433 | "type": "git", 434 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 435 | "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf" 436 | }, 437 | "dist": { 438 | "type": "zip", 439 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf", 440 | "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf", 441 | "shasum": "" 442 | }, 443 | "require": { 444 | "ext-dom": "*", 445 | "ext-xmlwriter": "*", 446 | "php": "^7.2", 447 | "phpunit/php-file-iterator": "^2.0.2", 448 | "phpunit/php-text-template": "^1.2.1", 449 | "phpunit/php-token-stream": "^3.1.1", 450 | "sebastian/code-unit-reverse-lookup": "^1.0.1", 451 | "sebastian/environment": "^4.2.2", 452 | "sebastian/version": "^2.0.1", 453 | "theseer/tokenizer": "^1.1.3" 454 | }, 455 | "require-dev": { 456 | "phpunit/phpunit": "^8.2.2" 457 | }, 458 | "suggest": { 459 | "ext-xdebug": "^2.7.2" 460 | }, 461 | "type": "library", 462 | "extra": { 463 | "branch-alias": { 464 | "dev-master": "7.0-dev" 465 | } 466 | }, 467 | "autoload": { 468 | "classmap": [ 469 | "src/" 470 | ] 471 | }, 472 | "notification-url": "https://packagist.org/downloads/", 473 | "license": [ 474 | "BSD-3-Clause" 475 | ], 476 | "authors": [ 477 | { 478 | "name": "Sebastian Bergmann", 479 | "email": "sebastian@phpunit.de", 480 | "role": "lead" 481 | } 482 | ], 483 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 484 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 485 | "keywords": [ 486 | "coverage", 487 | "testing", 488 | "xunit" 489 | ], 490 | "time": "2019-11-20T13:55:58+00:00" 491 | }, 492 | { 493 | "name": "phpunit/php-file-iterator", 494 | "version": "2.0.2", 495 | "source": { 496 | "type": "git", 497 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 498 | "reference": "050bedf145a257b1ff02746c31894800e5122946" 499 | }, 500 | "dist": { 501 | "type": "zip", 502 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", 503 | "reference": "050bedf145a257b1ff02746c31894800e5122946", 504 | "shasum": "" 505 | }, 506 | "require": { 507 | "php": "^7.1" 508 | }, 509 | "require-dev": { 510 | "phpunit/phpunit": "^7.1" 511 | }, 512 | "type": "library", 513 | "extra": { 514 | "branch-alias": { 515 | "dev-master": "2.0.x-dev" 516 | } 517 | }, 518 | "autoload": { 519 | "classmap": [ 520 | "src/" 521 | ] 522 | }, 523 | "notification-url": "https://packagist.org/downloads/", 524 | "license": [ 525 | "BSD-3-Clause" 526 | ], 527 | "authors": [ 528 | { 529 | "name": "Sebastian Bergmann", 530 | "email": "sebastian@phpunit.de", 531 | "role": "lead" 532 | } 533 | ], 534 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 535 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 536 | "keywords": [ 537 | "filesystem", 538 | "iterator" 539 | ], 540 | "time": "2018-09-13T20:33:42+00:00" 541 | }, 542 | { 543 | "name": "phpunit/php-text-template", 544 | "version": "1.2.1", 545 | "source": { 546 | "type": "git", 547 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 548 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 549 | }, 550 | "dist": { 551 | "type": "zip", 552 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 553 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 554 | "shasum": "" 555 | }, 556 | "require": { 557 | "php": ">=5.3.3" 558 | }, 559 | "type": "library", 560 | "autoload": { 561 | "classmap": [ 562 | "src/" 563 | ] 564 | }, 565 | "notification-url": "https://packagist.org/downloads/", 566 | "license": [ 567 | "BSD-3-Clause" 568 | ], 569 | "authors": [ 570 | { 571 | "name": "Sebastian Bergmann", 572 | "email": "sebastian@phpunit.de", 573 | "role": "lead" 574 | } 575 | ], 576 | "description": "Simple template engine.", 577 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 578 | "keywords": [ 579 | "template" 580 | ], 581 | "time": "2015-06-21T13:50:34+00:00" 582 | }, 583 | { 584 | "name": "phpunit/php-timer", 585 | "version": "2.1.2", 586 | "source": { 587 | "type": "git", 588 | "url": "https://github.com/sebastianbergmann/php-timer.git", 589 | "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" 590 | }, 591 | "dist": { 592 | "type": "zip", 593 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", 594 | "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", 595 | "shasum": "" 596 | }, 597 | "require": { 598 | "php": "^7.1" 599 | }, 600 | "require-dev": { 601 | "phpunit/phpunit": "^7.0" 602 | }, 603 | "type": "library", 604 | "extra": { 605 | "branch-alias": { 606 | "dev-master": "2.1-dev" 607 | } 608 | }, 609 | "autoload": { 610 | "classmap": [ 611 | "src/" 612 | ] 613 | }, 614 | "notification-url": "https://packagist.org/downloads/", 615 | "license": [ 616 | "BSD-3-Clause" 617 | ], 618 | "authors": [ 619 | { 620 | "name": "Sebastian Bergmann", 621 | "email": "sebastian@phpunit.de", 622 | "role": "lead" 623 | } 624 | ], 625 | "description": "Utility class for timing", 626 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 627 | "keywords": [ 628 | "timer" 629 | ], 630 | "time": "2019-06-07T04:22:29+00:00" 631 | }, 632 | { 633 | "name": "phpunit/php-token-stream", 634 | "version": "3.1.1", 635 | "source": { 636 | "type": "git", 637 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 638 | "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" 639 | }, 640 | "dist": { 641 | "type": "zip", 642 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", 643 | "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", 644 | "shasum": "" 645 | }, 646 | "require": { 647 | "ext-tokenizer": "*", 648 | "php": "^7.1" 649 | }, 650 | "require-dev": { 651 | "phpunit/phpunit": "^7.0" 652 | }, 653 | "type": "library", 654 | "extra": { 655 | "branch-alias": { 656 | "dev-master": "3.1-dev" 657 | } 658 | }, 659 | "autoload": { 660 | "classmap": [ 661 | "src/" 662 | ] 663 | }, 664 | "notification-url": "https://packagist.org/downloads/", 665 | "license": [ 666 | "BSD-3-Clause" 667 | ], 668 | "authors": [ 669 | { 670 | "name": "Sebastian Bergmann", 671 | "email": "sebastian@phpunit.de" 672 | } 673 | ], 674 | "description": "Wrapper around PHP's tokenizer extension.", 675 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 676 | "keywords": [ 677 | "tokenizer" 678 | ], 679 | "time": "2019-09-17T06:23:10+00:00" 680 | }, 681 | { 682 | "name": "phpunit/phpunit", 683 | "version": "8.5.0", 684 | "source": { 685 | "type": "git", 686 | "url": "https://github.com/sebastianbergmann/phpunit.git", 687 | "reference": "3ee1c1fd6fc264480c25b6fb8285edefe1702dab" 688 | }, 689 | "dist": { 690 | "type": "zip", 691 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3ee1c1fd6fc264480c25b6fb8285edefe1702dab", 692 | "reference": "3ee1c1fd6fc264480c25b6fb8285edefe1702dab", 693 | "shasum": "" 694 | }, 695 | "require": { 696 | "doctrine/instantiator": "^1.2.0", 697 | "ext-dom": "*", 698 | "ext-json": "*", 699 | "ext-libxml": "*", 700 | "ext-mbstring": "*", 701 | "ext-xml": "*", 702 | "ext-xmlwriter": "*", 703 | "myclabs/deep-copy": "^1.9.1", 704 | "phar-io/manifest": "^1.0.3", 705 | "phar-io/version": "^2.0.1", 706 | "php": "^7.2", 707 | "phpspec/prophecy": "^1.8.1", 708 | "phpunit/php-code-coverage": "^7.0.7", 709 | "phpunit/php-file-iterator": "^2.0.2", 710 | "phpunit/php-text-template": "^1.2.1", 711 | "phpunit/php-timer": "^2.1.2", 712 | "sebastian/comparator": "^3.0.2", 713 | "sebastian/diff": "^3.0.2", 714 | "sebastian/environment": "^4.2.2", 715 | "sebastian/exporter": "^3.1.1", 716 | "sebastian/global-state": "^3.0.0", 717 | "sebastian/object-enumerator": "^3.0.3", 718 | "sebastian/resource-operations": "^2.0.1", 719 | "sebastian/type": "^1.1.3", 720 | "sebastian/version": "^2.0.1" 721 | }, 722 | "require-dev": { 723 | "ext-pdo": "*" 724 | }, 725 | "suggest": { 726 | "ext-soap": "*", 727 | "ext-xdebug": "*", 728 | "phpunit/php-invoker": "^2.0.0" 729 | }, 730 | "bin": [ 731 | "phpunit" 732 | ], 733 | "type": "library", 734 | "extra": { 735 | "branch-alias": { 736 | "dev-master": "8.5-dev" 737 | } 738 | }, 739 | "autoload": { 740 | "classmap": [ 741 | "src/" 742 | ] 743 | }, 744 | "notification-url": "https://packagist.org/downloads/", 745 | "license": [ 746 | "BSD-3-Clause" 747 | ], 748 | "authors": [ 749 | { 750 | "name": "Sebastian Bergmann", 751 | "email": "sebastian@phpunit.de", 752 | "role": "lead" 753 | } 754 | ], 755 | "description": "The PHP Unit Testing framework.", 756 | "homepage": "https://phpunit.de/", 757 | "keywords": [ 758 | "phpunit", 759 | "testing", 760 | "xunit" 761 | ], 762 | "time": "2019-12-06T05:41:38+00:00" 763 | }, 764 | { 765 | "name": "sebastian/code-unit-reverse-lookup", 766 | "version": "1.0.1", 767 | "source": { 768 | "type": "git", 769 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 770 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" 771 | }, 772 | "dist": { 773 | "type": "zip", 774 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 775 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 776 | "shasum": "" 777 | }, 778 | "require": { 779 | "php": "^5.6 || ^7.0" 780 | }, 781 | "require-dev": { 782 | "phpunit/phpunit": "^5.7 || ^6.0" 783 | }, 784 | "type": "library", 785 | "extra": { 786 | "branch-alias": { 787 | "dev-master": "1.0.x-dev" 788 | } 789 | }, 790 | "autoload": { 791 | "classmap": [ 792 | "src/" 793 | ] 794 | }, 795 | "notification-url": "https://packagist.org/downloads/", 796 | "license": [ 797 | "BSD-3-Clause" 798 | ], 799 | "authors": [ 800 | { 801 | "name": "Sebastian Bergmann", 802 | "email": "sebastian@phpunit.de" 803 | } 804 | ], 805 | "description": "Looks up which function or method a line of code belongs to", 806 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 807 | "time": "2017-03-04T06:30:41+00:00" 808 | }, 809 | { 810 | "name": "sebastian/comparator", 811 | "version": "3.0.2", 812 | "source": { 813 | "type": "git", 814 | "url": "https://github.com/sebastianbergmann/comparator.git", 815 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" 816 | }, 817 | "dist": { 818 | "type": "zip", 819 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 820 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 821 | "shasum": "" 822 | }, 823 | "require": { 824 | "php": "^7.1", 825 | "sebastian/diff": "^3.0", 826 | "sebastian/exporter": "^3.1" 827 | }, 828 | "require-dev": { 829 | "phpunit/phpunit": "^7.1" 830 | }, 831 | "type": "library", 832 | "extra": { 833 | "branch-alias": { 834 | "dev-master": "3.0-dev" 835 | } 836 | }, 837 | "autoload": { 838 | "classmap": [ 839 | "src/" 840 | ] 841 | }, 842 | "notification-url": "https://packagist.org/downloads/", 843 | "license": [ 844 | "BSD-3-Clause" 845 | ], 846 | "authors": [ 847 | { 848 | "name": "Jeff Welch", 849 | "email": "whatthejeff@gmail.com" 850 | }, 851 | { 852 | "name": "Volker Dusch", 853 | "email": "github@wallbash.com" 854 | }, 855 | { 856 | "name": "Bernhard Schussek", 857 | "email": "bschussek@2bepublished.at" 858 | }, 859 | { 860 | "name": "Sebastian Bergmann", 861 | "email": "sebastian@phpunit.de" 862 | } 863 | ], 864 | "description": "Provides the functionality to compare PHP values for equality", 865 | "homepage": "https://github.com/sebastianbergmann/comparator", 866 | "keywords": [ 867 | "comparator", 868 | "compare", 869 | "equality" 870 | ], 871 | "time": "2018-07-12T15:12:46+00:00" 872 | }, 873 | { 874 | "name": "sebastian/diff", 875 | "version": "3.0.2", 876 | "source": { 877 | "type": "git", 878 | "url": "https://github.com/sebastianbergmann/diff.git", 879 | "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" 880 | }, 881 | "dist": { 882 | "type": "zip", 883 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", 884 | "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", 885 | "shasum": "" 886 | }, 887 | "require": { 888 | "php": "^7.1" 889 | }, 890 | "require-dev": { 891 | "phpunit/phpunit": "^7.5 || ^8.0", 892 | "symfony/process": "^2 || ^3.3 || ^4" 893 | }, 894 | "type": "library", 895 | "extra": { 896 | "branch-alias": { 897 | "dev-master": "3.0-dev" 898 | } 899 | }, 900 | "autoload": { 901 | "classmap": [ 902 | "src/" 903 | ] 904 | }, 905 | "notification-url": "https://packagist.org/downloads/", 906 | "license": [ 907 | "BSD-3-Clause" 908 | ], 909 | "authors": [ 910 | { 911 | "name": "Kore Nordmann", 912 | "email": "mail@kore-nordmann.de" 913 | }, 914 | { 915 | "name": "Sebastian Bergmann", 916 | "email": "sebastian@phpunit.de" 917 | } 918 | ], 919 | "description": "Diff implementation", 920 | "homepage": "https://github.com/sebastianbergmann/diff", 921 | "keywords": [ 922 | "diff", 923 | "udiff", 924 | "unidiff", 925 | "unified diff" 926 | ], 927 | "time": "2019-02-04T06:01:07+00:00" 928 | }, 929 | { 930 | "name": "sebastian/environment", 931 | "version": "4.2.3", 932 | "source": { 933 | "type": "git", 934 | "url": "https://github.com/sebastianbergmann/environment.git", 935 | "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" 936 | }, 937 | "dist": { 938 | "type": "zip", 939 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", 940 | "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", 941 | "shasum": "" 942 | }, 943 | "require": { 944 | "php": "^7.1" 945 | }, 946 | "require-dev": { 947 | "phpunit/phpunit": "^7.5" 948 | }, 949 | "suggest": { 950 | "ext-posix": "*" 951 | }, 952 | "type": "library", 953 | "extra": { 954 | "branch-alias": { 955 | "dev-master": "4.2-dev" 956 | } 957 | }, 958 | "autoload": { 959 | "classmap": [ 960 | "src/" 961 | ] 962 | }, 963 | "notification-url": "https://packagist.org/downloads/", 964 | "license": [ 965 | "BSD-3-Clause" 966 | ], 967 | "authors": [ 968 | { 969 | "name": "Sebastian Bergmann", 970 | "email": "sebastian@phpunit.de" 971 | } 972 | ], 973 | "description": "Provides functionality to handle HHVM/PHP environments", 974 | "homepage": "http://www.github.com/sebastianbergmann/environment", 975 | "keywords": [ 976 | "Xdebug", 977 | "environment", 978 | "hhvm" 979 | ], 980 | "time": "2019-11-20T08:46:58+00:00" 981 | }, 982 | { 983 | "name": "sebastian/exporter", 984 | "version": "3.1.2", 985 | "source": { 986 | "type": "git", 987 | "url": "https://github.com/sebastianbergmann/exporter.git", 988 | "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" 989 | }, 990 | "dist": { 991 | "type": "zip", 992 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", 993 | "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", 994 | "shasum": "" 995 | }, 996 | "require": { 997 | "php": "^7.0", 998 | "sebastian/recursion-context": "^3.0" 999 | }, 1000 | "require-dev": { 1001 | "ext-mbstring": "*", 1002 | "phpunit/phpunit": "^6.0" 1003 | }, 1004 | "type": "library", 1005 | "extra": { 1006 | "branch-alias": { 1007 | "dev-master": "3.1.x-dev" 1008 | } 1009 | }, 1010 | "autoload": { 1011 | "classmap": [ 1012 | "src/" 1013 | ] 1014 | }, 1015 | "notification-url": "https://packagist.org/downloads/", 1016 | "license": [ 1017 | "BSD-3-Clause" 1018 | ], 1019 | "authors": [ 1020 | { 1021 | "name": "Sebastian Bergmann", 1022 | "email": "sebastian@phpunit.de" 1023 | }, 1024 | { 1025 | "name": "Jeff Welch", 1026 | "email": "whatthejeff@gmail.com" 1027 | }, 1028 | { 1029 | "name": "Volker Dusch", 1030 | "email": "github@wallbash.com" 1031 | }, 1032 | { 1033 | "name": "Adam Harvey", 1034 | "email": "aharvey@php.net" 1035 | }, 1036 | { 1037 | "name": "Bernhard Schussek", 1038 | "email": "bschussek@gmail.com" 1039 | } 1040 | ], 1041 | "description": "Provides the functionality to export PHP variables for visualization", 1042 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 1043 | "keywords": [ 1044 | "export", 1045 | "exporter" 1046 | ], 1047 | "time": "2019-09-14T09:02:43+00:00" 1048 | }, 1049 | { 1050 | "name": "sebastian/global-state", 1051 | "version": "3.0.0", 1052 | "source": { 1053 | "type": "git", 1054 | "url": "https://github.com/sebastianbergmann/global-state.git", 1055 | "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4" 1056 | }, 1057 | "dist": { 1058 | "type": "zip", 1059 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", 1060 | "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", 1061 | "shasum": "" 1062 | }, 1063 | "require": { 1064 | "php": "^7.2", 1065 | "sebastian/object-reflector": "^1.1.1", 1066 | "sebastian/recursion-context": "^3.0" 1067 | }, 1068 | "require-dev": { 1069 | "ext-dom": "*", 1070 | "phpunit/phpunit": "^8.0" 1071 | }, 1072 | "suggest": { 1073 | "ext-uopz": "*" 1074 | }, 1075 | "type": "library", 1076 | "extra": { 1077 | "branch-alias": { 1078 | "dev-master": "3.0-dev" 1079 | } 1080 | }, 1081 | "autoload": { 1082 | "classmap": [ 1083 | "src/" 1084 | ] 1085 | }, 1086 | "notification-url": "https://packagist.org/downloads/", 1087 | "license": [ 1088 | "BSD-3-Clause" 1089 | ], 1090 | "authors": [ 1091 | { 1092 | "name": "Sebastian Bergmann", 1093 | "email": "sebastian@phpunit.de" 1094 | } 1095 | ], 1096 | "description": "Snapshotting of global state", 1097 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 1098 | "keywords": [ 1099 | "global state" 1100 | ], 1101 | "time": "2019-02-01T05:30:01+00:00" 1102 | }, 1103 | { 1104 | "name": "sebastian/object-enumerator", 1105 | "version": "3.0.3", 1106 | "source": { 1107 | "type": "git", 1108 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 1109 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" 1110 | }, 1111 | "dist": { 1112 | "type": "zip", 1113 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", 1114 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", 1115 | "shasum": "" 1116 | }, 1117 | "require": { 1118 | "php": "^7.0", 1119 | "sebastian/object-reflector": "^1.1.1", 1120 | "sebastian/recursion-context": "^3.0" 1121 | }, 1122 | "require-dev": { 1123 | "phpunit/phpunit": "^6.0" 1124 | }, 1125 | "type": "library", 1126 | "extra": { 1127 | "branch-alias": { 1128 | "dev-master": "3.0.x-dev" 1129 | } 1130 | }, 1131 | "autoload": { 1132 | "classmap": [ 1133 | "src/" 1134 | ] 1135 | }, 1136 | "notification-url": "https://packagist.org/downloads/", 1137 | "license": [ 1138 | "BSD-3-Clause" 1139 | ], 1140 | "authors": [ 1141 | { 1142 | "name": "Sebastian Bergmann", 1143 | "email": "sebastian@phpunit.de" 1144 | } 1145 | ], 1146 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 1147 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 1148 | "time": "2017-08-03T12:35:26+00:00" 1149 | }, 1150 | { 1151 | "name": "sebastian/object-reflector", 1152 | "version": "1.1.1", 1153 | "source": { 1154 | "type": "git", 1155 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 1156 | "reference": "773f97c67f28de00d397be301821b06708fca0be" 1157 | }, 1158 | "dist": { 1159 | "type": "zip", 1160 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", 1161 | "reference": "773f97c67f28de00d397be301821b06708fca0be", 1162 | "shasum": "" 1163 | }, 1164 | "require": { 1165 | "php": "^7.0" 1166 | }, 1167 | "require-dev": { 1168 | "phpunit/phpunit": "^6.0" 1169 | }, 1170 | "type": "library", 1171 | "extra": { 1172 | "branch-alias": { 1173 | "dev-master": "1.1-dev" 1174 | } 1175 | }, 1176 | "autoload": { 1177 | "classmap": [ 1178 | "src/" 1179 | ] 1180 | }, 1181 | "notification-url": "https://packagist.org/downloads/", 1182 | "license": [ 1183 | "BSD-3-Clause" 1184 | ], 1185 | "authors": [ 1186 | { 1187 | "name": "Sebastian Bergmann", 1188 | "email": "sebastian@phpunit.de" 1189 | } 1190 | ], 1191 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 1192 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 1193 | "time": "2017-03-29T09:07:27+00:00" 1194 | }, 1195 | { 1196 | "name": "sebastian/recursion-context", 1197 | "version": "3.0.0", 1198 | "source": { 1199 | "type": "git", 1200 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 1201 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" 1202 | }, 1203 | "dist": { 1204 | "type": "zip", 1205 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 1206 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 1207 | "shasum": "" 1208 | }, 1209 | "require": { 1210 | "php": "^7.0" 1211 | }, 1212 | "require-dev": { 1213 | "phpunit/phpunit": "^6.0" 1214 | }, 1215 | "type": "library", 1216 | "extra": { 1217 | "branch-alias": { 1218 | "dev-master": "3.0.x-dev" 1219 | } 1220 | }, 1221 | "autoload": { 1222 | "classmap": [ 1223 | "src/" 1224 | ] 1225 | }, 1226 | "notification-url": "https://packagist.org/downloads/", 1227 | "license": [ 1228 | "BSD-3-Clause" 1229 | ], 1230 | "authors": [ 1231 | { 1232 | "name": "Jeff Welch", 1233 | "email": "whatthejeff@gmail.com" 1234 | }, 1235 | { 1236 | "name": "Sebastian Bergmann", 1237 | "email": "sebastian@phpunit.de" 1238 | }, 1239 | { 1240 | "name": "Adam Harvey", 1241 | "email": "aharvey@php.net" 1242 | } 1243 | ], 1244 | "description": "Provides functionality to recursively process PHP variables", 1245 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 1246 | "time": "2017-03-03T06:23:57+00:00" 1247 | }, 1248 | { 1249 | "name": "sebastian/resource-operations", 1250 | "version": "2.0.1", 1251 | "source": { 1252 | "type": "git", 1253 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 1254 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" 1255 | }, 1256 | "dist": { 1257 | "type": "zip", 1258 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 1259 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 1260 | "shasum": "" 1261 | }, 1262 | "require": { 1263 | "php": "^7.1" 1264 | }, 1265 | "type": "library", 1266 | "extra": { 1267 | "branch-alias": { 1268 | "dev-master": "2.0-dev" 1269 | } 1270 | }, 1271 | "autoload": { 1272 | "classmap": [ 1273 | "src/" 1274 | ] 1275 | }, 1276 | "notification-url": "https://packagist.org/downloads/", 1277 | "license": [ 1278 | "BSD-3-Clause" 1279 | ], 1280 | "authors": [ 1281 | { 1282 | "name": "Sebastian Bergmann", 1283 | "email": "sebastian@phpunit.de" 1284 | } 1285 | ], 1286 | "description": "Provides a list of PHP built-in functions that operate on resources", 1287 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 1288 | "time": "2018-10-04T04:07:39+00:00" 1289 | }, 1290 | { 1291 | "name": "sebastian/type", 1292 | "version": "1.1.3", 1293 | "source": { 1294 | "type": "git", 1295 | "url": "https://github.com/sebastianbergmann/type.git", 1296 | "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3" 1297 | }, 1298 | "dist": { 1299 | "type": "zip", 1300 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3", 1301 | "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3", 1302 | "shasum": "" 1303 | }, 1304 | "require": { 1305 | "php": "^7.2" 1306 | }, 1307 | "require-dev": { 1308 | "phpunit/phpunit": "^8.2" 1309 | }, 1310 | "type": "library", 1311 | "extra": { 1312 | "branch-alias": { 1313 | "dev-master": "1.1-dev" 1314 | } 1315 | }, 1316 | "autoload": { 1317 | "classmap": [ 1318 | "src/" 1319 | ] 1320 | }, 1321 | "notification-url": "https://packagist.org/downloads/", 1322 | "license": [ 1323 | "BSD-3-Clause" 1324 | ], 1325 | "authors": [ 1326 | { 1327 | "name": "Sebastian Bergmann", 1328 | "email": "sebastian@phpunit.de", 1329 | "role": "lead" 1330 | } 1331 | ], 1332 | "description": "Collection of value objects that represent the types of the PHP type system", 1333 | "homepage": "https://github.com/sebastianbergmann/type", 1334 | "time": "2019-07-02T08:10:15+00:00" 1335 | }, 1336 | { 1337 | "name": "sebastian/version", 1338 | "version": "2.0.1", 1339 | "source": { 1340 | "type": "git", 1341 | "url": "https://github.com/sebastianbergmann/version.git", 1342 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" 1343 | }, 1344 | "dist": { 1345 | "type": "zip", 1346 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", 1347 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", 1348 | "shasum": "" 1349 | }, 1350 | "require": { 1351 | "php": ">=5.6" 1352 | }, 1353 | "type": "library", 1354 | "extra": { 1355 | "branch-alias": { 1356 | "dev-master": "2.0.x-dev" 1357 | } 1358 | }, 1359 | "autoload": { 1360 | "classmap": [ 1361 | "src/" 1362 | ] 1363 | }, 1364 | "notification-url": "https://packagist.org/downloads/", 1365 | "license": [ 1366 | "BSD-3-Clause" 1367 | ], 1368 | "authors": [ 1369 | { 1370 | "name": "Sebastian Bergmann", 1371 | "email": "sebastian@phpunit.de", 1372 | "role": "lead" 1373 | } 1374 | ], 1375 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 1376 | "homepage": "https://github.com/sebastianbergmann/version", 1377 | "time": "2016-10-03T07:35:21+00:00" 1378 | }, 1379 | { 1380 | "name": "symfony/polyfill-ctype", 1381 | "version": "v1.13.1", 1382 | "source": { 1383 | "type": "git", 1384 | "url": "https://github.com/symfony/polyfill-ctype.git", 1385 | "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3" 1386 | }, 1387 | "dist": { 1388 | "type": "zip", 1389 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", 1390 | "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", 1391 | "shasum": "" 1392 | }, 1393 | "require": { 1394 | "php": ">=5.3.3" 1395 | }, 1396 | "suggest": { 1397 | "ext-ctype": "For best performance" 1398 | }, 1399 | "type": "library", 1400 | "extra": { 1401 | "branch-alias": { 1402 | "dev-master": "1.13-dev" 1403 | } 1404 | }, 1405 | "autoload": { 1406 | "psr-4": { 1407 | "Symfony\\Polyfill\\Ctype\\": "" 1408 | }, 1409 | "files": [ 1410 | "bootstrap.php" 1411 | ] 1412 | }, 1413 | "notification-url": "https://packagist.org/downloads/", 1414 | "license": [ 1415 | "MIT" 1416 | ], 1417 | "authors": [ 1418 | { 1419 | "name": "Gert de Pagter", 1420 | "email": "BackEndTea@gmail.com" 1421 | }, 1422 | { 1423 | "name": "Symfony Community", 1424 | "homepage": "https://symfony.com/contributors" 1425 | } 1426 | ], 1427 | "description": "Symfony polyfill for ctype functions", 1428 | "homepage": "https://symfony.com", 1429 | "keywords": [ 1430 | "compatibility", 1431 | "ctype", 1432 | "polyfill", 1433 | "portable" 1434 | ], 1435 | "time": "2019-11-27T13:56:44+00:00" 1436 | }, 1437 | { 1438 | "name": "theseer/tokenizer", 1439 | "version": "1.1.3", 1440 | "source": { 1441 | "type": "git", 1442 | "url": "https://github.com/theseer/tokenizer.git", 1443 | "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" 1444 | }, 1445 | "dist": { 1446 | "type": "zip", 1447 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", 1448 | "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", 1449 | "shasum": "" 1450 | }, 1451 | "require": { 1452 | "ext-dom": "*", 1453 | "ext-tokenizer": "*", 1454 | "ext-xmlwriter": "*", 1455 | "php": "^7.0" 1456 | }, 1457 | "type": "library", 1458 | "autoload": { 1459 | "classmap": [ 1460 | "src/" 1461 | ] 1462 | }, 1463 | "notification-url": "https://packagist.org/downloads/", 1464 | "license": [ 1465 | "BSD-3-Clause" 1466 | ], 1467 | "authors": [ 1468 | { 1469 | "name": "Arne Blankerts", 1470 | "email": "arne@blankerts.de", 1471 | "role": "Developer" 1472 | } 1473 | ], 1474 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 1475 | "time": "2019-06-13T22:48:21+00:00" 1476 | }, 1477 | { 1478 | "name": "webmozart/assert", 1479 | "version": "1.6.0", 1480 | "source": { 1481 | "type": "git", 1482 | "url": "https://github.com/webmozart/assert.git", 1483 | "reference": "573381c0a64f155a0d9a23f4b0c797194805b925" 1484 | }, 1485 | "dist": { 1486 | "type": "zip", 1487 | "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925", 1488 | "reference": "573381c0a64f155a0d9a23f4b0c797194805b925", 1489 | "shasum": "" 1490 | }, 1491 | "require": { 1492 | "php": "^5.3.3 || ^7.0", 1493 | "symfony/polyfill-ctype": "^1.8" 1494 | }, 1495 | "conflict": { 1496 | "vimeo/psalm": "<3.6.0" 1497 | }, 1498 | "require-dev": { 1499 | "phpunit/phpunit": "^4.8.36 || ^7.5.13" 1500 | }, 1501 | "type": "library", 1502 | "autoload": { 1503 | "psr-4": { 1504 | "Webmozart\\Assert\\": "src/" 1505 | } 1506 | }, 1507 | "notification-url": "https://packagist.org/downloads/", 1508 | "license": [ 1509 | "MIT" 1510 | ], 1511 | "authors": [ 1512 | { 1513 | "name": "Bernhard Schussek", 1514 | "email": "bschussek@gmail.com" 1515 | } 1516 | ], 1517 | "description": "Assertions to validate method input/output with nice error messages.", 1518 | "keywords": [ 1519 | "assert", 1520 | "check", 1521 | "validate" 1522 | ], 1523 | "time": "2019-11-24T13:36:37+00:00" 1524 | } 1525 | ], 1526 | "aliases": [], 1527 | "minimum-stability": "stable", 1528 | "stability-flags": [], 1529 | "prefer-stable": false, 1530 | "prefer-lowest": false, 1531 | "platform": { 1532 | "php": ">=7.2" 1533 | }, 1534 | "platform-dev": [] 1535 | } 1536 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ./tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/BraveTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentBraveProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/brave.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/ChromeTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentChromeProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/chrome.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/CurlWgetTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($expected_browser, $browser->getBrowser()); 23 | $this->assertEquals($expected_version, $browser->getVersion()); 24 | } 25 | public function dpUserAgents () 26 | { 27 | return array( 28 | array("curl/7.37.1", Browser::BROWSER_CURL, '7.37.1'), 29 | array("Wget/1.16 (darwin14.0.0)", Browser::BROWSER_WGET, '1.16'), 30 | ); 31 | } 32 | } -------------------------------------------------------------------------------- /tests/EdgeTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentEdgeProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/edge.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/FirefoxMobileTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 25 | $this->assertSame($version, $b->getVersion()); 26 | $this->assertTrue($b->isMobile()); 27 | } 28 | 29 | public function userAgentFirefoxMobileProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/firefox-mobile.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/FirefoxTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentFirefoxProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/firefox.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/InternetExplorerTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentInternetExplorerProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/ie.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/OperaTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentOperaProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/chrome.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/PalemoonTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentPalemoonProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/palemoon.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/StaticTest.php: -------------------------------------------------------------------------------- 1 | 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', 15 | 'browser' => Browser::BROWSER_IE, 16 | 'version' => '11.0', 17 | 'platform' => Browser::PLATFORM_WINDOWS, 18 | 'mobile' => false, 19 | ], 20 | [ 21 | 'useragent' => 'Mozilla/5.0 (Android 4.4; Mobile; rv:41.0) Gecko/41.0 Firefox/41.0', 22 | 'browser' => Browser::BROWSER_FIREFOX, 23 | 'version' => '41.0', 24 | 'platform' => Browser::PLATFORM_ANDROID, 25 | 'mobile' => true, 26 | ], 27 | [ 28 | 'useragent' => 'Mozilla/5.0 (Android 4.4; Tablet; rv:41.0) Gecko/41.0 Firefox/41.0', 29 | 'browser' => Browser::BROWSER_FIREFOX, 30 | 'version' => '41.0', 31 | 'platform' => Browser::PLATFORM_ANDROID, 32 | 'mobile' => true, 33 | ], 34 | [ 35 | 'useragent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_4 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) CriOS/28.0.1500.16 Mobile/10B350 Safari/8536.25', 36 | 'browser' => Browser::BROWSER_CHROME, 37 | 'version' => '28.0.1500.16', 38 | 'platform' => Browser::PLATFORM_IPHONE, 39 | 'mobile' => true, 40 | ], 41 | [ 42 | 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.11 (KHTML, like Gecko) DumpRenderTree/0.0.0.0 Safari/536.11', 43 | 'browser' => Browser::BROWSER_SAFARI, 44 | 'version' => 'unknown', // all we really know here is that it's based on webkit; we do not really have a version number to deal with 45 | 'platform' => Browser::PLATFORM_LINUX, 46 | 'mobile' => false, 47 | ], 48 | [ 49 | 'useragent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) CriOS/28.0.1500.16 Mobile/10B142 Safari/8536.25', 50 | 'browser' => Browser::BROWSER_CHROME, 51 | 'version' => '28.0.1500.16', 52 | 'platform' => Browser::PLATFORM_IPHONE, 53 | 'mobile' => true, 54 | ], 55 | [ 56 | 'useragent' => 'Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Radar; Orange)', 57 | 'browser' => Browser::BROWSER_POCKET_IE, 58 | 'version' => '9.0', 59 | 'platform' => Browser::PLATFORM_WINDOWS, 60 | 'mobile' => true, 61 | ], 62 | ]; 63 | 64 | } 65 | 66 | /** 67 | * @dataProvider userAgentStaticProvider 68 | * @param $userAgent string Browser's User Agent 69 | * @param $type string Type of the Browser 70 | * @param $browser string Name of the Browser 71 | * @param $version string Version of the Browser 72 | * @param $osType string Type of operating system associated with the Browser 73 | * @param $osName string Name of the operating system associated with the Browser, typically has the version number 74 | * @param $osVersionName string Version of the Operating System (name) 75 | * @param $osVersionNumber string Version of the Operating System (number) 76 | */ 77 | public function testStaticUserAgent($userAgent,$browser,$version,$platform,$mobile) 78 | { 79 | $b = new Browser($userAgent); 80 | 81 | $this->assertSame((string)$browser, $b->getBrowser()); 82 | $this->assertSame((string)$version, $b->getVersion()); 83 | $this->assertSame((string)$platform, $b->getPlatform()); 84 | $this->assertSame((boolean)$mobile, $b->isMobile()); 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /tests/TabDelimitedFileIterator.php: -------------------------------------------------------------------------------- 1 | file = fopen($file, 'r'); 13 | } 14 | 15 | public function __destruct() 16 | { 17 | fclose($this->file); 18 | } 19 | 20 | public function rewind() 21 | { 22 | rewind($this->file); 23 | $this->current = fgetcsv($this->file,0,"\t"); 24 | $this->key = 0; 25 | } 26 | 27 | public function valid() 28 | { 29 | return !feof($this->file); 30 | } 31 | 32 | public function key() 33 | { 34 | return $this->key; 35 | } 36 | 37 | public function current() 38 | { 39 | return $this->current; 40 | } 41 | 42 | public function next() 43 | { 44 | $this->current = fgetcsv($this->file,0,"\t"); 45 | $this->key++; 46 | } 47 | } -------------------------------------------------------------------------------- /tests/UCBrowserTest.php: -------------------------------------------------------------------------------- 1 | assertSame($browser, $b->getBrowser()); 26 | $this->assertSame($version, $b->getVersion()); 27 | } 28 | 29 | public function userAgentUCBrowserProvider() 30 | { 31 | return new TabDelimitedFileIterator(dirname(__FILE__).'/lists/ucbrowser.txt'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/lists/brave.txt: -------------------------------------------------------------------------------- 1 | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) brave/0.8.3 Chrome/49.0.2623.108 Brave/0.37.3 Safari/537.36" Browser Brave 0.8.3 Windows Windows 10 2 | "Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/69.0.3497.100 Mobile Safari/537.36" Browser Brave Android Android 8.0.0 3 | "Mozilla/5.0 (Linux; Android 7.0; SM-G955F Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/68.0.3440.91 Mobile Safari/537.36" Browser Brave Android Android 7 4 | "Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36 Brave/74" Browser Brave 74 Android Android 9 5 | "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) brave/0.8.3 Chrome/49.0.2623.108 Brave/0.37.3 Safari/537.36" Browser Brave 0.8.3 Windows Windows 7 6 | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) brave/0.7.10 Chrome/47.0.2526.110 Brave/0.36.5 Safari/537.36" Browser Brave 0.7.10 Windows Windows 10 7 | "Mozilla/5.0 (Linux; Android 9; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36 Brave/74" Browser Brave 74 Android Android 9 8 | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.38 Safari/537.36 Brave/75" Browser Brave 75 Windows Windows 10 9 | "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) brave/0.8.3 Chrome/49.0.2623.108 Brave/0.37.3 Safari/537.36" Browser Brave 0.8.3 Macintosh OS X 10_11_4 10 | "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36 Brave/74" Browser Brave 74 Linux Linux 11 | "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) brave/0.7.10 Chrome/47.0.2526.110 Brave/0.36.5 Safari/537.36" Browser Brave 0.7.10 Windows Windows 7 12 | "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/75.0.3770.101 Safari/537.36" Browser Brave Linux Linux 13 | "Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36 Brave/74" Browser Brave 74 Android Android 8.0.0 -------------------------------------------------------------------------------- /tests/lists/edge.txt: -------------------------------------------------------------------------------- 1 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.83 Safari/537.36 Edg/81.0.416.41 Browser Edge 81.0.416.41 Windows Windows NT 2 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.74 Safari/537.36 Edg/79.0.309.43 Browser Edge 79.0.309.43 Windows Windows NT 3 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14931 Browser Edge 14.14931 Windows Windows NT 4 | Chrome (AppleWebKit/537.1; Chrome50.0; Windows NT 6.3) AppleWebKit/537.36 (KHTML like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393 Browser Edge 14.14393 Windows Windows NT 5 | Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.9200 Browser Edge 13.9200 Windows Windows NT 6 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586 Browser Edge 13.10586 Windows Windows NT 7 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Browser Edge 12.246 Windows Windows NT 8 | Mozilla/5.0 (Linux; Android 8.0.0; moto e5 play Build/OPP27.91-41-1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36 EdgA/42.0.0.2033 Browser Edge 42.0.0.2033 Android Android 9 | Mozilla/5.0 (Linux; Android 10; HRY-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.116 Mobile Safari/537.36 EdgA/45.02.4.4931 Browser Edge 45.02.4.4931 Android Android 10 | -------------------------------------------------------------------------------- /tests/lists/firefox-mobile.txt: -------------------------------------------------------------------------------- 1 | Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) FxiOS/7.5b3349 Mobile/14F89 Safari/603.2.4 Browser Firefox 7.5b3349 iPhone 2 | Mozilla/5.0 (Android 7.0; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0 Browser Firefox 54.0 Android 3 | Mozilla/5.0 (Android 8.1.0; Mobile; rv:61.0) Gecko/61.0 Firefox/61.0 Browser Firefox 61.0 Android 4 | Mozilla/5.0 (Android 8.0.0; Mobile; rv:61.0) Gecko/61.0 Firefox/68.0 Browser Firefox 68.0 Android 5 | Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/21.0 Mobile/16B92 Safari/605.1.15 Browser Firefox 21.0 iPhone 6 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/20.2 Safari/605.1.15 Browser Firefox 20.2 iPhone -------------------------------------------------------------------------------- /tests/lists/ie.txt: -------------------------------------------------------------------------------- 1 | "Mozilla/5.0 (compatible, MSIE 11, Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko" Browser Internet Explorer 11.0 Windows Windows NT 2 | Mozilla/1.22 (compatible; MSIE 10.0; Windows 3.1) Browser Internet Explorer 10.0 Windows Windows 3.1 3 | Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1) Browser Internet Explorer 2.0 Windows Windows 3.1 4 | Mozilla/1.22 (compatible; MSIE 2.0; Windows 95) Browser Internet Explorer 2.0 Windows Windows 95 5 | Mozilla/2.0 (compatible; MSIE 3.01; Windows 95) Browser Internet Explorer 3.01 Windows Windows 95 6 | Mozilla/2.0 (compatible; MSIE 3.02; Windows 3.1) Browser Internet Explorer 3.02 Windows Windows 3.1 7 | Mozilla/2.0 (compatible; MSIE 3.03; Windows 3.1) Browser Internet Explorer 3.03 Windows Windows 3.1 8 | Mozilla/2.0 (compatible; MSIE 3.0; Windows 3.1) Browser Internet Explorer 3.0 Windows Windows 3.1 9 | Mozilla/2.0 (compatible; MSIE 3.0; Windows 95) Browser Internet Explorer 3.0 Windows Windows 95 10 | Mozilla/2.0 (compatible; MSIE 3.0B; Windows NT) Browser Internet Explorer 3.0B Windows Windows NT 11 | Mozilla/2.0 (compatible; MSIE 4.0; Windows 98) Browser Internet Explorer 4.0 Windows Windows 98 12 | Mozilla/3.0 (compatible; MSIE 3.0; Windows NT 5.0) Browser Internet Explorer 3.0 Windows Windows 2000 13 | Mozilla/4.0 (Compatible; MSIE 4.0) Browser Internet Explorer 4.0 unknown unknown 14 | Mozilla/4.0 (Compatible; MSIE 5.5; Windows NT5.0; Q312461; SV1; .NET CLR 1.1.4322; InfoPath.2) Browser Internet Explorer 5.5 Windows Windows 2000 15 | Mozilla/4.0 (Compatible; MSIE 8.0; Windows NT 5.2; Trident/6.0) Browser Internet Explorer 8.0 Windows Windows Server 2003 16 | Mozilla/4.0 (Compatible; Windows NT 5.1; MSIE 6.0) (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 17 | Mozilla/4.0 (MSIE 6.0; Windows NT 5.0) Browser Internet Explorer 6.0 Windows Windows 2000 18 | Mozilla/4.0 (MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 19 | Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1) Browser Internet Explorer 7.0 Windows Windows XP 20 | Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30) Browser Internet Explorer 7.0 Windows Windows XP 21 | Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.0) Browser Internet Explorer 6.0 Windows Windows 2000 22 | Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 23 | Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.2) Browser Internet Explorer 6.0 Windows Windows Server 2003 24 | Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 6.0) Browser Internet Explorer 6.0 Windows Windows Vista 25 | Mozilla/4.0 (Windows; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) Browser Internet Explorer 7.0 Windows Windows XP 26 | Mozilla/4.0 (X11; MSIE 6.0; i686; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM) Browser Internet Explorer 6.0 unknown unknown 27 | Mozilla/4.0 (compatible ; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 28 | Mozilla/4.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0) Browser Internet Explorer 10.0 Windows Windows 7 29 | Mozilla/4.0 (compatible; MSIE 2.0; Windows NT 5.0; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) Browser Internet Explorer 2.0 Windows Windows 2000 30 | Mozilla/4.0 (compatible; MSIE 4.01; Mac_PowerPC) Browser Internet Explorer 4.01 Macintosh Macintosh 31 | Mozilla/4.0 (compatible; MSIE 4.01; Windows 95) Browser Internet Explorer 4.01 Windows Windows 95 32 | Mozilla/4.0 (compatible; MSIE 4.01; Windows 98) Browser Internet Explorer 4.01 Windows Windows 98 33 | Mozilla/4.0 (compatible; MSIE 4.01; Windows 98; DigExt) Browser Internet Explorer 4.01 Windows Windows 98 34 | Mozilla/4.0 (compatible; MSIE 4.01; Windows 98; Hotbar 3.0) Browser Internet Explorer 4.01 Windows Windows 98 35 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE) Browser Internet Explorer 4.01 Windows Windows CE 36 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC) Browser Internet Explorer 4.01 Windows Windows CE 37 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320; PPC) Browser Internet Explorer 4.01 Windows Windows CE 38 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320; Sprint:PPC-6700; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 39 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Smartphone; 176x220) Browser Internet Explorer 4.01 Windows Windows CE 40 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:PPC-i830; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 41 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:SCH-i320; Smartphone; 176x220) Browser Internet Explorer 4.01 Windows Windows CE 42 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:SCH-i830; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 43 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:SPH-ip320; Smartphone; 176x220) Browser Internet Explorer 4.01 Windows Windows CE 44 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:SPH-ip830w; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 45 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint; SCH-i830; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 46 | Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint;PPC-i830; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 47 | Mozilla/4.0 (compatible; MSIE 4.01; Windows NT 5.0) Browser Internet Explorer 4.01 Windows Windows 2000 48 | Mozilla/4.0 (compatible; MSIE 4.01; Windows NT) Browser Internet Explorer 4.01 Windows Windows NT 49 | Mozilla/4.0 (compatible; MSIE 4.0; Windows 95) Browser Internet Explorer 4.0 Windows Windows 95 50 | Mozilla/4.0 (compatible; MSIE 4.0; Windows 95; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 4.0 Windows Windows 95 51 | Mozilla/4.0 (compatible; MSIE 4.0; Windows 98 ) Browser Internet Explorer 4.0 Windows Windows 98 52 | Mozilla/4.0 (compatible; MSIE 4.0; Windows NT) Browser Internet Explorer 4.0 Windows Windows NT 53 | Mozilla/4.0 (compatible; MSIE 4.5; Mac_PowerPC) Browser Internet Explorer 4.5 Macintosh Macintosh 54 | Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; ) Browser Internet Explorer 4.5 Windows Windows 98 55 | Mozilla/4.0 (compatible; MSIE 4.5; Windows NT 5.1; .NET CLR 2.0.40607) Browser Internet Explorer 4.5 Windows Windows XP 56 | Mozilla/4.0 (compatible; MSIE 5.00; Windows 98) Browser Internet Explorer 5.00 Windows Windows 98 57 | Mozilla/4.0 (compatible; MSIE 5.00; Windows 98) Browser Internet Explorer 5.00 Windows Windows 98 58 | Mozilla/4.0 (compatible; MSIE 5.01; Windows 98) Browser Internet Explorer 5.01 Windows Windows 98 59 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; MSIECrawler) Browser Internet Explorer 5.01 Windows Windows 2000 60 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Q312461) Browser Internet Explorer 5.01 Windows Windows 2000 61 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Q312461; T312461) Browser Internet Explorer 5.01 Windows Windows 2000 62 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; SV1) Browser Internet Explorer 5.01 Windows Windows 2000 63 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727) Browser Internet Explorer 5.01 Windows Windows 2000 64 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Wanadoo 5.1) Browser Internet Explorer 5.01 Windows Windows 2000 65 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Wanadoo 5.3; Wanadoo 5.5) Browser Internet Explorer 5.01 Windows Windows 2000 66 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Wanadoo 5.6) Browser Internet Explorer 5.01 Windows Windows 2000 67 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.0.0) Browser Internet Explorer 5.01 Windows Windows 2000 68 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.0.0; Hotbar 4.1.8.0) Browser Internet Explorer 5.01 Windows Windows 2000 69 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.2.4) Browser Internet Explorer 5.01 Windows Windows 2000 70 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.2.6) Browser Internet Explorer 5.01 Windows Windows 2000 71 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.2.6; Hotbar 3.0) Browser Internet Explorer 5.01 Windows Windows 2000 72 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.2.6; Hotbar 4.2.8.0) Browser Internet Explorer 5.01 Windows Windows 2000 73 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; YComp 5.0.2.6; MSIECrawler) Browser Internet Explorer 5.01 Windows Windows 2000 74 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT) Browser Internet Explorer 5.01 Windows Windows NT 75 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT; .NET CLR 1.0.3705) Browser Internet Explorer 5.01 Windows Windows NT 76 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT; DigExt) Browser Internet Explorer 5.01 Windows Windows NT 77 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT; Hotbar 4.1.8.0) Browser Internet Explorer 5.01 Windows Windows NT 78 | Mozilla/4.0 (compatible; MSIE 5.01; Windows NT; YComp 5.0.0.0) Browser Internet Explorer 5.01 Windows Windows NT 79 | Mozilla/4.0 (compatible; MSIE 5.05; Windows 98; .NET CLR 1.1.4322) Browser Internet Explorer 5.05 Windows Windows 98 80 | Mozilla/4.0 (compatible; MSIE 5.05; Windows NT 3.51) Browser Internet Explorer 5.05 Windows Windows NT 81 | Mozilla/4.0 (compatible; MSIE 5.05; Windows NT 4.0) Browser Internet Explorer 5.05 Windows Windows NT 82 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt; YComp 5.0.2.6) Browser Internet Explorer 5.0 Windows Windows 98 83 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt; YComp 5.0.2.6; yplus 1.0) Browser Internet Explorer 5.0 Windows Windows 98 84 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; Hotbar 3.0) Browser Internet Explorer 5.0 Windows Windows 98 85 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; YComp 5.0.2.4) Browser Internet Explorer 5.0 Windows Windows 98 86 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 98;) Browser Internet Explorer 5.0 Windows Windows 98 87 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.0) Browser Internet Explorer 5.0 Windows Windows 2000 88 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.2; .NET CLR 1.1.4322) Browser Internet Explorer 5.0 Windows Windows Server 2003 89 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.9; .NET CLR 1.1.4322) Browser Internet Explorer 5.0 Windows Windows NT 90 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.0.04506.648; .NET4.0C; .NET4.0E) Browser Internet Explorer 5.0 Windows Windows Vista 91 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT) Browser Internet Explorer 5.0 Windows Windows NT 92 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt) Browser Internet Explorer 5.0 Windows Windows NT 93 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; .NET CLR 1.0.3705) Browser Internet Explorer 5.0 Windows Windows NT 94 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; Hotbar 3.0) Browser Internet Explorer 5.0 Windows Windows NT 95 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; Hotbar 4.1.8.0) Browser Internet Explorer 5.0 Windows Windows NT 96 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; YComp 5.0.0.0) Browser Internet Explorer 5.0 Windows Windows NT 97 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; YComp 5.0.2.5) Browser Internet Explorer 5.0 Windows Windows NT 98 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; YComp 5.0.2.6) Browser Internet Explorer 5.0 Windows Windows NT 99 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT;) Browser Internet Explorer 5.0 Windows Windows NT 100 | Mozilla/4.0 (compatible; MSIE 5.0b1; Mac_PowerPC) Browser Internet Explorer 5.0b1 Macintosh Macintosh 101 | Mozilla/4.0 (compatible; MSIE 5.12; Mac_PowerPC) Browser Internet Explorer 5.12 Macintosh Macintosh 102 | Mozilla/4.0 (compatible; MSIE 5.13; Mac_PowerPC) Browser Internet Explorer 5.13 Macintosh Macintosh 103 | Mozilla/4.0 (compatible; MSIE 5.14; Mac_PowerPC) Browser Internet Explorer 5.14 Macintosh Macintosh 104 | Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC) Browser Internet Explorer 5.15 Macintosh Macintosh 105 | Mozilla/4.0 (compatible; MSIE 5.16; Mac_PowerPC) Browser Internet Explorer 5.16 Macintosh Macintosh 106 | Mozilla/4.0 (compatible; MSIE 5.17; Mac_PowerPC Mac OS; en) Browser Internet Explorer 5.17 Macintosh Macintosh 107 | Mozilla/4.0 (compatible; MSIE 5.17; Mac_PowerPC) Browser Internet Explorer 5.17 Macintosh Macintosh 108 | Mozilla/4.0 (compatible; MSIE 5.21; Mac_PowerPC) Browser Internet Explorer 5.21 Macintosh Macintosh 109 | Mozilla/4.0 (compatible; MSIE 5.22; Mac_PowerPC) Browser Internet Explorer 5.22 Macintosh Macintosh 110 | Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC) Browser Internet Explorer 5.23 Macintosh Macintosh 111 | Mozilla/4.0 (compatible; MSIE 5.2; Mac_PowerPC) Browser Internet Explorer 5.2 Macintosh Macintosh 112 | Mozilla/4.0 (compatible; MSIE 5.50; Windows 95; SiteKiosk 4.8) Browser Internet Explorer 5.50 Windows Windows 95 113 | Mozilla/4.0 (compatible; MSIE 5.50; Windows 98; SiteKiosk 4.8) Browser Internet Explorer 5.50 Windows Windows 98 114 | Mozilla/4.0 (compatible; MSIE 5.50; Windows NT; SiteKiosk 4.8) Browser Internet Explorer 5.50 Windows Windows NT 115 | Mozilla/4.0 (compatible; MSIE 5.50; Windows NT; SiteKiosk 4.8; SiteCoach 1.0) Browser Internet Explorer 5.50 Windows Windows NT 116 | Mozilla/4.0 (compatible; MSIE 5.50; Windows NT; SiteKiosk 4.9; SiteCoach 1.0) Browser Internet Explorer 5.50 Windows Windows NT 117 | Mozilla/4.0 (compatible; MSIE 5.5; Windows 98) Browser Internet Explorer 5.5 Windows Windows 98 118 | Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90) Browser Internet Explorer 5.5 Windows Windows Me 119 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0) Browser Internet Explorer 5.5 Windows Windows 2000 120 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Browser Internet Explorer 5.5 Windows Windows XP 121 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Browser Internet Explorer 5.5 Windows Windows XP 122 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.2; .NET CLR 1.1.4322) Browser Internet Explorer 5.5 Windows Windows Server 2003 123 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.2; .NET CLR 1.1.4322) (Compatible; ; ; Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Browser Internet Explorer 5.5 Windows Windows Server 2003 124 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM) Browser Internet Explorer 5.5 Windows Windows Server 2003 125 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.5) Browser Internet Explorer 5.5 Windows Windows NT 126 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618) Browser Internet Explorer 5.5 Windows Windows Vista 127 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Browser Internet Explorer 5.5 Windows Windows 7 128 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 6.1; chromeframe/12.0.742.100; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) Browser Internet Explorer 5.5 Windows Windows 7 129 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT) Browser Internet Explorer 5.5 Windows Windows NT 130 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT5) Browser Internet Explorer 5.5 Windows Windows 2000 131 | Mozilla/4.0 (compatible; MSIE 5.5;) Browser Internet Explorer 5.5 unknown unknown 132 | Mozilla/4.0 (compatible; MSIE 5.5b1; Mac_PowerPC) Browser Internet Explorer 5.5b1 Macintosh Macintosh 133 | Mozilla/4.0 (compatible; MSIE 6.01; Windows NT 6.0) Browser Internet Explorer 6.01 Windows Windows Vista 134 | Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 135 | Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows 98 136 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0) Browser Internet Explorer 6.0 Windows Windows NT 137 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705) Browser Internet Explorer 6.0 Windows Windows 2000 138 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows 2000 139 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows 2000 140 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows XP 141 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3) Browser Internet Explorer 6.0 Windows Windows XP 142 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows XP 143 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1) Browser Internet Explorer 6.0 Windows Windows XP 144 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5)) Browser Internet Explorer 6.0 Windows Windows XP 145 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1) Browser Internet Explorer 6.0 Windows Windows XP 146 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 147 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705) Browser Internet Explorer 6.0 Windows Windows XP 148 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) Browser Internet Explorer 6.0 Windows Windows XP 149 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows XP 150 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows XP 151 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 152 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2) Browser Internet Explorer 6.0 Windows Windows XP 153 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98) Browser Internet Explorer 6.0b Windows Windows 98 154 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; Win 9x 4.90) Browser Internet Explorer 6.0b Windows Windows Me 155 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; YComp 5.0.0.0) Browser Internet Explorer 6.0b Windows Windows 98 156 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0) Browser Internet Explorer 6.0b Windows Windows NT 157 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0; .NET CLR 1.0.2914) Browser Internet Explorer 6.0b Windows Windows NT 158 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0) Browser Internet Explorer 6.0b Windows Windows 2000 159 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.0.3705) Browser Internet Explorer 6.0b Windows Windows 2000 160 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.1.4322) Browser Internet Explorer 6.0b Windows Windows 2000 161 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0) Browser Internet Explorer 6.0b Windows Windows 2000 162 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0) (Compatible; ; ; Trident/4.0) Browser Internet Explorer 6.0b Windows Windows 2000 163 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.2.6) Browser Internet Explorer 6.0b Windows Windows 2000 164 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1) Browser Internet Explorer 6.0b Windows Windows XP 165 | Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1; DigExt) Browser Internet Explorer 6.0b Windows Windows XP 166 | Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) Browser Internet Explorer 6.1 Windows Windows XP 167 | Mozilla/4.0 (compatible; MSIE 6.1; Windows XP; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 6.1 Windows Windows XP 168 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0) Browser Internet Explorer 7.0 Windows Windows XP 169 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727) Browser Internet Explorer 7.0 Windows Windows XP 170 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) Browser Internet Explorer 7.0 Windows Windows XP 171 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648) Browser Internet Explorer 7.0 Windows Windows XP 172 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) Browser Internet Explorer 7.0 Windows Windows XP 173 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1) Browser Internet Explorer 7.0 Windows Windows XP 174 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727) Browser Internet Explorer 7.0 Windows Windows XP 175 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; ?I쳌[?v??6) Browser Internet Explorer 7.0 Windows Windows XP 176 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1) Browser Internet Explorer 7.0 Windows Windows XP 177 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2) Browser Internet Explorer 7.0 Windows Windows XP 178 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506) Browser Internet Explorer 7.0 Windows Windows Vista 179 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2) Browser Internet Explorer 7.0 Windows Windows Vista 180 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322) Browser Internet Explorer 7.0 Windows Windows Vista 181 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2) Browser Internet Explorer 7.0 Windows Windows Vista 182 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; chromeframe/12.0.742.100) Browser Internet Explorer 7.0 Windows Windows 7 183 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 184 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 185 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 186 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 187 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3) Browser Internet Explorer 7.0 Windows Windows 7 188 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8) Browser Internet Explorer 7.0 Windows Windows 7 189 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 190 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Browser Internet Explorer 7.0 Windows Windows 7 191 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3) Browser Internet Explorer 7.0 Windows Windows 7 192 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; Win64; x64; Trident/6.0; .NET4.0E; .NET4.0C) Browser Internet Explorer 7.0 Windows Windows 8 193 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.0.3705; Media Center PC 3.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 7.0b Windows Windows XP 194 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322) Browser Internet Explorer 7.0b Windows Windows XP 195 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607) Browser Internet Explorer 7.0b Windows Windows XP 196 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 7.0b Windows Windows XP 197 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar) Browser Internet Explorer 7.0b Windows Windows XP 198 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727) Browser Internet Explorer 7.0b Windows Windows XP 199 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1) Browser Internet Explorer 7.0b Windows Windows XP 200 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727) Browser Internet Explorer 7.0b Windows Windows XP 201 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; FDM; .NET CLR 1.1.4322) Browser Internet Explorer 7.0b Windows Windows XP 202 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) Browser Internet Explorer 7.0b Windows Windows XP 203 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30) Browser Internet Explorer 7.0b Windows Windows Server 2003 204 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0) Browser Internet Explorer 7.0b Windows Windows Vista 205 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Browser Internet Explorer 8.0 Windows Windows XP 206 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Browser Internet Explorer 8.0 Windows Windows XP 207 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0) Browser Internet Explorer 8.0 Windows Windows 7 208 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 534; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729) Browser Internet Explorer 8.0 Windows Windows XP 209 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; Tablet PC 2.0) Browser Internet Explorer 8.0 Windows Windows XP 210 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) Browser Internet Explorer 8.0 Windows Windows 7 211 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) Browser Internet Explorer 8.0 Windows Windows 7 212 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Browser Internet Explorer 8.0 Windows Windows 7 213 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; InfoPath.3; .NET4.0C; .NET4.0E) chromeframe/8.0.552.224 Browser Internet Explorer 8.0 Windows Windows 7 214 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 3.0) Browser Internet Explorer 8.0 Windows Windows 7 215 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; msn OptimizedIE8;ZHCN) Browser Internet Explorer 8.0 Windows Windows 7 216 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2) Browser Internet Explorer 8.0 Windows Windows 7 217 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8) Browser Internet Explorer 8.0 Windows Windows 7 218 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C) Browser Internet Explorer 8.0 Windows Windows 7 219 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8 Browser Internet Explorer 8.0 Windows Windows 7 220 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8) Browser Internet Explorer 8.0 Windows Windows 7 221 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) Browser Internet Explorer 8.0 Windows Windows 8 222 | Mozilla/4.0 (compatible; U; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 223 | Mozilla/4.0 (compatible; U; MSIE 6.0; Windows NT 5.1) (Compatible; ; ; Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Browser Internet Explorer 6.0 Windows Windows XP 224 | Mozilla/4.0 (compatible;MSIE 5.5; Windows 98) Browser Internet Explorer 5.5 Windows Windows 98 225 | Mozilla/4.0 (compatible;MSIE 6.0;Windows 98;Q312461) Browser Internet Explorer 6.0 Windows Windows 98 226 | Mozilla/4.0 (compatible;MSIE 7.0;Windows NT 6.0) Browser Internet Explorer 7.0 Windows Windows Vista 227 | Mozilla/4.0 PPC (compatible; MSIE 4.01; Windows CE; PPC; 240x320; Sprint:PPC-6700; PPC; 240x320) Browser Internet Explorer 4.01 Windows Windows CE 228 | Mozilla/4.0(compatible; MSIE 5.0; Windows 98; DigExt) Browser Internet Explorer 5.0 Windows Windows 98 229 | Mozilla/4.0(compatible; MSIE 7.0b; Windows NT 6.0) Browser Internet Explorer 7.0b Windows Windows Vista 230 | Mozilla/4.01 (compatible; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 231 | Mozilla/4.08 (compatible; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 232 | Mozilla/4.79 [en] (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648) Browser Internet Explorer 7.0 Windows Windows 2000 233 | Mozilla/45.0 (compatible; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 234 | Mozilla/5.0 (MSIE 7.0; Macintosh; U; SunOS; X11; gu; SV1; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648) Browser Internet Explorer 7.0 SunOS SunOS 235 | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 236 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 237 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; wbx 1.0.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 238 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 239 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; LCJB; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 240 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; Tablet PC 2.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 241 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; Tablet PC 2.0; wbx 1.0.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 242 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 243 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 10 244 | Mozilla/5.0 (Windows NT 5.1; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows XP 245 | Mozilla/5.0 (Windows NT 6.0; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows Vista 246 | Mozilla/5.0 (Windows NT 6.1; Trident/7.0; MAMD; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 247 | Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 248 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 249 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 250 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MALC; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 251 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MASBJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 252 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MDDRJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 253 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; NP06; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 254 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 255 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 256 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; yie11; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 257 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 7 258 | Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 8 259 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows 8 260 | Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 261 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; ASU2JS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 262 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; LCJB; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 263 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 264 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASBJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 265 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASEJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 266 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 267 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; TNJB; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 268 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 269 | Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 270 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; rv:11.0) like Gecko Browser Internet Explorer 11.0 Windows Windows NT 271 | Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 272 | Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 5.2) Browser Internet Explorer 7.0 Windows Windows Server 2003 273 | Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; el-GR) Browser Internet Explorer 7.0 Windows Windows Vista 274 | Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US) Browser Internet Explorer 7.0 Windows Windows Vista 275 | Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US)) Browser Internet Explorer 9.0 Windows Windows NT 276 | Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US) Browser Internet Explorer 9.0 Windows Windows NT 277 | Mozilla/5.0 (compatible; MSIE 10.0; Macintosh; Intel Mac OS X 10_7_3; Trident/6.0) Browser Internet Explorer 10.0 Macintosh OS X 10_7_3 278 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/4.0; InfoPath.2; SV1; .NET CLR 2.0.50727; WOW64) Browser Internet Explorer 10.0 Windows Windows 7 279 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0) Browser Internet Explorer 10.0 Windows Windows 7 280 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) Browser Internet Explorer 10.0 Windows Windows 7 281 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) Browser Internet Explorer 10.0 Windows Windows 7 282 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2) Browser Internet Explorer 10.0 Windows Windows 8 283 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0) Browser Internet Explorer 10.0 Windows Windows 8 284 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0) Browser Internet Explorer 10.0 Windows Windows 8 285 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; ASU2JS) Browser Internet Explorer 10.0 Windows Windows 8 286 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MALNJS) Browser Internet Explorer 10.0 Windows Windows 8 287 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MASMJS) Browser Internet Explorer 10.0 Windows Windows 8 288 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MDDCJS) Browser Internet Explorer 10.0 Windows Windows 8 289 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0) Browser Internet Explorer 10.0 Windows Windows 8 290 | Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 7.0; InfoPath.3; .NET CLR 3.1.40767; Trident/6.0; en-IN) Browser Internet Explorer 10.0 Windows Windows NT 291 | Mozilla/5.0 (compatible; MSIE 10.6; Windows NT 6.1; Trident/5.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 3gpp-gba UNTRUSTED/1.0 Browser Internet Explorer 10.6 Windows Windows 7 292 | Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1) Browser Internet Explorer 6.0 Windows Windows XP 293 | Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325) Browser Internet Explorer 6.0 Windows Windows XP 294 | Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) Browser Internet Explorer 6.0 Windows Windows XP 295 | Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; SpamBlockerUtility 6.3.91; SpamBlockerUtility 6.2.91; .NET CLR 4.1.89;GB) Browser Internet Explorer 7.0 Windows Windows 98 296 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.0; FBSMTWB; .NET CLR 2.0.34861; .NET CLR 3.0.3746.3218; .NET CLR 3.5.33652; msn OptimizedIE8;ENUS) Browser Internet Explorer 7.0 Windows Windows 2000 297 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727) Browser Internet Explorer 7.0 Windows Windows Server 2003 298 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR) Browser Internet Explorer 7.0 Windows Windows Vista 299 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR) Browser Internet Explorer 7.0 Windows Windows Vista 300 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; en-US) Browser Internet Explorer 7.0 Windows Windows Vista 301 | Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; fr-FR) Browser Internet Explorer 7.0 Windows Windows Vista 302 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30) Browser Internet Explorer 8.0 Windows Windows 2000 303 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; SLCC1; .NET CLR 1.1.4322) Browser Internet Explorer 8.0 Windows Windows XP 304 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727) Browser Internet Explorer 8.0 Windows Windows XP 305 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) Browser Internet Explorer 8.0 Windows Windows XP 306 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322) Browser Internet Explorer 8.0 Windows Windows XP 307 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320) Browser Internet Explorer 8.0 Windows Windows Server 2003 308 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; .NET CLR 2.7.58687; SLCC2; Media Center PC 5.0; Zune 3.4; Tablet PC 3.6; InfoPath.3) Browser Internet Explorer 8.0 Windows Windows Vista 309 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US) Browser Internet Explorer 8.0 Windows Windows Vista 310 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Browser Internet Explorer 8.0 Windows Windows Vista 311 | Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; InfoPath.2; SV1; .NET CLR 3.3.69573; WOW64; en-US) Browser Internet Explorer 8.0 Windows Windows 7 312 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/4.0; GTB7.4; InfoPath.3; SV1; .NET CLR 3.1.76908; WOW64; en-US) Browser Internet Explorer 9.0 Windows Windows Vista 313 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; chromeframe/11.0.696.57) Browser Internet Explorer 9.0 Windows Windows Vista 314 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/4.0; GTB7.4; InfoPath.1; SV1; .NET CLR 2.8.52393; WOW64; en-US) Browser Internet Explorer 9.0 Windows Windows 7 315 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) chromeframe/10.0.648.205 Browser Internet Explorer 9.0 Windows Windows 7 316 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; FunWebProducts) Browser Internet Explorer 9.0 Windows Windows 7 317 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; .NET4.0C; Tablet PC 2.0) Browser Internet Explorer 9.0 Windows Windows 7 318 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; chromeframe/11.0.696.57) Browser Internet Explorer 9.0 Windows Windows 7 319 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; chromeframe/13.0.782.215) Browser Internet Explorer 9.0 Windows Windows 7 320 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie8) Browser Internet Explorer 9.0 Windows Windows 7 321 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0) Browser Internet Explorer 9.0 Windows Windows 7 322 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E) Browser Internet Explorer 9.0 Windows Windows 7 323 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7 Browser Internet Explorer 9.0 Windows Windows 7 324 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7) Browser Internet Explorer 9.0 Windows Windows 7 325 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; chromeframe/12.0.742.112) Browser Internet Explorer 9.0 Windows Windows 7 326 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/6.0) Browser Internet Explorer 9.0 Windows Windows 7 327 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0 Browser Internet Explorer 9.0 Windows Windows 7 328 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E) Browser Internet Explorer 9.0 Windows Windows 7 329 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0) Browser Internet Explorer 9.0 Windows Windows 7 330 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 7.1; Trident/5.0) Browser Internet Explorer 9.0 Windows Windows NT 331 | -------------------------------------------------------------------------------- /tests/lists/palemoon.txt: -------------------------------------------------------------------------------- 1 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.2 Browser Palemoon 27.1.2 Linux Linux 2 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.0 Browser Palemoon 27.2.0 Linux Linux 3 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.0) Gecko/20140419 Firefox/24.0 PaleMoon/24.5.0 Browser Palemoon 24.5.0 Windows Windows 8 4 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Windows Windows 10 5 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Linux Linux 6 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows NT 7 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Windows Windows 7 8 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 10 9 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Linux Linux 10 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 10 11 | Mozilla/5.0 (Windows NT 10.0; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 10 12 | Mozilla/5.0 (Windows NT 5.2; WOW64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows Server 2003 13 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows XP 14 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:3.0) Gecko/20100101 Goanna/20161201 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Windows Windows 7 15 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows NT 16 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Windows Windows 7 17 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1 Browser Palemoon 27.9.1 Windows Windows 10 18 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Linux Linux 19 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Linux Linux 20 | Mozilla/5.0 (X11; Linux x86_64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Linux Linux 21 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 7 22 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Linux Linux 23 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1 Browser Palemoon 27.9.1 Windows Windows 7 24 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 10 25 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 7 26 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 10 27 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 10 28 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows 10 29 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 10 30 | Mozilla/5.0 (Windows NT 6.1; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows 7 31 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Linux Linux 32 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1 Browser Palemoon 27.9.1 Windows Windows 7 33 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 7 34 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Linux Linux 35 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 7 36 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Windows Windows 7 37 | Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100403 Firefox/3.6.3 (Palemoon/3.6.3) (.NET CLR 3.5.30729) Browser Palemoon 3.6.3 Windows Windows Vista 38 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows NT 39 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20140208 Firefox/24.0 PaleMoon/24.3.2 Browser Palemoon 24.3.2 Windows Windows 7 40 | Mozilla/5.0 (X11; Linux x86_64; rv:2.1) Gecko/20100101 Goanna/20160701 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Linux Linux 41 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 10 42 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Linux Linux 43 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.1 Browser Palemoon 28.4.1 Windows Windows 10 44 | Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.15) Gecko/20110419 Firefox/3.6.16 (Palemoon/3.6.16) Browser Palemoon 3.6.16 Windows Windows Vista 45 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 7 46 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.2 Browser Palemoon 27.8.2 Windows Windows 7 47 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1 Browser Palemoon 27.8.1 Windows Windows 7 48 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Linux Linux 49 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Windows Windows 7 50 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 7 51 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Linux Linux 52 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.4) Gecko/20130122 Firefox/15.4.1 PaleMoon/15.4.1 Browser Palemoon 15.4.1 Windows Windows 7 53 | Mozilla/5.0 (X11; Linux i686; rv:25.8) Gecko/20151123 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Linux Linux 54 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Windows Windows 7 55 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1a1 Browser Palemoon 27.9.1a1 Windows Windows XP 56 | Mozilla/5.0 (X11; Linux x86_64; rv:25.1) Gecko/20141127 Firefox/31.9 PaleMoon/25.1.0 Browser Palemoon 25.1.0 Linux Linux 57 | Mozilla/5.0 (X11; Linux i686; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Linux Linux 58 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows XP 59 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Linux Linux 60 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 7 61 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.0 Browser Palemoon 27.7.0 Windows Windows 7 62 | Mozilla/5.0 (Windows NT 6.2; rv:24.0) Gecko/20140125 Firefox/24.0 PaleMoon/24.3.0 Browser Palemoon 24.3.0 Windows Windows 8 63 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 7 64 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.1 Browser Palemoon 28.4.1 Linux Linux 65 | Mozilla/5.0 (X11; Linux x86_64; rv:25.3) Gecko/20150309 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Linux Linux 66 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Linux Linux 67 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 7 68 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Linux Linux 69 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows NT 70 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 10 71 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Linux Linux 72 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 10 73 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows 10 74 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1 Browser Palemoon 27.8.1 Windows Windows NT 75 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows NT 76 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Linux Linux 77 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.3) Gecko/20150323 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Windows Windows 7 78 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 7 79 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Linux Linux 80 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 7 81 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Linux Linux 82 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Linux Linux 83 | Mozilla/5.0 (Android; Mobile; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.6 Browser Palemoon 25.9.6 Android Android 84 | Mozilla/5.0 (Windows NT 6.1; rv:25.6) Gecko/20150723 Firefox/31.9 PaleMoon/25.6.0 Browser Palemoon 25.6.0 Windows Windows 7 85 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 10 86 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Windows Windows 10 87 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Windows Windows 7 88 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.1 Browser Palemoon 27.7.1 Linux Linux 89 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 7 90 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Linux Linux 91 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Windows Windows 10 92 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 10 93 | Mozilla/5.0 (Windows NT 6.1; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 7 94 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:24.7) Gecko/20140907 Firefox/24.7 PaleMoon/24.7.2 Browser Palemoon 24.7.2 Windows Windows 7 95 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 7 96 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.2.0a1 Browser Palemoon 28.2.0a1 Windows Windows XP 97 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Linux Linux 98 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:25.3) Gecko/20150308 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows NT 99 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 10 100 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100817 Firefox/3.6.8 (Palemoon/3.6.8a) Browser Palemoon 3.6.8a Windows Windows 7 101 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Windows Windows 10 102 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.0) Gecko/20141021 Firefox/24.9 PaleMoon/25.0.2 Browser Palemoon 25.0.2 Windows Windows NT 103 | Mozilla/5.0 (Windows NT 6.0; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0b4 Browser Palemoon 26.0.0b4 Windows Windows Vista 104 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Goanna/4.1 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Linux Linux 105 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Linux Linux 106 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Linux Linux 107 | Mozilla/5.0 (Windows NT 5.1; rv:25.4) Gecko/20150509 Firefox/31.9 PaleMoon/25.4.1 Browser Palemoon 25.4.1 Windows Windows XP 108 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.3) Gecko/20150308 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows 7 109 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:24.0) Gecko/20140305 Firefox/24.0 PaleMoon/24.4.0 Browser Palemoon 24.4.0 Windows Windows 7 110 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Linux Linux 111 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.3) Gecko/20150323 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Windows Windows 7 112 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Linux Linux 113 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 7 114 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 7 115 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Linux Linux 116 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Linux Linux 117 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0a1 Browser Palemoon 28.1.0a1 Windows Windows XP 118 | Mozilla/5.0 (Windows NT 6.1; rv:3.4) Goanna/20180327 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 7 119 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows 7 120 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Windows Windows 7 121 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Linux Linux 122 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows 10 123 | Mozilla/5.0 (Android; Tablet; rv:25.3) Gecko/25.3 Firefox/31.9 PaleMoon/25.3 Browser Palemoon 25.3 Android Android 124 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20121004 Firefox/15.2 PaleMoon/15.2 Browser Palemoon 15.2 Windows Windows 7 125 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Goanna/4.2 PaleMoon/28.6.0a1 Browser Palemoon 28.6.0a1 Windows Windows XP 126 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Linux Linux 127 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows 7 128 | Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20140208 Firefox/24.0 PaleMoon/24.3.2 Browser Palemoon 24.3.2 Windows Windows XP 129 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 10 130 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:25.0) Gecko/20141021 Firefox/24.9 PaleMoon/25.0.2 Browser Palemoon 25.0.2 Windows Windows 8 131 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 10 132 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.5.0a1 Browser Palemoon 28.5.0a1 Windows Windows XP 133 | Mozilla/5.0 (X11; Linux x86_64; rv:3.4) Goanna/20180518 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Linux Linux 134 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 7 135 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows 7 136 | Mozilla/5.0 (Windows NT 6.1; rv:25.8) Gecko/20151116 Firefox/31.9 PaleMoon/25.8.0 Browser Palemoon 25.8.0 Windows Windows 7 137 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100403 Firefox/3.6.3 (Palemoon/3.6.3) Browser Palemoon 3.6.3 Windows Windows 7 138 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 7 139 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Windows Windows 7 140 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 7 141 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows XP 142 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1 Browser Palemoon 27.9.1 Windows Windows NT 143 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 10 144 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows 10 145 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Windows Windows 7 146 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.2) Gecko/20150122 Firefox/31.9 PaleMoon/25.2.1 Browser Palemoon 25.2.1 Windows Windows 7 147 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 7 148 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 10 149 | Mozilla/5.0 (X11; Linux i686; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Linux Linux 150 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Windows Windows 10 151 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Windows Windows 7 152 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows 7 153 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 10 154 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.3) Gecko/20150308 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows 7 155 | Mozilla/5.0 (Windows NT 6.1; rv:25.2) Gecko/20150122 Firefox/31.9 PaleMoon/25.2.1 Browser Palemoon 25.2.1 Windows Windows 7 156 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows 7 157 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 10 158 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Windows Windows 7 159 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Linux Linux 160 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows 7 161 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.1 Browser Palemoon 27.9.1 Linux Linux 162 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Linux Linux 163 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Linux Linux 164 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Windows Windows 7 165 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 7 166 | Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20141026 Firefox/24.9 PaleMoon/25.0.2 Browser Palemoon 25.0.2 Linux Linux 167 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1 Browser Palemoon 24.3.1 Windows Windows 8 168 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:24.7) Gecko/20140907 Firefox/24.7 PaleMoon/24.7.2 Browser Palemoon 24.7.2 Windows Windows NT 169 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Linux Linux 170 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows NT 171 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0 Browser Palemoon 28.3.0 Windows Windows 10 172 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0a1 Browser Palemoon 28.3.0a1 Windows Windows XP 173 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Goanna/4.1 PaleMoon/28.2.0a1 Browser Palemoon 28.2.0a1 Windows Windows XP 174 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 7 175 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Windows Windows 10 176 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Windows Windows 10 177 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 7 178 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1 Browser Palemoon 27.8.1 Windows Windows 7 179 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Linux Linux 180 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.1 Browser Palemoon 27.4.1 Windows Windows 10 181 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Linux Linux 182 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 10 183 | Mozilla/5.0 (Windows NT 6.0; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows Vista 184 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.7) Gecko/20140907 Firefox/24.7 PaleMoon/24.7.2 Browser Palemoon 24.7.2 Windows Windows 8 185 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20141021 Firefox/24.9 PaleMoon/25.0.2 Browser Palemoon 25.0.2 Windows Windows 7 186 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 7 187 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Goanna/4.2 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 10 188 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.1 Browser Palemoon 28.4.1 Windows Windows 7 189 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Linux Linux 190 | Mozilla/5.0 (Windows NT 6.0; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows Vista 191 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Windows Windows 10 192 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows 10 193 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Linux Linux 194 | Mozilla/5.0 (Windows NT 6.1; rv:25.3) Gecko/20150308 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows 7 195 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.3) Gecko/20150308 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows NT 196 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 7 197 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.1 Browser Palemoon 28.4.1 Windows Windows 7 198 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Goanna/4.1 PaleMoon/28.5.0a1 Browser Palemoon 28.5.0a1 Windows Windows XP 199 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Linux Linux 200 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows 10 201 | Mozilla/5.0 (Windows NT 6.1; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 7 202 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 7 203 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 10 204 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows 10 205 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows 10 206 | Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20140315 Firefox/24.0 PaleMoon/24.4.1 Browser Palemoon 24.4.1 Windows Windows Vista 207 | Mozilla/5.0 (Windows NT 5.1; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows XP 208 | Mozilla/5.0 (X11; Linux i686; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Linux Linux 209 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.9) Gecko/20100913 Firefox/3.6.9 (Palemoon/3.6.9) GTB7.1 (.NET CLR 3.5.30729) Browser Palemoon 3.6.9 Windows Windows 7 210 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 10 211 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Windows Windows 10 212 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:3.2) Goanna/20170422 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows 10 213 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:2.1) Gecko/20100101 Goanna/20160629 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Windows Windows 10 214 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20140315 Firefox/24.0 PaleMoon/24.4.1 Browser Palemoon 24.4.1 Windows Windows 7 215 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.3 Browser Palemoon 26.0.3 Windows Windows 7 216 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Windows Windows 7 217 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1 Browser Palemoon 24.3.1 Windows Windows 7 218 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 7 219 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.0 Browser Palemoon 27.5.0 Linux Linux 220 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows 10 221 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.1 Browser Palemoon 27.4.1 Windows Windows 7 222 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.1 Browser Palemoon 27.4.1 Linux Linux 223 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 7 224 | Mozilla/5.0 (X11; Linux x86_64; rv:3.0) Goanna/20161117 PaleMoon/27.0.0 Browser Palemoon 27.0.0 Linux Linux 225 | Mozilla/5.0 (X11; Linux x86_64; rv:2.1) Gecko/20100101 Goanna/20160819 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Linux Linux 226 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows 10 227 | Mozilla/5.0 (Windows NT 6.2; WOW64; rv:25.3) Gecko/20150308 Firefox/31.9 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows 8 228 | Mozilla/5.0 (Windows NT 6.2; WOW64; rv:21.0) Gecko/20150122 Firefox/31.9 PaleMoon/25.2.1 Browser Palemoon 25.2.1 Windows Windows 8 229 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20141013 PaleMoon/25.0.1 Browser Palemoon 25.0.1 Windows Windows 7 230 | Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20140427 Firefox/24.0 PaleMoon/24.5.0 Browser Palemoon 24.5.0 Linux Linux 231 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:15.4) Gecko/20130122 Firefox/15.4.1-x64 PaleMoon/15.4.1-x64 Browser Palemoon 15.4.1-x64 Windows Windows 8 232 | Mozilla/5.0 (Windows NT 5.1; rv:9.2) Gecko/20120218 Firefox/9.2 PaleMoon/9.2 Browser Palemoon 9.2 Windows Windows XP 233 | Mozilla/5.0 (Windows NT 5.1; rv:24.7) Gecko/20140907 Firefox/24.7 PaleMoon/24.7.2 Browser Palemoon 24.7.2 Windows Windows XP 234 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows 7 235 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20110508 Firefox/4.0.6 PaleMoon/4.0.6 Browser Palemoon 4.0.6 Windows Windows 7 236 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 7 237 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.2 Browser Palemoon 27.1.2 Windows Windows 10 238 | Mozilla/5.0 (X11; Linux x86_64; rv:2.2) Gecko/20100101 Goanna/20160928 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Linux Linux 239 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows 7 240 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Linux Linux 241 | Mozilla/5.0 (Android; Mobile; rv:24.7) Gecko/24.7 Firefox/24.7 PaleMoon/24.7b2 Browser Palemoon 24.7b2 Android Android 242 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20140925 PaleMoon/25.0.0b3 Browser Palemoon 25.0.0b3 Windows Windows 7 243 | Mozilla/5.0 (Windows NT 5.1; rv:15.3) Gecko/20121202 Firefox/15.3.2 PaleMoon/15.3.2 Browser Palemoon 15.3.2 Windows Windows XP 244 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows 10 245 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.7) Gecko/20150929 Firefox/31.9 PaleMoon/25.7.2 Browser Palemoon 25.7.2 Windows Windows 7 246 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 7 247 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0 Browser Palemoon 28.3.0 Windows Windows 7 248 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101211 Firefox/3.6.13 (Palemoon/3.6.13) ( .NET CLR 3.5.30729) Browser Palemoon 3.6.13 Windows Windows XP 249 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Goanna/4.1 PaleMoon/28.1.0a1 Browser Palemoon 28.1.0a1 Windows Windows XP 250 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Windows Windows 7 251 | Mozilla/5.0 (X11; Linux x86_64; rv:3.0) Gecko/20100101 Goanna/20170207 PaleMoon/27.1.0 Browser Palemoon 27.1.0 Linux Linux 252 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Windows Windows 7 253 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.0 Browser Palemoon 27.5.0 Windows Windows 7 254 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Linux Linux 255 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Linux Linux 256 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.1) Gecko/20141110 Firefox/31.9 PaleMoon/25.1.0 Browser Palemoon 25.1.0 Windows Windows 7 257 | Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20131208 Firefox/24.0 PaleMoon/24.2.2 Browser Palemoon 24.2.2 Windows Windows 7 258 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 7 259 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.0 Browser Palemoon 26.1.0 Windows Windows 7 260 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.8) Gecko/20151116 Firefox/31.9 PaleMoon/25.8.0 Browser Palemoon 25.8.0 Windows Windows 7 261 | Mozilla/5.0 (X11; Linux i686; rv:24.7) Gecko/20140802 Firefox/24.7 PaleMoon/24.7.1 Browser Palemoon 24.7.1 Linux Linux 262 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.6) Gecko/20150723 Firefox/31.9 PaleMoon/25.6.0 Browser Palemoon 25.6.0 Windows Windows 7 263 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Windows Windows 10 264 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows NT 265 | Mozilla/5.0 (X11; Linux x86_64; rv:3.4) Goanna/20180415 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Linux Linux 266 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 7 267 | Mozilla/5.0 (Windows NT 5.0; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 2000 268 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 7 269 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1 Browser Palemoon 27.8.1 Windows Windows 10 270 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.1 Browser Palemoon 27.7.1 Windows Windows 10 271 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.1 Browser Palemoon 27.4.1 Linux Linux 272 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 10 273 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows 7 274 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows XP 275 | Mozilla/5.0 (X11; Linux x86_64; rv:25.2) Gecko/20150123 Firefox/31.9 PaleMoon/25.2.1 Browser Palemoon 25.2.1 Linux Linux 276 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.0 Browser Palemoon 26.1.0 Linux Linux 277 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 7 278 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Goanna/4.2 PaleMoon/28.6.0a1 Browser Palemoon 28.6.0a1 Windows Windows 7 279 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.9) Goanna/4.2 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 7 280 | Mozilla/5.0 (Windows NT 6.0; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.6 Browser Palemoon 27.9.6 Windows Windows Vista 281 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows 10 282 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0 Browser Palemoon 28.3.0 Linux Linux 283 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Linux Linux 284 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Windows Windows 10 285 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Windows Windows 7 286 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Windows Windows 7 287 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0a1 Browser Palemoon 27.9.0a1 Windows Windows XP 288 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Linux Linux 289 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.0 Browser Palemoon 27.6.0 Linux Linux 290 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.2 Browser Palemoon 27.1.2 Linux Linux 291 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 10 292 | Mozilla/5.0 (Android; Tablet; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.6 Browser Palemoon 25.9.6 Android Android 293 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows 7 294 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:12.2) Gecko/20120606 Firefox/12.2-x64 PaleMoon/12.2-x64 Browser Palemoon 12.2-x64 Windows Windows 7 295 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows 7 296 | Mozilla/5.0 (X11; Linux i686; rv:25.3) Gecko/20150323 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Linux Linux 297 | Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1 Browser Palemoon 24.3.1 Windows Windows 7 298 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Windows Windows 10 299 | Mozilla/5.0 (Windows NT 6.0; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Windows Windows Vista 300 | Mozilla/5.0 (X11; Linux x86_64; rv:25.7) Gecko/20151013 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Linux Linux 301 | Mozilla/5.0 (Windows NT 10.0; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 10 302 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 10 303 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.6.0a1 Browser Palemoon 28.6.0a1 Windows Windows XP 304 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.1 Browser Palemoon 28.4.1 Windows Windows 7 305 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0a1 Browser Palemoon 28.4.0a1 Linux Linux 306 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.0a1 Browser Palemoon 28.2.0a1 Windows Windows XP 307 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 10 308 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Goanna/4.1 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 10 309 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Windows Windows 7 310 | Mozilla/5.0 (Windows NT 6.0; WOW64; rv:3.4) Goanna/20180412 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows Vista 311 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Goanna/4.1 PaleMoon/28.0.0b2 Browser Palemoon 28.0.0b2 Windows Windows XP 312 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.3 Browser Palemoon 27.9.3 Linux Linux 313 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:3.4) Goanna/20180516 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 10 314 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.0 Browser Palemoon 27.5.0 Windows Windows 7 315 | Mozilla/5.0 (Windows NT 6.1; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows 7 316 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 10 317 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.3.0 Browser Palemoon 27.3.0 Windows Windows NT 318 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Linux Linux 319 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Linux Linux 320 | Mozilla/5.0 (Android; Mobile; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.4 Browser Palemoon 25.9.4 Android Android 321 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:2.0) Gecko/20100101 Goanna/20160120 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Macintosh OS X Puma 10.1 322 | Mozilla/5.0 (Windows NT 6.1; rv:1.0) Goanna/20150804 PaleMoon/26.0.0b1 Browser Palemoon 26.0.0b1 Windows Windows 7 323 | Mozilla/5.0 (Windows NT 6.1; rv:25.3) Gecko/20150323 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Windows Windows 7 324 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.3) Gecko/20150323 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Windows Windows 7 325 | Mozilla/5.0 (Windows NT 6.3; rv:25.3) Gecko/20150324 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Windows Windows NT 326 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.3) Gecko/20150308 PaleMoon/25.3.0 Browser Palemoon 25.3.0 Windows Windows 7 327 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:24.0) Gecko/20140208 Firefox/24.0 PaleMoon/24.3.2 Browser Palemoon 24.3.2 Windows Windows 7 328 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows XP 329 | Mozilla/5.0 (X11; Linux x86_64; rv:25.8) Gecko/20151116 Firefox/31.9 PaleMoon/25.8.0 Browser Palemoon 25.8.0 Linux Linux 330 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows 7 331 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows NT 332 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Goanna/4.2 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Linux Linux 333 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 7 334 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows NT 335 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 10 336 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Goanna/4.1 PaleMoon/28.3.0a1 Browser Palemoon 28.3.0a1 Windows Windows XP 337 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Windows Windows 7 338 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Goanna/4.1 PaleMoon/28.0.0b4 Browser Palemoon 28.0.0b4 Windows Windows XP 339 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows 7 340 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows 7 341 | Mozilla/5.0 (Windows NT 5.1; rv:3.4) Gecko/20100101 Goanna/20171204 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows XP 342 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.0 Browser Palemoon 27.5.0 Windows Windows 10 343 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows NT 344 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Linux Linux 345 | Mozilla/5.0 (Windows NT 6.1; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 7 346 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.1 Browser Palemoon 26.4.1 Windows Windows 7 347 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0.1 Browser Palemoon 26.4.0.1 Linux Linux 348 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Linux Linux 349 | Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1 Browser Palemoon 24.3.1 Windows Windows XP 350 | Mozilla/5.0 (masking-agent; rv:24.0) Gecko/20130926 Firefox/24.0 PaleMoon/24.0.2 Browser Palemoon 24.0.2 unknown unknown 351 | Mozilla/5.0 (Android; Mobile; rv:25.8) Gecko/25.8 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Android Android 352 | Mozilla/5.0 (Android; Mobile; rv:25.4) Gecko/25.4 Firefox/31.9 PaleMoon/25.4.1 Browser Palemoon 25.4.1 Android Android 353 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 7 354 | Mozilla/5.0 (Windows NT 5.2; rv:20.0) Gecko/20130518 Firefox/20.0 PaleMoon/20.1 Browser Palemoon 20.1 Windows Windows Server 2003 355 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1 Browser Palemoon 27.8.1 Linux Linux 356 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.0a1 Browser Palemoon 27.8.0a1 Windows Windows XP 357 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 7 358 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.1 Browser Palemoon 27.4.1 Windows Windows 7 359 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Windows Windows 10 360 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Linux Linux 361 | Mozilla/5.0 (Windows NT 5.1; rv:2.2) Gecko/20100101 Goanna/20160924 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows XP 362 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.2 Browser Palemoon 27.1.2 Windows Windows 7 363 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.1 Browser Palemoon 27.1.1 Windows Windows 10 364 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:3.0) Gecko/20100101 Goanna/20161117 PaleMoon/27.0.0 Browser Palemoon 27.0.0 Windows Windows 7 365 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows 7 366 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0.1 Browser Palemoon 26.4.0.1 Linux Linux 367 | Mozilla/5.0 (Windows; rv:MircoXP) Gecko/20100101 Firefox/99.9 PaleMoon/ Browser Palemoon unknown unknown 368 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.1 Browser Palemoon 26.3.1 Windows Windows 10 369 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows XP 370 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows NT 371 | Mozilla/5.0 (X11; Linux x86_64; rv:25.3) Gecko/20150323 Firefox/31.9 PaleMoon/25.3.1 Browser Palemoon 25.3.1 Linux Linux 372 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20140329 Firefox/24.0 PaleMoon/24.4.2 Browser Palemoon 24.4.2 Windows Windows 7 373 | Mozilla/5.0 (Windows NT 6.1; rv:15.3) Gecko/20121202 Firefox/15.3.2 PaleMoon/15.3.2 Browser Palemoon 15.3.2 Windows Windows 7 374 | Mozilla/5.0 (Android; Mobile; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.0 Browser Palemoon 25.9.0 Android Android 375 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:2.0) Gecko/20100101 Goanna/20160222 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 10 376 | Mozilla/5.0 (Windows NT 5.1; rv:25.5) Gecko/20150609 Firefox/31.9 PaleMoon/25.5.0 Browser Palemoon 25.5.0 Windows Windows XP 377 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:25.8) Gecko/20151126 Firefox/31.9 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows NT 378 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.8) Gecko/20151116 Firefox/31.9 PaleMoon/25.8.0 Browser Palemoon 25.8.0 Windows Windows 7 379 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows NT 380 | Mozilla/5.0 (Windows NT 6.1; rv:25.5) Gecko/20150607 Firefox/31.9 PaleMoon/25.5.0 Browser Palemoon 25.5.0 Windows Windows 7 381 | Mozilla/5.0 (X11; Linux x86_64; rv:25.7) Gecko/20150820 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Linux Linux 382 | Mozilla/5.0 (X11; Linux i686; rv:25.7) Gecko/20150820 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Linux Linux 383 | Mozilla/5.0 (Windows NT 6.1; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 7 384 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.2 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows 10 385 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Windows Windows NT 386 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0 Browser Palemoon 28.4.0 Windows Windows 7 387 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0 Browser Palemoon 28.3.0 Windows Windows 10 388 | Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100403 Firefox/3.6.3 (Palemoon/3.6.3) GTB7.1 Browser Palemoon 3.6.3 Windows Windows Vista 389 | Mozilla/5.0 (Windows NT 6.1; rv:25.2) Gecko/20150122 Firefox/31.9 PaleMoon/25.2.1 AppEngine-Google; (+http://code.google.com/appengine; appid: s~pxyfatgfw1) Browser Palemoon 25.2.1 Windows Windows 7 390 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Goanna/4.1 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Linux Linux 391 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1 Browser Palemoon 28.0.1 Windows Windows 10 392 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Windows Windows 7 393 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 7 394 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Linux Linux 395 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows 10 396 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 10 397 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 10 398 | Mozilla/5.0 (X11; Linux x86_64; rv:3.4) Goanna/20180202 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Linux Linux 399 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.1 Browser Palemoon 27.7.1 Windows Windows 7 400 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.0 Browser Palemoon 27.7.0 Windows Windows 7 401 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.0a2 Browser Palemoon 27.7.0a2 Windows Windows XP 402 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Windows Windows 10 403 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Windows Windows 10 404 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Windows Windows 7 405 | Mozilla/5.0 (Windows NT 6.1; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 7 406 | Mozilla/5.0 (X11; Linux i686; rv:2.1) Gecko/20100101 Goanna/20160705 PaleMoon/26.3.3 Browser Palemoon 26.3.3 Linux Linux 407 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.1 Browser Palemoon 27.1.1 Linux Linux 408 | Mozilla/5.0 (Windows NT 6.1; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Windows Windows 7 409 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:15.0) Gecko/20120912 Firefox/15.1-x64 PaleMoon/15.1-x64 Browser Palemoon 15.1-x64 Windows Windows 7 410 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.1 Browser Palemoon 26.4.1 Windows Windows 10 411 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.1 Browser Palemoon 26.4.1 Windows Windows 7 412 | Mozilla/5.0 (Windows NT 5.1; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows XP 413 | Mozilla/5.0 (Android; Mobile; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.2 Browser Palemoon 25.9.2 Android Android 414 | Mozilla/5.0 (X11; Linux x86_64; rv:25.1) Gecko/20141127 PaleMoon/25.1.0 Browser Palemoon 25.1.0 Linux Linux 415 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.1) Gecko/20141110 PaleMoon/25.1.0 Browser Palemoon 25.1.0 Windows Windows 7 416 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.0) Gecko/20140208 Firefox/24.0 PaleMoon/24.3.2 Browser Palemoon 24.3.2 Windows Windows 8 417 | Mozilla/5.0 (X11; Linux x86_64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Linux Linux 418 | Mozilla/5.0 (Windows NT 5.1; rv:25.7) Gecko/20151012 Firefox/31.9 PaleMoon/25.7.3 Browser Palemoon 25.7.3 Windows Windows XP 419 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1 Browser Palemoon 24.3.1 Windows Windows NT 420 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows NT 421 | Mozilla/5.0 (Windows NT 6.0; rv:1.0) Goanna/20150828 Gecko/20100101 PaleMoon/26.0.0b2 Browser Palemoon 26.0.0b2 Windows Windows Vista 422 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.9) Gecko/20100101 Goanna/4.2 Firefox/60.9 PaleMoon/28.5.1 Browser Palemoon 28.5.1 Windows Windows 7 423 | Mozilla/5.0 (X11; Linux x86_64; rv:60.9) Goanna/4.2 PaleMoon/28.5.0 Browser Palemoon 28.5.0 Linux Linux 424 | Mozilla/5.0 (X11; Slackware Linux x86_64; rv:4.1) Goanna/20170101 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Linux Linux 425 | Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100403 Firefox/3.6.3 (Palemoon/3.6.3) ( .NET CLR 3.5.30729) Browser Palemoon 3.6.3 Windows Windows Vista 426 | Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100403 Firefox/3.6.3 (Palemoon/3.6.3) Browser Palemoon 3.6.3 Windows Windows Vista 427 | Mozilla/5.0 (X11; Linux i686; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Linux Linux 428 | Mozilla/5.0 (X11; Linux i686; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Linux Linux 429 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/4.1 PaleMoon/28.1.0 Browser Palemoon 28.1.0 Windows Windows 7 430 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0 Browser Palemoon 28.0.0 Linux Linux 431 | Mozilla/5.0 (X11; Linux i686; rv:3.4) Gecko/20100101 Goanna/20180518 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Linux Linux 432 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 7 433 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2 Browser Palemoon 27.9.2 Windows Windows 10 434 | Mozilla/5.0 (Windows NT 6.3; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows NT 435 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3 Browser Palemoon 27.8.3 Windows Windows 7 436 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.2 Browser Palemoon 27.8.2 Windows Windows 10 437 | Mozilla/5.0 (X11; Linux x86_64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.0 Browser Palemoon 27.8.0 Linux Linux 438 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Windows Windows 10 439 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.0 Browser Palemoon 27.6.0 Linux Linux 440 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.0 Browser Palemoon 27.6.0 Windows Windows 10 441 | Mozilla/5.0 (X11; Linux i686; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Linux Linux 442 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.1 Browser Palemoon 27.5.1 Windows Windows 7 443 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.0 Browser Palemoon 27.1.0 Linux Linux 444 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:3.0) Goanna/20161214 PaleMoon/27.0.3 Browser Palemoon 27.0.3 Windows Windows 10 445 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.2 Browser Palemoon 27.0.2 Windows Windows 10 446 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.0.0 Browser Palemoon 27.0.0 Windows Windows 7 447 | Mozilla/5.0 (Windows NT 10.0; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows 10 448 | Mozilla/5.0 (Windows NT 6.0; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows Vista 449 | Mozilla/5.0 (Windows NT 10.0; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.1 Browser Palemoon 26.4.1 Windows Windows 10 450 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/2.1 Firefox/45.9 PaleMoon/26.3.0 Browser Palemoon 26.3.0 Windows Windows 7 451 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.3.2 Browser Palemoon 26.3.2 Windows Windows 10 452 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:2.1) Gecko/20100101 Goanna/20160623 PaleMoon/26.3.1 Browser Palemoon 26.3.1 Windows Windows 10 453 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/2.1 Firefox/45.9 PaleMoon/26.3.0 Browser Palemoon 26.3.0 Linux Linux 454 | Mozilla/5.0 (X11; Linux i686; rv:45.9) Gecko/20100101 Goanna/2.1 Firefox/45.9 PaleMoon/26.3.0 Browser Palemoon 26.3.0 Linux Linux 455 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.2 Browser Palemoon 26.2.2 Windows Windows NT 456 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:24.7) Gecko/20140802 Firefox/24.7 PaleMoon/24.7.1 Browser Palemoon 24.7.1 Windows Windows 7 457 | Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.0) Gecko/20140329 Firefox/24.0 PaleMoon/24.4.2 Browser Palemoon 24.4.2 Windows Windows 8 458 | Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20130925 Firefox/24.0 PaleMoon/24.0.2 Browser Palemoon 24.0.2 Windows Windows XP 459 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:20.3) Gecko/20130809 Firefox/20.3 PaleMoon/20.3-x64 Browser Palemoon 20.3-x64 Windows Windows 7 460 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:15.3) Gecko/20121203 Firefox/15.3.2-x64 PaleMoon/15.3.2-x64 Browser Palemoon 15.3.2-x64 Windows Windows 7 461 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.1) Gecko/20120516 Firefox/12.1 PaleMoon/12.1 Browser Palemoon 12.1 Windows Windows 7 462 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows NT 463 | Mozilla/5.0 (Windows NT 6.0; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows Vista 464 | Mozilla/5.0 (Android; Mobile; rv:25.7) Gecko/25.7 Firefox/31.9 PaleMoon/25.7.3.1 Browser Palemoon 25.7.3.1 Android Android 465 | Mozilla/5.0 (X11; Linux x86_64; rv:25.6) Gecko/20150723 Firefox/31.9 PaleMoon/25.6.0 Browser Palemoon 25.6.0 Linux Linux 466 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Goanna/4.2 PaleMoon/28.5.2 Browser Palemoon 28.5.2 Windows Windows 10 467 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.6 Browser Palemoon 27.9.6 Windows Windows XP 468 | Mozilla/5.0 (Windows NT 5.1; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.4.0a1 Browser Palemoon 28.4.0a1 Windows Windows XP 469 | Mozilla/5.0 (X11; Linux i686; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.0 Browser Palemoon 28.3.0 Linux Linux 470 | Mozilla/5.0 (Windows NT 10.0; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows 10 471 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Goanna/4.1 PaleMoon/28.3.1 Browser Palemoon 28.3.1 Windows Windows 10 472 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 PaleMoon/28.2.2 Browser Palemoon 28.2.2 Windows Windows 10 473 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4.1 Browser Palemoon 27.9.4.1 Windows Windows XP 474 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.8) Gecko/20100727 Firefox/3.6.8 (Palemoon/3.6.8) GTB7.1 Browser Palemoon 3.6.8 Windows Windows 7 475 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:60.9) Gecko/20100101 Goanna/4.1 Firefox/60.9 PaleMoon/28.2.1 Browser Palemoon 28.2.1 Windows Windows NT 476 | Mozilla/6.0 (Windows NT 10.0; Win64; x64 de) Gecko/20150929 Palemoon/25 Browser Palemoon 25 Windows Windows 10 477 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.0.1 Browser Palemoon 28.0.0.1 Windows Windows 10 478 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:3.4) Gecko/20100101 Goanna/20180719 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Macintosh OS X Snow Leopard 10.6 479 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.4 Browser Palemoon 27.9.4 Windows Windows 10 480 | Mozilla/5.0 (X11; U; OpenBSD i686; rv:25.6) Gecko/20150723 PaleMoon/25.6.0 Browser Palemoon 25.6.0 Linux OpenBSD 481 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows 10 482 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0 Browser Palemoon 27.9.0 Windows Windows 7 483 | Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.2 Browser Palemoon 27.7.2 Windows Windows XP 484 | Mozilla/5.0 (Windows NT 10.0; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.4.0 Browser Palemoon 27.4.0 Windows Windows 10 485 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:3.4) Goanna/20171124 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 10 486 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:3.4) Goanna/20171124 PaleMoon/27.6.2 Browser Palemoon 27.6.2 Windows Windows 7 487 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Windows Windows 7 488 | Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.6.1 Browser Palemoon 27.6.1 Windows Windows 7 489 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:45.9) Gecko/20100101 Goanna/3.2 Firefox/45.9 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Macintosh OS X Snow Leopard 10.6 490 | Mozilla/5.0 (Windows NT 5.1; rv:25.5) Gecko/20150620 Firefox/31.9 PaleMoon/25.5.0 Browser Palemoon 25.5.0 Windows Windows XP 491 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Goanna/3.3 Firefox/52.9 PaleMoon/27.5.0 Browser Palemoon 27.5.0 Windows Windows 10 492 | Mozilla/5.0 (Windows NT 5.1; rv:3.2) Gecko/20100101 Goanna/20170830 PaleMoon/27.4.2 Browser Palemoon 27.4.2 Windows Windows XP 493 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:3.2) Goanna/20170322 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Windows Windows 10 494 | Mozilla/5.0 (X11; Linux x86_64; rv:3.2) Goanna/20170322 PaleMoon/27.2.1 Browser Palemoon 27.2.1 Linux Linux 495 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.2 Browser Palemoon 27.1.2 Windows Windows 7 496 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.1 Browser Palemoon 27.1.1 Linux Linux 497 | Mozilla/5.0 (X11; Linux x86_64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.0 Browser Palemoon 27.1.0 Linux Linux 498 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.9) Gecko/20100101 Goanna/3.0 Firefox/45.9 PaleMoon/27.1.0 Browser Palemoon 27.1.0 Windows Windows 10 499 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:3.0) Gecko/20100101 Goanna/20161117 PaleMoon/27.0.0 Browser Palemoon 27.0.0 Windows Windows 7 500 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.2 Firefox/38.9 PaleMoon/26.5.0 Browser Palemoon 26.5.0 Windows Windows NT 501 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0 Browser Palemoon 26.4.0 Windows Windows 7 502 | Mozilla/5.0 (Android; Mobile; rv:25.9) Gecko/25.9 Firefox/31.9 PaleMoon/25.9.5 Browser Palemoon 25.9.5 Android Android 503 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.2.1 Browser Palemoon 26.2.1 Windows Windows 7 504 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.5) Gecko/20150608 Firefox/31.9 PaleMoon/25.5.0 Browser Palemoon 25.5.0 Windows Windows 7 505 | Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/24.9 PaleMoon/25.0 Browser Palemoon 25.0 Linux Linux 506 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20140419 Firefox/24.0 PaleMoon/24.5.0 Browser Palemoon 24.5.0 Windows Windows 7 507 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:20.0) Gecko/20130409 Firefox/20.0 PaleMoon/20.0.1-x64 Browser Palemoon 20.0.1-x64 Windows Windows 7 508 | Mozilla/5.0 (Windows NT 6.1; rv:19.0) Gecko/20130308 Firefox/19.0 PaleMoon/19.0.2 Browser Palemoon 19.0.2 Windows Windows 7 509 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20130223 Firefox/19.0 PaleMoon/19.0.1 Browser Palemoon 19.0.1 Windows Windows 7 510 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Goanna/20160222 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Windows Windows 7 511 | Mozilla/5.0 (X11; Linux i686; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.1 Browser Palemoon 26.1.1 Linux Linux 512 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.1.0 Browser Palemoon 26.1.0 Windows Windows NT 513 | Mozilla/5.0 (Windows NT 6.1; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.0 Browser Palemoon 26.0.0 Windows Windows 7 514 | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:25.8) Gecko/20151126 PaleMoon/25.8.1 Browser Palemoon 25.8.1 Windows Windows 10 515 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.11) Gecko/20101023 Firefox/3.6.11 (Palemoon/3.6.11) ( .NET CLR 3.5.30729; .NET4.0E) Browser Palemoon 3.6.11 Windows Windows 7 516 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:25.6) Gecko/20150723 Firefox/31.9 PaleMoon/25.6.0 Browser Palemoon 25.6.0 Windows Windows 10 517 | Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20140125 Firefox/24.0 PaleMoon/24.3.0 Browser Palemoon 24.3.0 Windows Windows Vista 518 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:25.8) Gecko/20151116 Firefox/31.9 PaleMoon/25.8.0 Browser Palemoon 25.8.0 Windows Windows NT 519 | Mozilla/5.0 (X11; Linux x86_64; rv:25.7) Gecko/20150820 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Linux Linux 520 | Mozilla/5.0 (Windows NT 6.1; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows 7 521 | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:25.7) Gecko/20150824 Firefox/31.9 PaleMoon/25.7.0 Browser Palemoon 25.7.0 Windows Windows NT --------------------------------------------------------------------------------