Full Code of faisalman/ua-parser-js for AI

master 83e934fec206 cached
231 files
1.2 MB
398.1k tokens
80 symbols
1 requests
Download .txt
Showing preview only (1,265K chars total). Download the full file or copy to clipboard to get everything.
Repository: faisalman/ua-parser-js
Branch: master
Commit: 83e934fec206
Files: 231
Total size: 1.2 MB

Directory structure:
gitextract_gju4zwmr/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   └── pull_request_template.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── funding.yml
│   └── workflows/
│       ├── analysis-codeql.yml
│       ├── analysis-dependency.yml
│       ├── analysis-scorecard.yml
│       ├── publish-github-packages.yml
│       ├── publish-npm-packages.yml
│       └── test-ci.yml
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── SECURITY.md
├── dist/
│   ├── icons/
│   │   ├── color/
│   │   │   └── LICENSE.md
│   │   └── mono/
│   │       └── LICENSE.md
│   ├── ua-parser.html
│   ├── ua-parser.min.mjs
│   ├── ua-parser.pack.js
│   └── ua-parser.pack.mjs
├── package.json
├── script/
│   ├── build-dist.sh
│   ├── build-esm.js
│   ├── cli.js
│   └── test-all.sh
├── src/
│   ├── bot-detection/
│   │   ├── bot-detection.d.ts
│   │   ├── bot-detection.js
│   │   └── bot-detection.mjs
│   ├── browser-detection/
│   │   ├── browser-detection.d.ts
│   │   ├── browser-detection.js
│   │   └── browser-detection.mjs
│   ├── device-detection/
│   │   ├── device-detection.d.ts
│   │   ├── device-detection.js
│   │   └── device-detection.mjs
│   ├── enums/
│   │   ├── ua-parser-enums.d.ts
│   │   ├── ua-parser-enums.js
│   │   └── ua-parser-enums.mjs
│   ├── extensions/
│   │   ├── ua-parser-extensions.d.ts
│   │   ├── ua-parser-extensions.js
│   │   └── ua-parser-extensions.mjs
│   ├── helpers/
│   │   ├── ua-parser-helpers.d.ts
│   │   ├── ua-parser-helpers.js
│   │   └── ua-parser-helpers.mjs
│   └── main/
│       ├── ua-parser.d.ts
│       ├── ua-parser.js
│       └── ua-parser.mjs
└── test/
    ├── data/
    │   ├── ua/
    │   │   ├── browser/
    │   │   │   └── browser-all.json
    │   │   ├── cpu/
    │   │   │   └── cpu-all.json
    │   │   ├── device/
    │   │   │   ├── _others.json
    │   │   │   ├── acer.json
    │   │   │   ├── advan.json
    │   │   │   ├── alcatel.json
    │   │   │   ├── amazon.json
    │   │   │   ├── anbernic.json
    │   │   │   ├── apple.json
    │   │   │   ├── archos.json
    │   │   │   ├── asus.json
    │   │   │   ├── blackberry.json
    │   │   │   ├── blackview.json
    │   │   │   ├── blu.json
    │   │   │   ├── cat.json
    │   │   │   ├── coolpad.json
    │   │   │   ├── cubot.json
    │   │   │   ├── energizer.json
    │   │   │   ├── facebook.json
    │   │   │   ├── fairphone.json
    │   │   │   ├── google.json
    │   │   │   ├── hisense.json
    │   │   │   ├── hmd.json
    │   │   │   ├── honor.json
    │   │   │   ├── htc.json
    │   │   │   ├── huawei.json
    │   │   │   ├── imo.json
    │   │   │   ├── infinix.json
    │   │   │   ├── itel.json
    │   │   │   ├── jolla.json
    │   │   │   ├── kobo.json
    │   │   │   ├── lava.json
    │   │   │   ├── lenovo.json
    │   │   │   ├── lg.json
    │   │   │   ├── logitech.json
    │   │   │   ├── meizu.json
    │   │   │   ├── micromax.json
    │   │   │   ├── microsoft.json
    │   │   │   ├── motorola.json
    │   │   │   ├── nintendo.json
    │   │   │   ├── nokia.json
    │   │   │   ├── nothing.json
    │   │   │   ├── nvidia.json
    │   │   │   ├── oneplus.json
    │   │   │   ├── oppo.json
    │   │   │   ├── ouya.json
    │   │   │   ├── panasonic.json
    │   │   │   ├── philips.json
    │   │   │   ├── pico.json
    │   │   │   ├── polytron.json
    │   │   │   ├── realme.json
    │   │   │   ├── retroid.json
    │   │   │   ├── roku.json
    │   │   │   ├── samsung.json
    │   │   │   ├── sharp.json
    │   │   │   ├── smartfren.json
    │   │   │   ├── sony.json
    │   │   │   ├── t-mobile.json
    │   │   │   ├── tcl.json
    │   │   │   ├── technisat.json
    │   │   │   ├── tecno.json
    │   │   │   ├── tesla.json
    │   │   │   ├── ulefone.json
    │   │   │   ├── valve.json
    │   │   │   ├── vivo.json
    │   │   │   ├── vizio.json
    │   │   │   ├── wiko.json
    │   │   │   ├── xiaomi.json
    │   │   │   └── zte.json
    │   │   ├── engine/
    │   │   │   └── engine-all.json
    │   │   ├── extension/
    │   │   │   ├── cli.json
    │   │   │   ├── crawler.json
    │   │   │   ├── email.json
    │   │   │   ├── extra-devices.json
    │   │   │   ├── fetcher.json
    │   │   │   ├── inapp.json
    │   │   │   ├── library.json
    │   │   │   ├── mediaplayer.json
    │   │   │   └── vehicle.json
    │   │   └── os/
    │   │       ├── aix.json
    │   │       ├── amigaos.json
    │   │       ├── android-x86.json
    │   │       ├── android.json
    │   │       ├── arcaos.json
    │   │       ├── arch.json
    │   │       ├── bada.json
    │   │       ├── beos.json
    │   │       ├── blackberry.json
    │   │       ├── centos.json
    │   │       ├── chrome-os.json
    │   │       ├── chromecast-android.json
    │   │       ├── chromecast-fuchsia.json
    │   │       ├── chromecast-linux.json
    │   │       ├── chromecast-smartspeaker.json
    │   │       ├── contiki.json
    │   │       ├── debian.json
    │   │       ├── deepin.json
    │   │       ├── dragonfly.json
    │   │       ├── elementary-os.json
    │   │       ├── fedora.json
    │   │       ├── firefox-os.json
    │   │       ├── freebsd.json
    │   │       ├── fuchsia.json
    │   │       ├── gentoo.json
    │   │       ├── ghostbsd.json
    │   │       ├── haiku.json
    │   │       ├── harmonyos.json
    │   │       ├── hp-ux.json
    │   │       ├── hurd.json
    │   │       ├── ios.json
    │   │       ├── joli.json
    │   │       ├── kaios.json
    │   │       ├── knoppix.json
    │   │       ├── kubuntu.json
    │   │       ├── linpus.json
    │   │       ├── linspire.json
    │   │       ├── linux.json
    │   │       ├── macos.json
    │   │       ├── maemo.json
    │   │       ├── mandriva.json
    │   │       ├── manjaro.json
    │   │       ├── meego.json
    │   │       ├── minix.json
    │   │       ├── mint.json
    │   │       ├── morphos.json
    │   │       ├── netbsd.json
    │   │       ├── netrange.json
    │   │       ├── nettv.json
    │   │       ├── nintendo.json
    │   │       ├── openbsd.json
    │   │       ├── openharmony.json
    │   │       ├── os2.json
    │   │       ├── palm.json
    │   │       ├── pclinuxos.json
    │   │       ├── pico.json
    │   │       ├── plan9.json
    │   │       ├── playstation.json
    │   │       ├── qnx.json
    │   │       ├── raspbian.json
    │   │       ├── redhat.json
    │   │       ├── rim-tablet-os.json
    │   │       ├── risc-os.json
    │   │       ├── sabayon.json
    │   │       ├── sailfish.json
    │   │       ├── serenityos.json
    │   │       ├── series40.json
    │   │       ├── slackware.json
    │   │       ├── solaris.json
    │   │       ├── suse.json
    │   │       ├── symbian.json
    │   │       ├── tizen.json
    │   │       ├── ubuntu-touch.json
    │   │       ├── ubuntu.json
    │   │       ├── unix.json
    │   │       ├── vegaos.json
    │   │       ├── watchos.json
    │   │       ├── webos.json
    │   │       ├── windows-ce.json
    │   │       ├── windows-iot.json
    │   │       ├── windows-mobile.json
    │   │       ├── windows-phone.json
    │   │       ├── windows-rt.json
    │   │       ├── windows.json
    │   │       ├── xbox.json
    │   │       ├── xubuntu.json
    │   │       └── zenwalk.json
    │   └── ua-ch/
    │       └── headers.js
    ├── e2e/
    │   └── browser.spec.mjs
    ├── fuzz/
    │   └── redos.js
    ├── static/
    │   └── dts-lint.ts
    └── unit/
        ├── cli/
        │   ├── cli.spec.js
        │   ├── input.txt
        │   └── output.json
        ├── es6.mjs
        ├── main.js
        ├── submodules/
        │   ├── bot-detection.spec.js
        │   ├── browser-detection.spec.js
        │   ├── device-detection.spec.js
        │   ├── extensions.spec.js
        │   └── helpers.spec.js
        └── ua-ch.js

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Library version**
Which version of the library that you use, eg: v0.7.35 or v2.0.0-alpha.3

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen, or what's referred in the docs https://docs.uaparser.dev/

**Screenshots**
If applicable, add screenshots to help explain your problem.

For issues related to detection results, you can send the screenshots of the demo section at https://uaparser.dev/#demo to confirm.

**Desktop (please complete the following information):**
 - OS: [e.g. iOS]
 - Browser [e.g. chrome, safari]
 - Version [e.g. 22]

**Smartphone (please complete the following information):**
 - Device: [e.g. iPhone6]
 - OS: [e.g. iOS8.1]
 - Browser [e.g. stock browser, safari]
 - Version [e.g. 22]

**Additional context**
Add any other context about the problem here.

================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.


================================================
FILE: .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
================================================
- [ ] I have read and accept the [Contributor License Agreement (CLA)](https://gist.github.com/faisalman/2ed16621ebb544157eba85a7f7381417) Document and I hereby sign the CLA

================================================
FILE: .github/PULL_REQUEST_TEMPLATE.md
================================================
# Prerequisites

- [ ] I have read and follow the [contributing](https://github.com/faisalman/ua-parser-js/blob/master/CONTRIBUTING.md) guidelines
- [ ] I have read and accept the [Contributor License Agreement (CLA)](https://gist.github.com/faisalman/2ed16621ebb544157eba85a7f7381417) Document and I hereby sign the CLA

# Type of Change

Bug fix, feature, docs update, ...

# Description

Please include a summary of the change (current behavior vs new behavior), which issue is fixed (you can also link to an open issue here), and why this change is necessary.

# Test

Please describe the tests that you ran to verify your changes.

# Impact

Does this PR introduce a breaking change? What changes might users need to make due to this PR?

# Other Info

================================================
FILE: .github/funding.yml
================================================
# These are supported funding model platforms

github: faisalman
patreon: # Replace with a single Patreon username
open_collective: ua-parser-js
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ['https://www.paypal.me/faisalman/', 'https://uaparser.dev']


================================================
FILE: .github/workflows/analysis-codeql.yml
================================================
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: CodeQL Analysis

on:
  push:
    branches: [ "master"]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [ "master" ]
  schedule:
    - cron: '15 6 * * 0'

permissions: read-all

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest
    permissions:
      actions: read
      contents: read
      security-events: write

    strategy:
      fail-fast: false
      matrix:
        language: [ 'javascript' ]
        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
        # Use only 'java' to analyze code written in Java, Kotlin or both
        # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
        # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

    steps:
    - name: Checkout repository
      uses: actions/checkout@v3

    # Initializes the CodeQL tools for scanning.
    - name: Initialize CodeQL
      uses: github/codeql-action/init@v2
      with:
        languages: ${{ matrix.language }}
        # If you wish to specify custom queries, you can do so here or in a config file.
        # By default, queries listed here will override any specified in a config file.
        # Prefix the list here with "+" to use these queries and those in the config file.

        # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
        # queries: security-extended,security-and-quality


    # Autobuild attempts to build any compiled languages  (C/C++, C#, Go, or Java).
    # If this step fails, then you should remove it and run the build manually (see below)
    # - name: Autobuild
    #  uses: github/codeql-action/autobuild@v2

    # ℹ️ Command-line programs to run using the OS shell.
    # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

    #   If the Autobuild fails above, remove it and uncomment the following three lines.
    #   modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

    # - run: |
    #     echo "Run, Build Application using script"
    #     ./location_of_script_within_repo/buildscript.sh

    - name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v2
      with:
        category: "/language:${{matrix.language}}"


================================================
FILE: .github/workflows/analysis-dependency.yml
================================================
# Dependency Review Action
#
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
#
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: Dependency Analysis
on: [pull_request]

permissions:
  contents: read

jobs:
  dependency-review:
    runs-on: ubuntu-latest
    steps:
      - name: 'Checkout Repository'
        uses: actions/checkout@v3
      - name: 'Dependency Review'
        uses: actions/dependency-review-action@v2


================================================
FILE: .github/workflows/analysis-scorecard.yml
================================================
# This workflow uses actions that are not certified by GitHub. They are provided
# by a third-party and are governed by separate terms of service, privacy
# policy, and support documentation.

name: OpenSSF's Scorecard Analysis
on:
  # For Branch-Protection check. Only the default branch is supported. See
  # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
  branch_protection_rule:
  # To guarantee Maintained check is occasionally updated. See
  # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
  schedule:
    - cron: '45 2 * * 4'
  push:
    branches: [ "master" ]

# Declare default permissions as read only.
permissions: read-all

jobs:
  analysis:
    name: Scorecard analysis
    runs-on: ubuntu-latest
    permissions:
      # Needed to upload the results to code-scanning dashboard.
      security-events: write
      # Needed to publish results and get a badge (see publish_results below).
      id-token: write
      # Uncomment the permissions below if installing in a private repository.
      # contents: read
      # actions: read

    steps:
      - name: "Checkout code"
        uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
        with:
          persist-credentials: false

      - name: "Run analysis"
        uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2
        with:
          results_file: results.sarif
          results_format: sarif
          # (Optional) "write" PAT token. Uncomment the `repo_token` line below if:
          # - you want to enable the Branch-Protection check on a *public* repository, or
          # - you are installing Scorecard on a *private* repository
          # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
          repo_token: ${{ secrets.SCORECARD_TOKEN }}

          # Public repositories:
          #   - Publish results to OpenSSF REST API for easy access by consumers
          #   - Allows the repository to include the Scorecard badge.
          #   - See https://github.com/ossf/scorecard-action#publishing-results.
          # For private repositories:
          #   - `publish_results` will always be set to `false`, regardless
          #     of the value entered here.
          publish_results: true

      # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
      # format to the repository Actions tab.
      - name: "Upload artifact"
        uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
        with:
          name: SARIF file
          path: results.sarif
          retention-days: 5

      # Upload the results to GitHub's code scanning dashboard.
      - name: "Upload to code-scanning"
        uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
        with:
          sarif_file: results.sarif


================================================
FILE: .github/workflows/publish-github-packages.yml
================================================
name: Publish to GitHub Package

on:
  release:
    types: [published]

jobs:
  build:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '18.x'
          registry-url: https://npm.pkg.github.com/
      - run: npm ci
      - run: npm publish
        env:
          NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

================================================
FILE: .github/workflows/publish-npm-packages.yml
================================================
name: Publish to NPM

on:
 release:
   types: [published]

jobs:
 build:
   runs-on: ubuntu-latest
   permissions:
     contents: read
     id-token: write
   steps:
     - uses: actions/checkout@v3
     - uses: actions/setup-node@v3
       with:
         node-version: '18.x'
         registry-url: 'https://registry.npmjs.org'
     - run: npm install -g npm
     - run: npm ci
     - run: npm publish --provenance --access public
       env:
         NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

================================================
FILE: .github/workflows/test-ci.yml
================================================
name: UAParser.js CI-Test

on: [push, pull_request]

permissions:
  contents: read

jobs:
  run-test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        arch: [amd64]
        node-version: ['22.13', 'lts/*']
        include:
          - arch: ppc64le
            node-version: 20
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with: 
          node-version:  ${{ matrix.node-version }}
      - name: Run the test
        run: |
          echo "Running on ubuntu-latest-${{ matrix.arch }} with node version set as ${{ matrix.node-version }}"
          npm ci
          npx playwright install --with-deps
          npm test


================================================
FILE: .gitignore
================================================
node_modules/
npm-debug.log
playwright-report/
test-results/

### vim ###
.*.s[a-w][a-z]
*.un~
Session.vim
.netrwhist
*~
.versions

### editors ###
.vscode
.idea
*.sublime-*

### OSX ###
.DS_Store
.AppleDouble
.LSOverride
Icon

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


================================================
FILE: CHANGELOG.md
================================================
# UAParser.js Changelog

## Migrating from v1 to v2

### What's Breaking:

- **Licensing Changes:**
  - UAParser.js is now licensed under AGPLv3 for open-source use, with PRO Licenses available for commercial/proprietary use

- **Browser Detection on Mobile Devices:**
    - `"Chrome"` => `"Mobile Chrome"`
    - `"Firefox"` => `"Mobile Firefox"`

- **OS Detection:**
    - `"Mac OS"` => `"macOS"`
    - `"Chromium OS"` => `"Chrome OS"`

### What's New:

- **Support for ES Modules & TypeScript:**
  - Import directly as an ES module with TypeScript support: `import { UAParser } from 'ua-parser-js'`

- **Support for Custom/Predefined Extensions:**
  - Pass custom regexes or predefined extensions as a list to `UAParser()`

- **Support for CLI Processing:**
  - Directly parse user-agent strings from the command line:
    `npx ua-parser-js "<User-Agent>"`
  - Process batch data from files: 
    `npx ua-parser-js --input-file=log.txt >> result.json` or
    `npx ua-parser-js --input-file=log.txt --output-file=result.json`

- **Enhanced Detection with Client Hints:**
  - `withClientHints()`: Improves detection accuracy by leveraging client hints

- **Enhanced Detection with Feature Detection:**
  - `withFeatureCheck()`: Refines detection results using feature detection

- **Simple Comparison for Detection Results:**
  - `is()`: Enables easy comparison checks against the detection result

- **Detailed Result Output:**
  - `toString()`: Returns the detection result in form of a full-name string

- **New Device Type:**
  - Added `xr` to identify AR/VR devices

- **New Browser Property:**
  - Added `browser.type` to identify additional browser types:
    - `crawler`, `cli`, `email`, `fetcher`, `inapp`, `library`, `mediaplayer`

- **New Submodules:**
  - **`'ua-parser-js/enums'`**: Provides constants for these specific properties:
    - `browser.name`, `browser.type`, `cpu.architecture`, `device.type`, `device.vendor`, `engine.name`, `os.name`

  - **`'ua-parser-js/extensions'`**: Predefined extensions for various use cases:
    - `Bots`, `Crawlers`, `CLIs`, `Emails`, `ExtraDevices`, `Fetchers`, `InApps`, `Libraries`, `Mediaplayers`, `Vehicles`

  - **`'ua-parser-js/helpers'`**: Provides utility methods to extend detection functionality:
    - `isFrozenUA()`: Checks if the user-agent matches a frozen/reduced user-agent pattern

  - **`'ua-parser-js/bot-detection'`**:
    - `isAIAssistant()`: Checks if the user-agent is an AI assistant
    - `isAICrawler()`: Checks if the user-agent is an AI crawler
    - `isBot()`: Checks if the user-agent is a bot

  - **`'ua-parser-js/browser-detection'`**:
    - `isChromeFamily()`: Checks if the browser is Chrome-based (uses Blink engine) — e.g., New Opera, New Edge, Vivaldi, Brave, Arc, etc.
    - `isElectron()`: Detects if current window is running within Electron
    - `isFromEU()`: Detects if current browser's timezone is from an EU country
    - `isStandalonePWA()`: Detects if current window is a standalone PWA

  - **`'ua-parser-js/device-detection'`**:
    - `getDeviceVendor()`: Guesses the device vendor based on its model name
    - `isAppleSilicon()`: Detects Apple Silicon device properties

--- 

## Version 2.0.9
- Restore icons directory
- Add new browser: Aloha Browser, Avira Secure Browser, Lighthouse, Luakit, Norton Private Browser
- Add new OS: Vega OS
- Improve OS detection: watchOS
- `extensions` submodule:
    - Add new crawler: atlassian-bot, Cloudflare-AutoRAG, Google-NotebookLM, SemrushBot-SWA
    - Add new fetcher: FlipboardProxy

## Version 2.0.8

- Resolve syntax error related to import renaming in ESM build
- Add new browser: HiBrowser, Opera Neon
- Add new engine: Dillo
- Improve browser detection: Brave, TikTok
- Improve device detection: OnePlus
- Improve OS detection: Firefox OS
- `extensions` submodule:
    - Add new CLI: PowerShell
    - Add new email: Alpine, Android, AquaMail, Balsa, Barca, Canary, Claws Mail, eM Client, Eudora, FairEmail, Geary, Gnus, Horde::IMP, Lotus-Notes, IncrediMail, K-9 Mail, Mailbird, MailMate, Mailspring, Mutt, Newton, Nine, NylasMail, Outlook-Express, Pegasus Mail, PocoMail, Postbox, ProtonMail Bridge, Quala, R2Mail2, Rainloop, Roundcube Webmail, SamsungEmail, Spicebird, SquirrelMail, Sylpheed, The Bat!, Trojita, Turnpike, tutanota-desktop, Wanderlust, Windows-Live-Mail
    - Add new library: http.rb, Jetty, ocaml-cohttp
- `helpers` submodule:
    - Add new method: `getOutlookEdition()` to map Outlook versions to their marketing editions

## Version 2.0.7

- Add support for chaining `withClientHints()` & `withFeatureCheck()`
- Add new browser: Atlas, Steam
- Add new device vendor: Anbernic, Logitech, Valve
- Improve device detection: Xiaomi
- Improve OS detection: iOS
- Split `helpers` submodule into several new submodules:
    - `bot-detection`:
        - `isAIAssistant()`
        - `isAICrawler()`
        - `isBot()`
    - `browser-detection`
        - `isChromeFamily()`
        - `isElectron()`
        - `isFromEU()`
        - `isStandalonePWA()`
    - `device-detection`
        - `getDeviceVendor()`
        - `isAppleSilicon()`
- Update `extensions` submodule:
    - Add new fetcher: Nova Act
    - Add new library: Bun, Dart, Deno, hackney, Node.js, rest-client, undici

## Version 2.0.6
- Add new CLI feature: processing batch user-agent data from file and output as JSON
- Fix `setUA()`: trim leading space from user-agent string input
- Replace `undici` dependency with node's internal `Headers`
- Add new browser: Bing, Qwant
- Add new device vendor: Hisense, Wiko
- Improve browser detection: Mozilla, Pale Moon
- Improve CPU detection: 68k
- Improve device detection: Apple, BlackBerry, Huawei, Nokia, Xiaomi
- Improve OS detection: iOS 26
- `extensions` submodule:
    - Add new fetcher: Discordbot, KeybaseBot, Slackbot, Slackbot-LinkExpanding, Slack-ImgProxy, Twitterbot
    - Add new crawler: Qwantbot-news, SurdotlyBot, SwiftBot

## Version 2.0.5

- Add new browser: Zalo
- Add new CPU arch: alpha
- Add new device vendor: Philips
- Improve device detection: Pico
- Fix parsing error on pages with modified Array prototypes
- Improve type declarations:
    - Replace `node-fetch` dependency with `undici`
    - Replace hardcoded string values with enum from `enum` submodule
- `enums` submodule:
    - Add `Extension` enum for `extensions` submodule
    - Type declaration file now automatically generated using build script
    - Naming adjustments:
        - `Browser` => `BrowserName`
        - `CPU` => `CPUArch`
        - `Device` => `DeviceType`
        - `Vendor` => `DeviceVendor`
        - `Engine` => `EngineName`
        - `OS` => `OSName`
- `extensions` submodule:
    - Add new crawlers: 
        APIs-Google, Algolia Crawler, Algolia Crawler Renderscript, Baidu-ADS, BLEXBot, botify, Bravebot, Claude-Web, cohere-training-data-crawler, contxbot, Cotoyogi, Coveobot, CriteoBot, DeepSeekBot, DuckDuckGo-Favicons-Bot, Elastic, FirecrawlAgent, Freespoke, Google-CloudVertexBot, HuggingFace-Bot, Kagibot, Kangaroo Bot, marginalia, msnbot, OnCrawl, Replicate-Bot, RunPod-Bot, SBIntuitionsBot, SeekportBot, Siteimprove, Sogou Pic Spider, TikTokSpider, TwinAgent, v0bot, webzio, Webzio-Extended, xAI-Bot, YandexAccessibilityBot, YandexAdditionalBot, YandexAdNet, YandexBot MirrorDetector, YandexBlogs, YandexComBot, YandexFavicons, YandexImageResizer, YandexImages, YandexMarket, YandexMetrika, YandexMedia, YandexMobileBot, YandexMobileScreenShotBot, YandexNews, YandexOntoDB, YandexOntoDBAPI, YandexPartner, YandexRCA, YandexRenderResourcesBot, YandexScreenshotBot, YandexSpravBot, YandexTracker, YandexVertis, YandexVerticals, YandexVideo, YandexVideoParser, YandexWebmaster, YepBot, ZumBot
    - Add new fetchers: 
        Asana, bitlybot, Blueno, BufferLinkPreviewBot, Chrome-Lighthouse, Gemini-Deep-Research, HubSpot Page Fetcher, kakaotalk-scrap, vercel-favicon-bot, vercel-screenshot-bot, vercelflags, verceltracing, YaDirectFetcher, YandexCalendar, YandexDirect, YandexDirectDyn, YandexForDomain, YandexPagechecker, YandexSearchShop, YandexSitelinks, YandexUserproxy
- `helpers` submodule:
    - Add some crawler to `isAIBot()`: 
        Bravebot, cohere-training-data-crawler, FirecrawlAgent, HuggingFace-Bot, Kangaroo Bot, PanguBot, Replicate-Bot, RunPod-Bot, TikTokSpider, Together-Bot, v0bot, xAI-Bot

## Version 2.0.4

- Add new browser: Edge WebView, Edge WebView2
- Add new device vendor: Lava, Retroid, Vizio
- Add new OS: ArcaOS, Knoppix, Xubuntu, Windows CE, Windows RT
- Improve device detection: Google Pixel & Pixelbook Series, HMD, Infinix, LG WebOS TV, Motorola, Nothing, OnePlus, Sony, Tecno
- Improve OS detection: AIX, Arch, Fuchsia, Haiku, HarmonyOS, Mint, MorphOS, Solaris, Windows
- Improve `withClientHints()` browser naming adjustments: `Microsoft Edge WebView2` => `Edge WebView2`
- Identify device that uses Firefox Reality / Wolvic as `xr`
- Identify device with large screen as `smarttv`
- Identify Windows CE & Windows RT as distinct OS variants
- `extensions` submodule:
    - Remove lookbehind assertion to ensure regex compatibility
    - Add new crawlers: ChatGLM, Daum, iAskBot, Onespot, Qwantbot, Startpage
    - Add new emails: Apple's Mail, DaumMail, Polymail, ProtonMail, SparkDesktop, Zimbra, ZohoMail-Desktop
    - Add new fetchers: Iframely, MistralAI-User, Perplexity-User
    - Add new inApps: Discord, Evernote, Figma, Flipboard, Mattermost, Notion, Postman, Rambox, Rocket.Chat, Microsoft Teams, TikTok Lite, VS Code
    - Add new libraries: AdobeAIR, aiohttp, nutch, httpx, urllib3
- `enum` submodule:
    - Fix mistakenly placed `BLU` categorized as browser name instead of device vendor

## Version 2.0.3

- Add new browser: Dooble, Ecosia, LG Browser, Otter, qutebrowser, Surf
- Add new device: BLU, Facebook Portal TV
- Improve device detection: Archos, LG, Meta Quest
- Remove jazzer.js fuzz test
- Improve `withClientHints()`:
    - Browser naming adjustments:
        - `HuaweiBrowser` => `Huawei Browser`
        - `Miui Browser` => `MIUI Browser`
        - `OperaMobile` => `Opera Mobi`
        - `YaBrowser` => `Yandex`
- `extensions` submodule:
    - Add new Crawler: AdIdxBot, Linespider, LinkedInBot, OpenAI Image Downloader, SemrushBot, Yahoo! Slurp
    - Add new Fetcher: Better Uptime Bot, Google-PageRenderer, GoogleImageProxy, MicrosoftPreview, Snap URL Preview, SkypeUriPreview, TelegramBot
    - Add new Vehicles: BMW, Jeep
    - Add OS detection of WhatsApp user-agent

## Version 2.0.2

- Fix TypeScript dependency issue

## Version 2.0.1

- Add new browser: Ladybird, Daum
- Add new device: Apple HomePod
- Add new device vendor: HMD
- Add new OS: Ubuntu Touch, Windows IoT
- Improve CPU detection: ARM, x86
- Improve device detection: Lenovo, Nokia, Nvidia, Xiaomi
    - Tablet: Google, Honor, Huawei, Infinix, Nokia, OnePlus, Xiaomi
    - Wearable: Asus, Google, LG, Motorola, OnePlus, Oppo, Samsung, Sony
    - Smart-TV: Xiaomi, unidentified vendors
    - Improve detection for unknown VR devices
    - Improve device model detection for Generic devices
- Improve OS detection: Linux, Symbian
- Improve TypeScript definitions for Headers
- Improve `withClientHints()`:
    - `engine.version` also get updated
    - Infer `device.vendor` & `device.type` by guessing from `device.model`
    - Browser naming adjustments:
        - `Google Chrome` => `Chrome`
        - `Microsoft Edge` => `Edge`
        - `Android WebView` => `Chrome WebView`
        - `HeadlessChrome` => `Chrome Headless`
- `enums` submodule:
    - Add TypeScript definitions
- `extensions` submodule:
    - Add new list: 
        - `Vehicles`: BYD, Rivian, Volvo
    - Add new Fetcher: Bluesky
    - Add new Library: Apache-HttpClient, go-http-client, got, GuzzleHttp, Java-http-client, libwww-perl, lua-resty-http, Needle, OkHttp, node-fetch, PHP-SOAP, PostmanRuntime, superagent

## Version 2.0.0

- `ua-parser-js/extensions` submodule:
    - Add new CLI: ELinks, HTTPie
    - Add new crawler: AI2Bot, aiHitBot, anthropic-ai, Diffbot, ImagesiftBot, magpie-crawler, Omgilibot, Screaming Frog SEO Spider, Seznambot, Teoma, Timpibot, VelenPublicWebCrawler, Webzio-Extended, YouBot
    - Add new email: Airmail, BlueMail, eMClient, NaverMailApp, Sparrow, Yahoo
    - Add new fetcher: cohere-ai, Vercelbot
    - Add new library: java, python-urllib, python-requests
- `ua-parser-js/helpers` submodule:
    - Add new method `isAIBot()`: Checks if the user-agent is an AI bot

## Version 2.0.0-rc.3

- Add support for Headers object
- Add new device: Advan, Cat, Energizer, Honor, IMO, Micromax, Smartfren
- Add new engine: Servo
- `ua-parser-js/extensions` submodule:
    - Breaking change: rename `module` to `library`
    - Add new email clients: Evolution, KMail, Kontact
    - Add new bots: 360Spider, Archive.org Bots, CCBot, DataForSeoBot, DuckAssistBot, Exabot, Google Bots, Meta Bots, MojeekBot, PerplexityBot, PetalBot, TurnitinBot, Yeti, YisouSpider

## Version 2.0.0-rc.2

- Fix incorrect import path in ESM files
- Add new browser: 115, SlimBoat, Slimjet, LibreWolf
- Improve browser detection: 2345, 360, Dragon, Iron, Maxthon
- `ua-parser-js/enums` submodule:
    - Add Chromecast OS variants: Android/Fuchsia/Linux/SmartSpeaker
- `ua-parser-js/helpers` submodule:
    - Add new method: `isBot()` to check if the browser is identified as a bot

## Version 2.0.0-rc.1

- Fix Python Request mistakenly identified as Meta Quest
- Add new browser: Helio
- Add new device: itel, Nothing, Pico, TCL
- Add new engine: ArkWeb
- Add new OS: OpenHarmony, Pico
- Improve browser detection: Quark
- Improve device detection: Xiaomi, Amazon Echo Show, Google Chromecast, Samsung Galaxy Watch
- `ua-parser-js/helpers` submodule:
    - Add new method: 
        - `getDeviceVendor()` to guess for a device vendor based on its model name
        - `isElectron()` to check if current window is running inside Electron
        - `isFromEU()` to check if current window is from an EU (European Union) country
        - `isStandalonePWA()` to check if current window is a standalone PWA
    - Rename `isChromiumBased()` to `isChromeFamily()`
    - Update `isAppleSilicon()` to also checks for WebGL renderer info
- `ua-parser-js/extensions` submodule:
    - Restore `Bots` as a compilation of all these browser types: `cli`, `crawler`, `fetcher`, and `library`

## Version 2.0.0-beta.3

- Breaking:
  - AR/VR devices moved to new device type: `xr`
  - New property in `browser`: `type`
- New features:
  - Parse directly from command line using `npx ua-parser-js`
  - Extensions can be passed as a list to `UAParser()`
- Add new browser: Pico Browser, Twitter, Wolvic
- Improve browser detection: DuckDuckGo, ICEBrowser, Klar, QQ, Sleipnir
- Improve device detection: Oculus Quest & Oppo Pad
- Update latest client hints spec: `formFactor` -> `formFactors`
- In `ua-parser-js/extensions` submodule, `bots` divided into `crawler` / `fetcher` 

## Version 2.0.0-beta.2

- Increase UA_MAX_LENGTH to 500
- Add TypeScript declaration file in `ua-parser-js/extensions` submodule
- Improve TypeScript module resolution
- Add new methods in `ua-parser-js/helpers` submodule: `isAppleSilicon()` & `isChromiumBased()`
- Fix misidentified WebView token as device model
- Add new browser: Alipay, Klarna, Opera GX, Smart Lenovo Browser, Vivo Browser
- Rename browser: Avant, Baidu, Samsung Internet, Sogou Explorer, Sogou Mobile, WeChat
- Improve client-hints detection: Edge, Xbox

## Version 2.0.0-beta.1

- Update Client Hints Form-Factor
- Provide in-package type definitions
- Add new device: Ulefone
- Improve device detection: Realme, Xiaomi Redmi

## Version 2.0.0-alpha.3

- Add `withFeatureCheck()` method
- Add `isFrozenUA()` method in `ua-parser-js/helpers` submodule
- Add `MediaPlayers` & `Modules` in `ua-parser-js/extensions` submodule
- Fix issue with ESM import

## Version 2.0.0-alpha.2

- Fix browser result always returning Chromium when using withClientHints()
- Fix infinite-loop when await-ing withClientHints() in non-client-hints browser

## Version 2.0.0-alpha.1

- Initial work on new major version

---

## Version 0.7.41 / 1.0.41
- Add new browser: Daum, Ladybird
- Add new device vendor: HMD
- Add new engine: LibWeb
- Add new os: Windows IoT, Ubuntu Touch
- Improve cpu detection: ARM, x86
- Improve device vendor detection: Apple, Archos, Generic, Google, Honor, Huawei, Infinix, Nvidia, Lenovo, Nokia, OnePlus, Xiaomi
- Improve device type detection: smarttv, wearables
- Improve os detection: Linux, Symbian

## Version 0.7.40 / 1.0.40
- Add new browser: 115, LibreWolf, Slimboat, Slimjet
- Add new device: Advan, Cat, Energizer, IMO, Micromax, Smartfren
- Add new engine: ArkWeb, Servo
- Add new os: OpenHarmony
- Improve browser detection: 2345, 360, Dragon, Iron, Maxthon
- Recognize Honor as a separate device vendor from Huawei
- Fix Python Request mistakenly identified as Meta Quest

## Version 0.7.39 / 1.0.39
- Add new feature: executable command using `npx ua-parser-js "[INSERT-UA-HERE]"`
- Add new browser: Helio, Pico Browser, Wolvic
- Add new device vendor: itel, Nothing, TCL
- Improve browser detection: ICEBrowser, Klar, QQBrowser, Quark, Rekonq, Sleipnir
- Improve device detection: Xiaomi Pro, Amazon Echo Show, Samsung Galaxy Watch
- Removed from browser: Viera
  
## Version 0.7.38 / 1.0.38
- Fix error on getOS() when userAgentData.platform is undefined
- Add new browser: Opera GX, Twitter
- Improve browser detection: DuckDuckGo
- Improve device detection: OPPO Pad, Oculus Quest

## Version 0.7.37 / 1.0.37
- Fix misidentified WebView token as device model
- Increase UA_MAX_LENGTH to 500
- Add new browser: Alipay, Klarna, Smart Lenovo Browser, Vivo Browser
- Add new device: Ulefone
- Improve device detection: Realme, Xiaomi Redmi
- Rename browser: Avant, Baidu, Samsung Internet, Sogou Explorer, Sogou Mobile, WeChat

## Version 0.7.36 / 1.0.36
- Add new browser: Snapchat
- Add new devices: Infinix, Tecno
- Improve device detection: Amazon Fire TV, Xiaomi POCO 
- Improve OS detection: iOS

## Version 0.7.35 / 1.0.35
- Fix result from user-supplied user-agent being altered
- Add new browser: Heytap, TikTok
- Add new engine: LibWeb
- Add new OS: SerenityOS
- Improve browser detection: Yandex
- Improve device detection: iPhone, Amazon Echo
- Improve OS detection: iOS

## Version 0.7.34 / 1.0.34
- Fix Sharp Mobile detected as Huawei Tablet
- Fix IE8 bug
- Add new devices : Kobo e-Reader, Apple Watch, and some new SmartTV devices
- Add new OS : watchOS
- Improve browser detection : Kakao, Naver, Brave
- Improve device detection : Oculus, iPad
- Improve OS detection : Chrome OS
- Using navigator.userAgentData as fallback for device.type & os.name

## Version 0.7.33 / 1.0.33

- Add new browser : Cobalt
- Identify Macintosh as an Apple device
- Fix ReDoS vulnerability

## Version 0.7.32 / 1.0.32

- Add new browser : DuckDuckGo, Huawei Browser, LinkedIn
- Add new OS : HarmonyOS
- Add some Huawei models
- Add Sharp Aquos TV
- Improve detection Xiaomi Mi CC9 
- Fix Sony Xperia 1 III misidentified as Acer tablet
- Fix Detect Sony BRAVIA as SmartTV 
- Fix Detect Xiaomi Mi TV as SmartTV 
- Fix Detect Galaxy Tab S8 as tablet 
- Fix WeGame mistakenly identified as WeChat
- Fix included commas in Safari / Mobile Safari version
- Increase UA_MAX_LENGTH to 350

## Version 0.7.31 / 1.0.2

- Fix OPPO Reno A5 incorrect detection
- Fix TypeError Bug
- Use AST to extract regexes and verify them with safe-regex

## Version 0.7.30 / 1.0.1

- Add new browser : Obigo, UP.Browser, Klar
- Add new device : Oculus, Roku
- Add new OS: Maemo, HP-UX, Android-x86, Deepin, elementary OS, GhostBSD, Linspire, Manjaro, Sabayon
- Improve detection for Sony Xperia 1ii, LG Android TV, and some more devices
- Improve detection for ARM64 CPU
- Improve detection for Windows Mobile, Netscape, Mac on PowerPC
- Categorize PDA as mobile
- Fix Sharp devices misjudged as Huawei
- Fix trailing comma for ES3 compatibility
- Some code refactor

## Version 0.7 / 1.0

Version 1.0.x is basically the equivalent of version 0.7.x (mirror/duplicate). See [#536](https://github.com/faisalman/ua-parser-js/issues/536) for the reason behind this confusion.

## Version 0.8

Version 0.8 was created by accident. This version is now deprecated and no longer maintained, please update to version 0.7 / 1.0.


================================================
FILE: CODE_OF_CONDUCT.md
================================================
# UAParser.js Code of Conduct

## Introduction

Welcome to the UAParser.js community! We're here to collaborate on developing an awesome project. Here are some general guidelines to make our community a great place:

### 1. Be Kind, Honest, and Respectful

Always treat others with kindness and respect. We value different opinions and encourage positive communication.

### 2. Keep Conversations Civil and On-Topic

Please keep discussions related to the project. If you want to talk about something else, find the right place for it.

### 3. Mutual Assistance, Appreciation, and Acknowledgement

Feel free to ask for help, show gratitude for contributions, and make sure to give credit where it's due.

### 4. Resolving Disagreements

In the event of a disagreement, we encourage open and respectful dialogue. It's important to remember that it's okay to have differing opinions, and if a common ground can't be reached, we suggest using the 'agree to disagree' approach.

## Reporting Issues

If you see any behavior that goes against this code of conduct, report it to [f@faisalman.com](mailto:f@faisalman.com).

## Conclusion

Together, we can make this project awesome!

================================================
FILE: CONTRIBUTING.md
================================================
# UAParser.js: How to Contribute

* Fork and clone this repository
* Make some changes as required
* Write unit test to showcase its functionality under `/test`
* Run the test suites to make sure it's not breaking anything `$ npm run build+test`
* Submit a pull request & check the CLA in the submission form

================================================
FILE: LICENSE.md
================================================
# GNU AFFERO GENERAL PUBLIC LICENSE

Version 3, 19 November 2007

Copyright (C) 2007 Free Software Foundation, Inc.
<https://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.

## Preamble

The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.

The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains
free software for all its users.

When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.

A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.

The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.

An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing
under this license.

The precise terms and conditions for copying, distribution and
modification follow.

## TERMS AND CONDITIONS

### 0. Definitions.

"This License" refers to version 3 of the GNU Affero General Public
License.

"Copyright" also means copyright-like laws that apply to other kinds
of works, such as semiconductor masks.

"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.

To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of
an exact copy. The resulting work is called a "modified version" of
the earlier work or a work "based on" the earlier work.

A "covered work" means either the unmodified Program or a work based
on the Program.

To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user
through a computer network, with no transfer of a copy, is not
conveying.

An interactive user interface displays "Appropriate Legal Notices" to
the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

### 1. Source Code.

The "source code" for a work means the preferred form of the work for
making modifications to it. "Object code" means any non-source form of
a work.

A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

The Corresponding Source need not include anything that users can
regenerate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same
work.

### 2. Basic Permissions.

All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not convey,
without conditions so long as your license otherwise remains in force.
You may convey covered works to others for the sole purpose of having
them make modifications exclusively for you, or provide you with
facilities for running those works, provided that you comply with the
terms of this License in conveying all material for which you do not
control copyright. Those thus making or running the covered works for
you must do so exclusively on your behalf, under your direction and
control, on terms that prohibit them from making any copies of your
copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the
conditions stated below. Sublicensing is not allowed; section 10 makes
it unnecessary.

### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.

No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such
circumvention is effected by exercising rights under this License with
respect to the covered work, and you disclaim any intention to limit
operation or modification of the work as a means of enforcing, against
the work's users, your or third parties' legal rights to forbid
circumvention of technological measures.

### 4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

### 5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these
conditions:

-   a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.
-   b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under
    section 7. This requirement modifies the requirement in section 4
    to "keep intact all notices".
-   c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy. This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged. This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.
-   d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

### 6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms of
sections 4 and 5, provided that you also convey the machine-readable
Corresponding Source under the terms of this License, in one of these
ways:

-   a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.
-   b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the Corresponding
    Source from a network server at no charge.
-   c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source. This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.
-   d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge. You need not require recipients to copy the
    Corresponding Source along with the object code. If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source. Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.
-   e) Convey the object code using peer-to-peer transmission,
    provided you inform other peers where the object code and
    Corresponding Source of the work are being offered to the general
    public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal,
family, or household purposes, or (2) anything designed or sold for
incorporation into a dwelling. In determining whether a product is a
consumer product, doubtful cases shall be resolved in favor of
coverage. For a particular product received by a particular user,
"normally used" refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the way
in which the particular user actually uses, or expects or is expected
to use, the product. A product is a consumer product regardless of
whether the product has substantial commercial, industrial or
non-consumer uses, unless such uses represent the only significant
mode of use of the product.

"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to
install and execute modified versions of a covered work in that User
Product from a modified version of its Corresponding Source. The
information must suffice to ensure that the continued functioning of
the modified object code is in no case prevented or interfered with
solely because modification has been made.

If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or
updates for a work that has been modified or installed by the
recipient, or for the User Product in which it has been modified or
installed. Access to a network may be denied when the modification
itself materially and adversely affects the operation of the network
or violates the rules and protocols for communication across the
network.

Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

### 7. Additional Terms.

"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders
of that material) supplement the terms of this License with terms:

-   a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or
-   b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or
-   c) Prohibiting misrepresentation of the origin of that material,
    or requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or
-   d) Limiting the use for publicity purposes of names of licensors
    or authors of the material; or
-   e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or
-   f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions
    of it) with contractual assumptions of liability to the recipient,
    for any liability that these contractual assumptions directly
    impose on those licensors and authors.

All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions; the
above requirements apply either way.

### 8. Termination.

You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.

Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

### 9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or run
a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

### 10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.

An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

### 11. Patents.

A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".

A contributor's "essential patent claims" are all patent claims owned
or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

A patent license is "discriminatory" if it does not include within the
scope of its coverage, prohibits the exercise of, or is conditioned on
the non-exercise of one or more of the rights that are specifically
granted under this License. You may not convey a covered work if you
are a party to an arrangement with a third party that is in the
business of distributing software, under which you make payment to the
third party based on the extent of your activity of conveying the
work, and under which the third party grants, to any of the parties
who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by
you (or copies made from those copies), or (b) primarily for and in
connection with specific products or compilations that contain the
covered work, unless you entered into that arrangement, or that patent
license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

### 12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under
this License and any other pertinent obligations, then as a
consequence you may not convey it at all. For example, if you agree to
terms that obligate you to collect a royalty for further conveying
from those to whom you convey the Program, the only way you could
satisfy both those terms and this License would be to refrain entirely
from conveying the Program.

### 13. Remote Network Interaction; Use with the GNU General Public License.

Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your
version supports such interaction) an opportunity to receive the
Corresponding Source of your version by providing access to the
Corresponding Source from a network server at no charge, through some
standard or customary means of facilitating copying of software. This
Corresponding Source shall include the Corresponding Source for any
work covered by version 3 of the GNU General Public License that is
incorporated pursuant to the following paragraph.

Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.

### 14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new versions
of the GNU Affero General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program
specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever
published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions
of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

### 15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.

### 16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

### 17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

================================================
FILE: README.md
================================================
#### Featured Sponsors

[![https://ref.wisprflow.ai/Rxj3n8H](https://github.com/user-attachments/assets/e39fc98d-5d1b-4f7b-a355-4648e1f79a94)](https://ref.wisprflow.ai/Rxj3n8H)

---

[![https://uaparser.dev](https://raw.githubusercontent.com/faisalman/ua-parser-js/gh-pages/images/uap-header.png)](https://uaparser.dev)
[![https://uaparser.dev](https://github.com/user-attachments/assets/a626166c-17cc-45e3-8ff6-d7e948a5ded0)](https://uaparser.dev)
[![https://uaparser.dev](https://github.com/user-attachments/assets/50da50fc-7c8a-46e3-a2bc-6a8249914372)](https://uaparser.dev)
[![https://uaparser.dev](https://github.com/user-attachments/assets/9f2aaff0-a9b4-4ac9-bdf3-eea8081a2582)](https://uaparser.dev)
    
<p align="center">
<a href="https://www.npmjs.com/package/ua-parser-js"><img src="https://img.shields.io/npm/dw/ua-parser-js?color=red&logo=npm&label=NPM%20DOWNLOADS&style=for-the-badge"></a>
<a href="https://www.jsdelivr.com/package/npm/ua-parser-js"><img src="https://img.shields.io/jsdelivr/gh/hw/faisalman/ua-parser-js?logo=jsdelivr&style=for-the-badge"></a>
<a href="https://github.com/faisalman/ua-parser-js"><img src="https://img.shields.io/github/stars/faisalman/ua-parser-js?color=yellow&logo=github&style=for-the-badge"></a>
<a href="https://bundlephobia.com/package/ua-parser-js@1.0.35"><img src="https://img.shields.io/bundlephobia/minzip/ua-parser-js?logo=hackthebox&logoColor=white&style=for-the-badge"/></a>
<a href="https://github.com/faisalman/ua-parser-js/graphs/contributors"><img src="https://img.shields.io/github/contributors/faisalman/ua-parser-js?color=purple&logo=githubsponsors&style=for-the-badge"></a>
<a href="https://www.npmjs.com/package/ua-parser-js"><img src="https://img.shields.io/npm/v/ua-parser-js.svg?logo=npm&color=red&style=for-the-badge"></a>
<a href="https://cdnjs.com/libraries/UAParser.js"><img src="https://img.shields.io/cdnjs/v/UAParser.js.svg?color=orange&style=for-the-badge"></a>
<img src="https://img.shields.io/ossf-scorecard/github.com/faisalman/ua-parser-js?label=openssf%20scorecard&style=for-the-badge">
<a target="_blank" href="https://discord.com/channels/1406959509087453236/1406959509930381375"><img alt="Discord invite" src="https://dcbadge.limes.pink/api/server/https://discord.com/channels/1406959509087453236/1406959509930381375"></a>
</p>

# UAParser.js

The most comprehensive, compact, and up-to-date JavaScript library to detect user's browser, OS, CPU, and device type/model. Also detect bots, apps, and more. Runs seamlessly in the browser (client-side) or Node.js (server-side).

# Demo

  * Live demo: https://uaparser.dev


# Documentation

  * `version 1.x` : https://github.com/faisalman/ua-parser-js/tree/1.0.x#documentation
  * `version 2.x` : https://docs.uaparser.dev

Before upgrading from `v0.7` / `v1.0`, please read [CHANGELOG](CHANGELOG.md) to 
see what's new & breaking.

# Package & Pricing

<table>
    <thead>
        <tr>
            <th></th>
            <th colspan="2">Open-Source Editions</th>
            <th colspan="3">PRO / Commercial Editions</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>License options</td>
            <td>MIT (v1.x)</td>
            <td>AGPL (v2.x)</td>
            <td>PRO Personal</td>
            <td>PRO Business</td>
            <td>PRO Enterprise</td>
        </tr>
        <tr>
            <td>Browser Detection</td>
            <td><a href="#demo" title="Basic detection">⚠️</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>CPU Detection</td>
            <td><a href="#demo" title="Basic detection">⚠️</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Device Detection</td>
            <td><a href="#demo" title="Basic detection">⚠️</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Rendering Engine Detection</td>
            <td><a href="#demo" title="Basic detection">⚠️</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>OS detection</td>
            <td><a href="#demo" title="Basic detection">⚠️</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Enhanced+ Accuracy</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Bot Detection</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>AI Detection</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Extra Detections (Apps, Libs, Emails, Media Players, Crawlers, and more)</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Client Hints Support</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>CommonJS Support</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>ESM Support</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>TypeScript Definitions</td>
            <td><a href="#demo" title="Community version">✅</a></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>npm Module Available</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Direct Downloads Available</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Commercial Use Allowed</td>
            <td>✅</td>
            <td>✅</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Permissive (non-Copyleft) License</td>
            <td>✅</td>
            <td><strong title="Copyleft license">❌</strong></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>No Open-Source Obligations</td>
            <td>✅</td>
            <td><strong title="Copyleft license">❌</strong></td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Unlimited End-Products</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td><strong title="1 end-product per license">❌</strong></td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Unlimited Deployments</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td><strong title="1 TLD or deliverable per license">❌</strong></td>
            <td>✅</td>
        </tr>
        <tr>
            <td>1-year Product Support</td>
            <td>❌</td>
            <td>❌</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Lifetime Updates</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
            <td>✅</td>
        </tr>
        <tr>
            <td>Price</td>
            <td><strong title="Pay as you want">FREE<sup>*</sup> (<a target="_blank" href="https://raw.githubusercontent.com/faisalman/ua-parser-js/1.0.x/license.md">License</a>)</strong></td>
            <td><strong title="Pay as you want">FREE<sup>*</sup> (<a target="_blank" href="https://raw.githubusercontent.com/faisalman/ua-parser-js/master/LICENSE.md">License</a>)</strong></td>
            <td><strong title="$14 (one-time fee)">$14 (<a target="_blank" href="https://raw.githubusercontent.com/faisalman/ua-parser-js/pro-personal/LICENSE.md">License</a>)</strong></td>
            <td><strong title="$29 (one-time fee)">$29 (<a target="_blank" href="https://raw.githubusercontent.com/faisalman/ua-parser-js/pro-business/LICENSE.md">License</a>)</strong></td>
            <td><strong title="$599 (one-time fee)">$599 (<a target="_blank" href="https://raw.githubusercontent.com/faisalman/ua-parser-js/pro-enterprise/LICENSE.md">License</a>)</strong></td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <th align="right" colspan="6">
                <h3><a target="_blank" href="https://uaparserjs.lemonsqueezy.com/buy/e236ea87-9b2b-400e-9683-24367f731b35"> GET THE PRO PACKAGES 📥</a></h3>
            </th>
        </tr>
    </tfoot>
</table>

# Development

## Contributors

Please read [CONTRIBUTING](CONTRIBUTING.md) guide first for the instruction details.

<a href="https://github.com/faisalman/ua-parser-js/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=faisalman/ua-parser-js" />
</a>

Made with [contributors-img](https://contrib.rocks).

## Backers & Sponsors

Support the **open-source editions** of UAParser.js through one of the following options:

[![OpenCollective](https://img.shields.io/badge/OpenCollective-dddddd?style=for-the-badge&logo=opencollective&color=dddddd
)](https://opencollective.com/ua-parser-js)
[![GitHub Sponsors](https://img.shields.io/badge/GitHub_Sponsors-333333?style=for-the-badge&logo=githubsponsors&color=333333
)](https://github.com/sponsors/faisalman)
[![PayPal](https://img.shields.io/badge/Paypal-003087?style=for-the-badge&logo=paypal&color=003087
)](https://paypal.me/faisalman)
[![WeChat/Alipay](https://img.shields.io/badge/Other_Payment_Methods-Alipay_/_WeChat_Pay-09b83e?style=for-the-badge&logo=mastercard&color=09b83e
)](https://uaparserjs.lemonsqueezy.com/checkout/buy/3d71f2f3-cf4d-473c-892a-9d4497c890be)

<a href="https://opencollective.com/ua-parser-js"><img src="https://opencollective.com/ua-parser-js/organizations.svg?avatarHeight=64"></a>
<a href="https://opencollective.com/ua-parser-js"><img src="https://opencollective.com/ua-parser-js/individuals.svg?avatarHeight=64"></a>


================================================
FILE: SECURITY.md
================================================
# Security Policy

## Reporting a Vulnerability

To report a security issue, please email `f@faisalman.com` with a description of the issue, reproducible steps to get the issue, affected versions, and, if known, mitigations for the issue.

If the issue is confirmed as a vulnerability, we will open a new security advisory draft in our GitHub's Security Advisory page [https://github.com/faisalman/ua-parser-js/security/advisories](https://github.com/faisalman/ua-parser-js/security/advisories) and acknowledge your contributions as part of it. This project follows a 90 days disclosure timeline.

================================================
FILE: dist/icons/color/LICENSE.md
================================================
MIT License
Copyright (c) Cătălin Mariș
https://github.com/alrra/browser-logos

================================================
FILE: dist/icons/mono/LICENSE.md
================================================
CC0-1.0
https://github.com/simple-icons/simple-icons
https://github.com/coreui/coreui-icons

================================================
FILE: dist/ua-parser.html
================================================
<script src="./ua-parser.min.js"></script>


================================================
FILE: dist/ua-parser.min.mjs
================================================
/* UAParser.js v2.0.9
   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>
   AGPLv3 License */
var LIBVERSION="2.0.9",UA_MAX_LENGTH=500,USER_AGENT="user-agent",EMPTY="",UNKNOWN="?",TYPEOF={FUNCTION:"function",OBJECT:"object",STRING:"string",UNDEFINED:"undefined"},BROWSER="browser",CPU="cpu",DEVICE="device",ENGINE="engine",OS="os",RESULT="result",NAME="name",TYPE="type",VENDOR="vendor",VERSION="version",ARCHITECTURE="architecture",MAJOR="major",MODEL="model",CONSOLE="console",MOBILE="mobile",TABLET="tablet",SMARTTV="smarttv",WEARABLE="wearable",XR="xr",EMBEDDED="embedded",FETCHER="fetcher",INAPP="inapp",BRANDS="brands",FORMFACTORS="formFactors",FULLVERLIST="fullVersionList",PLATFORM="platform",PLATFORMVER="platformVersion",BITNESS="bitness",CH="sec-ch-ua",CH_FULL_VER_LIST=CH+"-full-version-list",CH_ARCH=CH+"-arch",CH_BITNESS=CH+"-"+BITNESS,CH_FORM_FACTORS=CH+"-form-factors",CH_MOBILE=CH+"-"+MOBILE,CH_MODEL=CH+"-"+MODEL,CH_PLATFORM=CH+"-"+PLATFORM,CH_PLATFORM_VER=CH_PLATFORM+"-version",CH_ALL_VALUES=[BRANDS,FULLVERLIST,MOBILE,MODEL,PLATFORM,PLATFORMVER,ARCHITECTURE,FORMFACTORS,BITNESS],AMAZON="Amazon",APPLE="Apple",ASUS="ASUS",BLACKBERRY="BlackBerry",GOOGLE="Google",HUAWEI="Huawei",LENOVO="Lenovo",HONOR="Honor",LG="LG",MICROSOFT="Microsoft",MOTOROLA="Motorola",NVIDIA="Nvidia",ONEPLUS="OnePlus",OPPO="OPPO",SAMSUNG="Samsung",SHARP="Sharp",SONY="Sony",XIAOMI="Xiaomi",ZEBRA="Zebra",CHROME="Chrome",CHROMIUM="Chromium",CHROMECAST="Chromecast",EDGE="Edge",FIREFOX="Firefox",OPERA="Opera",FACEBOOK="Facebook",SOGOU="Sogou",PREFIX_MOBILE="Mobile ",SUFFIX_BROWSER=" Browser",WINDOWS="Windows";var isWindow=typeof window!==TYPEOF.UNDEFINED,NAVIGATOR=isWindow&&window.navigator?window.navigator:undefined,NAVIGATOR_UADATA=NAVIGATOR&&NAVIGATOR.userAgentData?NAVIGATOR.userAgentData:undefined;var extend=function(defaultRgx,extensions){var mergedRgx={};var extraRgx=extensions;if(!isExtensions(extensions)){extraRgx={};for(var i in extensions){for(var j in extensions[i]){extraRgx[j]=extensions[i][j].concat(extraRgx[j]?extraRgx[j]:[])}}}for(var k in defaultRgx){mergedRgx[k]=extraRgx[k]&&extraRgx[k].length%2===0?extraRgx[k].concat(defaultRgx[k]):defaultRgx[k]}return mergedRgx},enumerize=function(arr){var enums={};for(var i=0;i<arr.length;i++){enums[arr[i].toUpperCase()]=arr[i]}return enums},has=function(str1,str2){if(typeof str1===TYPEOF.OBJECT&&str1.length>0){for(var i in str1){if(lowerize(str2)==lowerize(str1[i]))return true}return false}return isString(str1)?lowerize(str2)==lowerize(str1):false},isExtensions=function(obj,deep){for(var prop in obj){return/^(browser|cpu|device|engine|os)$/.test(prop)||(deep?isExtensions(obj[prop]):false)}},isString=function(val){return typeof val===TYPEOF.STRING},itemListToArray=function(header){if(!header)return undefined;var arr=[];var tokens=strip(/\\?\"/g,header).split(",");for(var i=0;i<tokens.length;i++){if(tokens[i].indexOf(";")>-1){var token=trim(tokens[i]).split(";v=");arr[i]={brand:token[0],version:token[1]}}else{arr[i]=trim(tokens[i])}}return arr},lowerize=function(str){return isString(str)?str.toLowerCase():str},majorize=function(version){return isString(version)?strip(/[^\d\.]/g,version).split(".")[0]:undefined},setProps=function(arr){for(var i in arr){if(!arr.hasOwnProperty(i))continue;var propName=arr[i];if(typeof propName==TYPEOF.OBJECT&&propName.length==2){this[propName[0]]=propName[1]}else{this[propName]=undefined}}return this},strip=function(pattern,str){return isString(str)?str.replace(pattern,EMPTY):str},stripQuotes=function(str){return strip(/\\?\"/g,str)},trim=function(str,len){str=strip(/^\s\s*/,String(str));return typeof len===TYPEOF.UNDEFINED?str:str.substring(0,len)};var rgxMapper=function(ua,arrays){if(!ua||!arrays)return;var i=0,j,k,p,q,matches,match;while(i<arrays.length&&!matches){var regex=arrays[i],props=arrays[i+1];j=k=0;while(j<regex.length&&!matches){if(!regex[j]){break}matches=regex[j++].exec(ua);if(!!matches){for(p=0;p<props.length;p++){match=matches[++k];q=props[p];if(typeof q===TYPEOF.OBJECT&&q.length>0){if(q.length===2){if(typeof q[1]==TYPEOF.FUNCTION){this[q[0]]=q[1].call(this,match)}else{this[q[0]]=q[1]}}else if(q.length>=3){if(typeof q[1]===TYPEOF.FUNCTION&&!(q[1].exec&&q[1].test)){if(q.length>3){this[q[0]]=match?q[1].apply(this,q.slice(2)):undefined}else{this[q[0]]=match?q[1].call(this,match,q[2]):undefined}}else{if(q.length==3){this[q[0]]=match?match.replace(q[1],q[2]):undefined}else if(q.length==4){this[q[0]]=match?q[3].call(this,match.replace(q[1],q[2])):undefined}else if(q.length>4){this[q[0]]=match?q[3].apply(this,[match.replace(q[1],q[2])].concat(q.slice(4))):undefined}}}}else{this[q]=match?match:undefined}}}}i+=2}},strMapper=function(str,map){for(var i in map){if(typeof map[i]===TYPEOF.OBJECT&&map[i].length>0){for(var j=0;j<map[i].length;j++){if(has(map[i][j],str)){return i===UNKNOWN?undefined:i}}}else if(has(map[i],str)){return i===UNKNOWN?undefined:i}}return map.hasOwnProperty("*")?map["*"]:str};var windowsVersionMap={ME:"4.90","NT 3.51":"3.51","NT 4.0":"4.0",2e3:["5.0","5.01"],XP:["5.1","5.2"],Vista:"6.0",7:"6.1",8:"6.2",8.1:"6.3",10:["6.4","10.0"],NT:""},formFactorsMap={embedded:"Automotive",mobile:"Mobile",tablet:["Tablet","EInk"],smarttv:"TV",wearable:"Watch",xr:["VR","XR"],"?":["Desktop","Unknown"],"*":undefined},browserHintsMap={Chrome:"Google Chrome",Edge:"Microsoft Edge","Edge WebView2":"Microsoft Edge WebView2","Chrome WebView":"Android WebView","Chrome Headless":"HeadlessChrome","Huawei Browser":"HuaweiBrowser","MIUI Browser":"Miui Browser","Opera Mobi":"OperaMobile",Yandex:"YaBrowser"};var defaultRegexes={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[VERSION,[NAME,PREFIX_MOBILE+"Chrome"]],[/webview.+edge\/([\w\.]+)/i],[VERSION,[NAME,EDGE+" WebView"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[VERSION,[NAME,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[NAME,VERSION],[/opios[\/ ]+([\w\.]+)/i],[VERSION,[NAME,OPERA+" Mini"]],[/\bop(?:rg)?x\/([\w\.]+)/i],[VERSION,[NAME,OPERA+" GX"]],[/\bopr\/([\w\.]+)/i],[VERSION,[NAME,OPERA]],[/\bb[ai]*d(?:uhd|[ub]*[aekoprswx]{5,6})[\/ ]?([\w\.]+)/i],[VERSION,[NAME,"Baidu"]],[/\b(?:mxbrowser|mxios|myie2)\/?([-\w\.]*)\b/i],[VERSION,[NAME,"Maxthon"]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer|sleipnir)[\/ ]?([\w\.]*)/i,/(avant|iemobile|slim(?:browser|boat|jet))[\/ ]?([\d\.]*)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(atlas|flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|qupzilla|falkon|rekonq|puffin|whale(?!.+naver)|qqbrowserlite|duckduckgo|klar|helio|(?=comodo_)?dragon|otter|dooble|(?:hi|lg |ovi|qute)browser|palemoon)\/v?([-\w\.]+)/i,/(brave)(?: chrome)?\/([\d\.]+)/i,/(aloha|heytap|ovi|115|surf|qwant)browser\/([\d\.]+)/i,/(qwant)(?:ios|mobile)\/([\d\.]+)/i,/(ecosia|weibo)(?:__| \w+@)([\d\.]+)/i],[NAME,VERSION],[/quark(?:pc)?\/([-\w\.]+)/i],[VERSION,[NAME,"Quark"]],[/\bddg\/([\w\.]+)/i],[VERSION,[NAME,"DuckDuckGo"]],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[VERSION,[NAME,"UCBrowser"]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i,/micromessenger\/([\w\.]+)/i],[VERSION,[NAME,"WeChat"]],[/konqueror\/([\w\.]+)/i],[VERSION,[NAME,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[VERSION,[NAME,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[VERSION,[NAME,"Yandex"]],[/slbrowser\/([\w\.]+)/i],[VERSION,[NAME,"Smart "+LENOVO+SUFFIX_BROWSER]],[/(av(?:ast|g|ira))\/([\w\.]+)/i],[[NAME,/(.+)/,"$1 Secure"+SUFFIX_BROWSER],VERSION],[/norton\/([\w\.]+)/i],[VERSION,[NAME,"Norton Private"+SUFFIX_BROWSER]],[/\bfocus\/([\w\.]+)/i],[VERSION,[NAME,FIREFOX+" Focus"]],[/ mms\/([\w\.]+)$/i],[VERSION,[NAME,OPERA+" Neon"]],[/ opt\/([\w\.]+)$/i],[VERSION,[NAME,OPERA+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[VERSION,[NAME,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[VERSION,[NAME,"Dolphin"]],[/coast\/([\w\.]+)/i],[VERSION,[NAME,OPERA+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[VERSION,[NAME,"MIUI"+SUFFIX_BROWSER]],[/fxios\/([\w\.-]+)/i],[VERSION,[NAME,PREFIX_MOBILE+FIREFOX]],[/\bqihoobrowser\/?([\w\.]*)/i],[VERSION,[NAME,"360"]],[/\b(qq)\/([\w\.]+)/i],[[NAME,/(.+)/,"$1Browser"],VERSION],[/(oculus|sailfish|huawei|vivo|pico)browser\/([\w\.]+)/i],[[NAME,/(.+)/,"$1"+SUFFIX_BROWSER],VERSION],[/samsungbrowser\/([\w\.]+)/i],[VERSION,[NAME,SAMSUNG+" Internet"]],[/metasr[\/ ]?([\d\.]+)/i],[VERSION,[NAME,SOGOU+" Explorer"]],[/(sogou)mo\w+\/([\d\.]+)/i],[[NAME,SOGOU+" Mobile"],VERSION],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|2345(?=browser|chrome|explorer))\w*[\/ ]?v?([\w\.]+)/i],[NAME,VERSION],[/(lbbrowser|luakit|rekonq|steam(?= (clie|tenf|gameo)))/i],[NAME],[/ome\/([\w\.]+).+(iron(?= saf)|360(?=[es]e$))/i],[VERSION,NAME],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[NAME,FACEBOOK],VERSION,[TYPE,INAPP]],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/(daum)apps[\/ ]([\w\.]+)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(alipay)client\/([\w\.]+)/i,/(twitter)(?:and| f.+e\/([\w\.]+))/i,/(bing)(?:web|sapphire)\/([\w\.]+)/i,/(instagram|snapchat|klarna)[\/ ]([-\w\.]+)/i],[NAME,VERSION,[TYPE,INAPP]],[/\bgsa\/([\w\.]+) .*safari\//i],[VERSION,[NAME,"GSA"],[TYPE,INAPP]],[/(?:musical_ly|trill)(?:.+app_?version\/|_)([\w\.]+)/i],[VERSION,[NAME,"TikTok"],[TYPE,INAPP]],[/\[(linkedin)app\]/i],[NAME,[TYPE,INAPP]],[/(zalo(?:app)?)[\/\sa-z]*([\w\.-]+)/i],[[NAME,/(.+)/,"Zalo"],VERSION,[TYPE,INAPP]],[/(chromium)[\/ ]([-\w\.]+)/i],[NAME,VERSION],[/ome-(lighthouse)$/i],[NAME,[TYPE,FETCHER]],[/headlesschrome(?:\/([\w\.]+)| )/i],[VERSION,[NAME,CHROME+" Headless"]],[/wv\).+chrome\/([\w\.]+).+edgw\//i],[VERSION,[NAME,EDGE+" WebView2"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[NAME,CHROME+" WebView"],VERSION],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[VERSION,[NAME,"Android"+SUFFIX_BROWSER]],[/chrome\/([\w\.]+) mobile/i],[VERSION,[NAME,PREFIX_MOBILE+"Chrome"]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[NAME,VERSION],[/version\/([\w\.\,]+) .*mobile(?:\/\w+ | ?)safari/i],[VERSION,[NAME,PREFIX_MOBILE+"Safari"]],[/iphone .*mobile(?:\/\w+ | ?)safari/i],[[NAME,PREFIX_MOBILE+"Safari"]],[/version\/([\w\.\,]+) .*(safari)/i],[VERSION,NAME],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[NAME,[VERSION,"1"]],[/(webkit|khtml)\/([\w\.]+)/i],[NAME,VERSION],[/(?:mobile|tablet);.*(firefox)\/([\w\.-]+)/i],[[NAME,PREFIX_MOBILE+FIREFOX],VERSION],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[NAME,"Netscape"],VERSION],[/(wolvic|librewolf)\/([\w\.]+)/i],[NAME,VERSION],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[VERSION,[NAME,FIREFOX+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+(?= .+rv\:.+gecko\/\d+)|[0-4][\w\.]+(?!.+compatible))/i,/(amaya|dillo|doris|icab|ladybird|lynx|mosaic|netsurf|obigo|polaris|w3m|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/\b(links) \(([\w\.]+)/i],[NAME,[VERSION,/_/g,"."]],[/(cobalt)\/([\w\.]+)/i],[NAME,[VERSION,/[^\d\.]+./,EMPTY]]],cpu:[[/\b((amd|x|x86[-_]?|wow|win)64)\b/i],[[ARCHITECTURE,"amd64"]],[/(ia32(?=;))/i,/\b((i[346]|x)86)(pc)?\b/i],[[ARCHITECTURE,"ia32"]],[/\b(aarch64|arm(v?[89]e?l?|_?64))\b/i],[[ARCHITECTURE,"arm64"]],[/\b(arm(v[67])?ht?n?[fl]p?)\b/i],[[ARCHITECTURE,"armhf"]],[/( (ce|mobile); ppc;|\/[\w\.]+arm\b)/i],[[ARCHITECTURE,"arm"]],[/ sun4\w[;\)]/i],[[ARCHITECTURE,"sparc"]],[/\b(avr32|ia64(?=;)|68k(?=\))|\barm(?=v([1-7]|[5-7]1)l?|;|eabi)|(irix|mips|sparc)(64)?\b|pa-risc)/i,/((ppc|powerpc)(64)?)( mac|;|\))/i,/(?:osf1|[freopnt]{3,4}bsd) (alpha)/i],[[ARCHITECTURE,/ower/,EMPTY,lowerize]],[/mc680.0/i],[[ARCHITECTURE,"68k"]],[/winnt.+\[axp/i],[[ARCHITECTURE,"alpha"]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[MODEL,[VENDOR,SAMSUNG],[TYPE,TABLET]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,/sec-(sgh\w+)/i],[MODEL,[VENDOR,SAMSUNG],[TYPE,MOBILE]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)[\/\);]/i],[MODEL,[VENDOR,APPLE],[TYPE,MOBILE]],[/\b(?:ios|apple\w+)\/.+[\(\/](ipad)/i,/\b(ipad)[\d,]*[;\] ].+(mac |i(pad)?)os/i],[MODEL,[VENDOR,APPLE],[TYPE,TABLET]],[/(macintosh);/i],[MODEL,[VENDOR,APPLE]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[MODEL,[VENDOR,SHARP],[TYPE,MOBILE]],[/\b((?:brt|eln|hey2?|gdi|jdn)-a?[lnw]09|(?:ag[rm]3?|jdn2|kob2)-a?[lw]0[09]hn)(?: bui|\)|;)/i],[MODEL,[VENDOR,HONOR],[TYPE,TABLET]],[/honor([-\w ]+)[;\)]/i],[MODEL,[VENDOR,HONOR],[TYPE,MOBILE]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?|605hw|bg2-u03|(?:gem|fdr|m2|ple|t1)-[7a]0[1-4][lu]|t1-a2[13][lw]|mediapad[\w\. ]*(?= bui|\)))\b(?!.+d\/s)/i],[MODEL,[VENDOR,HUAWEI],[TYPE,TABLET]],[/(?:huawei) ?([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i],[MODEL,[VENDOR,HUAWEI],[TYPE,MOBILE]],[/oid[^\)]+; (2[\dbc]{4}(182|283|rp\w{2})[cgl]|m2105k81a?c)(?: bui|\))/i,/\b(?:xiao)?((?:red)?mi[-_ ]?pad[\w- ]*)(?: bui|\))/i],[[MODEL,/_/g," "],[VENDOR,XIAOMI],[TYPE,TABLET]],[/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/oid[^\)]+; (redmi[\-_ ]?(?:note|k)?[\w_ ]+|m?[12]\d[01]\d\w{3,6}|poco[\w ]+|(shark )?\w{3}-[ah]0|qin ?[1-3](s\+|ultra| pro)?)( bui|; wv|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note|max|cc)?[_ ]?(?:\d{0,2}\w?)[_ ]?(?:plus|se|lite|pro)?( 5g|lte)?)(?: bui|\))/i,/ ([\w ]+) miui\/v?\d/i],[[MODEL,/_/g," "],[VENDOR,XIAOMI],[TYPE,MOBILE]],[/droid.+; (cph2[3-6]\d[13579]|((gm|hd)19|(ac|be|in|kb)20|(d[en]|eb|le|mt)21|ne22)[0-2]\d|p[g-l]\w[1m]10)\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[MODEL,[VENDOR,ONEPLUS],[TYPE,MOBILE]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[MODEL,[VENDOR,OPPO],[TYPE,MOBILE]],[/\b(opd2(\d{3}a?))(?: bui|\))/i],[MODEL,[VENDOR,strMapper,{OnePlus:["203","304","403","404","413","415"],"*":OPPO}],[TYPE,TABLET]],[/(vivo (5r?|6|8l?|go|one|s|x[il]?[2-4]?)[\w\+ ]*)(?: bui|\))/i],[MODEL,[VENDOR,"BLU"],[TYPE,MOBILE]],[/; vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[MODEL,[VENDOR,"Vivo"],[TYPE,MOBILE]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i],[MODEL,[VENDOR,"Realme"],[TYPE,MOBILE]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])( bui|;|\)|\/)/i,/lenovo ?(b[68]0[08]0-?[hf]?|tab(?:[\w- ]+?)|tb[\w-]{6,7})( bui|;|\)|\/)/i],[MODEL,[VENDOR,LENOVO],[TYPE,TABLET]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i],[MODEL,[VENDOR,LENOVO],[TYPE,MOBILE]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,/((?:moto(?! 360)[-\w\(\) ]+|xt\d{3,4}[cgkosw\+]?[-\d]*|nexus 6)(?= bui|\)))/i],[MODEL,[VENDOR,MOTOROLA],[TYPE,MOBILE]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[MODEL,[VENDOR,MOTOROLA],[TYPE,TABLET]],[/\b(?:lg)?([vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[MODEL,[VENDOR,LG],[TYPE,TABLET]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,/\blg-?([\d\w]+) bui/i],[MODEL,[VENDOR,LG],[TYPE,MOBILE]],[/(nokia) (t[12][01])/i],[VENDOR,MODEL,[TYPE,TABLET]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,/nokia[-_ ]?(([-\w\. ]*?))( bui|\)|;|\/)/i],[[MODEL,/_/g," "],[TYPE,MOBILE],[VENDOR,"Nokia"]],[/(pixel (c|tablet))\b/i],[MODEL,[VENDOR,GOOGLE],[TYPE,TABLET]],[/droid.+;(?: google)? (g(01[13]a|020[aem]|025[jn]|1b60|1f8f|2ybb|4s1m|576d|5nz6|8hhn|8vou|a02099|c15s|d1yq|e2ae|ec77|gh2x|kv4x|p4bc|pj41|r83y|tt9q|ur25|wvk6)|pixel[\d ]*a?( pro)?( xl)?( fold)?( \(5g\))?)( bui|\))/i],[MODEL,[VENDOR,GOOGLE],[TYPE,MOBILE]],[/(google) (pixelbook( go)?)/i],[VENDOR,MODEL],[/droid.+; (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-\w\w\d\d)(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[MODEL,[VENDOR,SONY],[TYPE,MOBILE]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[MODEL,"Xperia Tablet"],[VENDOR,SONY],[TYPE,TABLET]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo(?!bc)\w\w)( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[MODEL,[VENDOR,AMAZON],[TYPE,TABLET]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[MODEL,/(.+)/g,"Fire Phone $1"],[VENDOR,AMAZON],[TYPE,MOBILE]],[/(playbook);[-\w\),; ]+(rim)/i],[MODEL,VENDOR,[TYPE,TABLET]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/(?:blackberry|\(bb10;) (\w+)/i],[MODEL,[VENDOR,BLACKBERRY],[TYPE,MOBILE]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[MODEL,[VENDOR,ASUS],[TYPE,TABLET]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[MODEL,[VENDOR,ASUS],[TYPE,MOBILE]],[/(nexus 9)/i],[MODEL,[VENDOR,"HTC"],[TYPE,TABLET]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[VENDOR,[MODEL,/_/g," "],[TYPE,MOBILE]],[/tcl (xess p17aa)/i,/droid [\w\.]+; ((?:8[14]9[16]|9(?:0(?:48|60|8[01])|1(?:3[27]|66)|2(?:6[69]|9[56])|466))[gqswx])(_\w(\w|\w\w))?(\)| bui)/i],[MODEL,[VENDOR,"TCL"],[TYPE,TABLET]],[/droid [\w\.]+; (418(?:7d|8v)|5087z|5102l|61(?:02[dh]|25[adfh]|27[ai]|56[dh]|59k|65[ah])|a509dl|t(?:43(?:0w|1[adepqu])|50(?:6d|7[adju])|6(?:09dl|10k|12b|71[efho]|76[hjk])|7(?:66[ahju]|67[hw]|7[045][bh]|71[hk]|73o|76[ho]|79w|81[hks]?|82h|90[bhsy]|99b)|810[hs]))(_\w(\w|\w\w))?(\)| bui)/i],[MODEL,[VENDOR,"TCL"],[TYPE,MOBILE]],[/(itel) ((\w+))/i],[[VENDOR,lowerize],MODEL,[TYPE,strMapper,{tablet:["p10001l","w7001"],"*":"mobile"}]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[MODEL,[VENDOR,"Acer"],[TYPE,TABLET]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[MODEL,[VENDOR,"Meizu"],[TYPE,MOBILE]],[/; ((?:power )?armor(?:[\w ]{0,8}))(?: bui|\))/i],[MODEL,[VENDOR,"Ulefone"],[TYPE,MOBILE]],[/; (energy ?\w+)(?: bui|\))/i,/; energizer ([\w ]+)(?: bui|\))/i],[MODEL,[VENDOR,"Energizer"],[TYPE,MOBILE]],[/; cat (b35);/i,/; (b15q?|s22 flip|s48c|s62 pro)(?: bui|\))/i],[MODEL,[VENDOR,"Cat"],[TYPE,MOBILE]],[/((?:new )?andromax[\w- ]+)(?: bui|\))/i],[MODEL,[VENDOR,"Smartfren"],[TYPE,MOBILE]],[/droid.+; (a(in)?(0(15|59|6[35])|142)p?)/i],[MODEL,[VENDOR,"Nothing"],[TYPE,MOBILE]],[/; (x67 5g|tikeasy \w+|ac[1789]\d\w+)( b|\))/i,/archos ?(5|gamepad2?|([\w ]*[t1789]|hello) ?\d+[\w ]*)( b|\))/i],[MODEL,[VENDOR,"Archos"],[TYPE,TABLET]],[/archos ([\w ]+)( b|\))/i,/; (ac[3-6]\d\w{2,8})( b|\))/i],[MODEL,[VENDOR,"Archos"],[TYPE,MOBILE]],[/; (n159v)/i],[MODEL,[VENDOR,"HMD"],[TYPE,MOBILE]],[/(imo) (tab \w+)/i,/(infinix|tecno) (x1101b?|p904|dp(7c|8d|10a)( pro)?|p70[1-3]a?|p904|t1101)/i],[VENDOR,MODEL,[TYPE,TABLET]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus(?! zenw)|dell|jolla|meizu|motorola|polytron|tecno|micromax|advan)[-_ ]?([-\w]*)/i,/; (blu|hmd|imo|infinix|lava|oneplus|tcl|wiko)[_ ]([\w\+ ]+?)(?: bui|\)|; r)/i,/(hp) ([\w ]+\w)/i,/(microsoft); (lumia[\w ]+)/i,/(oppo) ?([\w ]+) bui/i,/(hisense) ([ehv][\w ]+)\)/i,/droid[^;]+; (philips)[_ ]([sv-x][\d]{3,4}[xz]?)/i],[VENDOR,MODEL,[TYPE,MOBILE]],[/(kobo)\s(ereader|touch)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i],[VENDOR,MODEL,[TYPE,TABLET]],[/(surface duo)/i],[MODEL,[VENDOR,MICROSOFT],[TYPE,TABLET]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[MODEL,[VENDOR,"Fairphone"],[TYPE,MOBILE]],[/((?:tegranote|shield t(?!.+d tv))[\w- ]*?)(?: b|\))/i],[MODEL,[VENDOR,NVIDIA],[TYPE,TABLET]],[/(sprint) (\w+)/i],[VENDOR,MODEL,[TYPE,MOBILE]],[/(kin\.[onetw]{3})/i],[[MODEL,/\./g," "],[VENDOR,MICROSOFT],[TYPE,MOBILE]],[/droid.+; ([c6]+|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[MODEL,[VENDOR,ZEBRA],[TYPE,TABLET]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[MODEL,[VENDOR,ZEBRA],[TYPE,MOBILE]],[/(philips)[\w ]+tv/i,/smart-tv.+(samsung)/i],[VENDOR,[TYPE,SMARTTV]],[/hbbtv.+maple;(\d+)/i],[[MODEL,/^/,"SmartTV"],[VENDOR,SAMSUNG],[TYPE,SMARTTV]],[/(vizio)(?: |.+model\/)(\w+-\w+)/i,/tcast.+(lg)e?. ([-\w]+)/i],[VENDOR,MODEL,[TYPE,SMARTTV]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[VENDOR,LG],[TYPE,SMARTTV]],[/(apple) ?tv/i],[VENDOR,[MODEL,APPLE+" TV"],[TYPE,SMARTTV]],[/crkey.*devicetype\/chromecast/i],[[MODEL,CHROMECAST+" Third Generation"],[VENDOR,GOOGLE],[TYPE,SMARTTV]],[/crkey.*devicetype\/([^/]*)/i],[[MODEL,/^/,"Chromecast "],[VENDOR,GOOGLE],[TYPE,SMARTTV]],[/fuchsia.*crkey/i],[[MODEL,CHROMECAST+" Nest Hub"],[VENDOR,GOOGLE],[TYPE,SMARTTV]],[/crkey/i],[[MODEL,CHROMECAST],[VENDOR,GOOGLE],[TYPE,SMARTTV]],[/(portaltv)/i],[MODEL,[VENDOR,FACEBOOK],[TYPE,SMARTTV]],[/droid.+aft(\w+)( bui|\))/i],[MODEL,[VENDOR,AMAZON],[TYPE,SMARTTV]],[/(shield \w+ tv)/i],[MODEL,[VENDOR,NVIDIA],[TYPE,SMARTTV]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[MODEL,[VENDOR,SHARP],[TYPE,SMARTTV]],[/(bravia[\w ]+)( bui|\))/i],[MODEL,[VENDOR,SONY],[TYPE,SMARTTV]],[/(mi(tv|box)-?\w+) bui/i],[MODEL,[VENDOR,XIAOMI],[TYPE,SMARTTV]],[/Hbbtv.*(technisat) (.*);/i],[VENDOR,MODEL,[TYPE,SMARTTV]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[VENDOR,/.+\/(\w+)/,"$1",strMapper,{LG:"lge"}],[MODEL,trim],[TYPE,SMARTTV]],[/(playstation \w+)/i],[MODEL,[VENDOR,SONY],[TYPE,CONSOLE]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[MODEL,[VENDOR,MICROSOFT],[TYPE,CONSOLE]],[/(ouya)/i,/(nintendo) (\w+)/i,/(retroid) (pocket ([^\)]+))/i,/(valve).+(steam deck)/i,/droid.+; ((shield|rgcube|gr0006))( bui|\))/i],[[VENDOR,strMapper,{Nvidia:"Shield",Anbernic:"RGCUBE",Logitech:"GR0006"}],MODEL,[TYPE,CONSOLE]],[/\b(sm-[lr]\d\d[0156][fnuw]?s?|gear live)\b/i],[MODEL,[VENDOR,SAMSUNG],[TYPE,WEARABLE]],[/((pebble))app/i,/(asus|google|lg|oppo|xiaomi) ((pixel |zen)?watch[\w ]*)( bui|\))/i],[VENDOR,MODEL,[TYPE,WEARABLE]],[/(ow(?:19|20)?we?[1-3]{1,3})/i],[MODEL,[VENDOR,OPPO],[TYPE,WEARABLE]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[MODEL,[VENDOR,APPLE],[TYPE,WEARABLE]],[/(opwwe\d{3})/i],[MODEL,[VENDOR,ONEPLUS],[TYPE,WEARABLE]],[/(moto 360)/i],[MODEL,[VENDOR,MOTOROLA],[TYPE,WEARABLE]],[/(smartwatch 3)/i],[MODEL,[VENDOR,SONY],[TYPE,WEARABLE]],[/(g watch r)/i],[MODEL,[VENDOR,LG],[TYPE,WEARABLE]],[/droid.+; (wt63?0{2,3})\)/i],[MODEL,[VENDOR,ZEBRA],[TYPE,WEARABLE]],[/droid.+; (glass) \d/i],[MODEL,[VENDOR,GOOGLE],[TYPE,XR]],[/(pico) ([\w ]+) os\d/i],[VENDOR,MODEL,[TYPE,XR]],[/(quest( \d| pro)?s?).+vr/i],[MODEL,[VENDOR,FACEBOOK],[TYPE,XR]],[/mobile vr; rv.+firefox/i],[[TYPE,XR]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[VENDOR,[TYPE,EMBEDDED]],[/(aeobc)\b/i],[MODEL,[VENDOR,AMAZON],[TYPE,EMBEDDED]],[/(homepod).+mac os/i],[MODEL,[VENDOR,APPLE],[TYPE,EMBEDDED]],[/windows iot/i],[[TYPE,EMBEDDED]],[/droid.+; ([\w- ]+) (4k|android|smart|google)[- ]?tv/i],[MODEL,[TYPE,SMARTTV]],[/\b((4k|android|smart|opera)[- ]?tv|tv; rv:|large screen[\w ]+safari)\b/i],[[TYPE,SMARTTV]],[/droid .+?; ([^;]+?)(?: bui|; wv\)|\) applew|; hmsc).+?(mobile|vr|\d) safari/i],[MODEL,[TYPE,strMapper,{mobile:"Mobile",xr:"VR","*":TABLET}]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[TYPE,TABLET]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[TYPE,MOBILE]],[/droid .+?; ([\w\. -]+)( bui|\))/i],[MODEL,[VENDOR,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[VERSION,[NAME,EDGE+"HTML"]],[/(arkweb)\/([\w\.]+)/i],[NAME,VERSION],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[VERSION,[NAME,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna|servo)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links|dillo)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[NAME,VERSION],[/ladybird\//i],[[NAME,"LibWeb"]],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[VERSION,NAME]],os:[[/(windows nt) (6\.[23]); arm/i],[[NAME,/N/,"R"],[VERSION,strMapper,windowsVersionMap]],[/(windows (?:phone|mobile|iot))(?: os)?[\/ ]?([\d\.]*( se)?)/i,/(windows)[\/ ](1[01]|2000|3\.1|7|8(\.1)?|9[58]|me|server 20\d\d( r2)?|vista|xp)/i],[NAME,VERSION],[/windows nt ?([\d\.\)]*)(?!.+xbox)/i,/\bwin(?=3| ?9|n)(?:nt| 9x )?([\d\.;]*)/i],[[VERSION,/(;|\))/g,"",strMapper,windowsVersionMap],[NAME,WINDOWS]],[/(windows ce)\/?([\d\.]*)/i],[NAME,VERSION],[/[adehimnop]{4,7}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv|ios(?=.+ip(?:ad|hone)|.+apple ?tv)|ip(?:ad|hone)(?: |.+i(?:pad)?)os|apple ?tv.+ios)[\/ ]([\w\.]+)/i,/\btvos ?([\w\.]+)/i,/cfnetwork\/.+darwin/i],[[VERSION,/_/g,"."],[NAME,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+(haiku|morphos))/i],[[NAME,"macOS"],[VERSION,/_/g,"."]],[/android ([\d\.]+).*crkey/i],[VERSION,[NAME,CHROMECAST+" Android"]],[/fuchsia.*crkey\/([\d\.]+)/i],[VERSION,[NAME,CHROMECAST+" Fuchsia"]],[/crkey\/([\d\.]+).*devicetype\/smartspeaker/i],[VERSION,[NAME,CHROMECAST+" SmartSpeaker"]],[/linux.*crkey\/([\d\.]+)/i],[VERSION,[NAME,CHROMECAST+" Linux"]],[/crkey\/([\d\.]+)/i],[VERSION,[NAME,CHROMECAST]],[/droid ([\w\.]+)\b.+(android[- ]x86)/i],[VERSION,NAME],[/(ubuntu) ([\w\.]+) like android/i],[[NAME,/(.+)/,"$1 Touch"],VERSION],[/(harmonyos)[\/ ]?([\d\.]*)/i,/(android|bada|blackberry|kaios|maemo|meego|openharmony|qnx|rim tablet os|sailfish|series40|symbian|tizen)\w*[-\/\.; ]?([\d\.]*)/i],[NAME,VERSION],[/\(bb(10);/i],[VERSION,[NAME,BLACKBERRY]],[/(?:symbian ?os|symbos|s60(?=;)|series ?60)[-\/ ]?([\w\.]*)/i],[VERSION,[NAME,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile[;\w ]*|tablet|tv|[^\)]*(?:viera|lg(?:l25|-d300)|alcatel ?o.+|y300-f1)); rv:([\w\.]+)\).+gecko\//i],[VERSION,[NAME,FIREFOX+" OS"]],[/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i,/webos(?:[ \/]?|\.tv-20(?=2[2-9]))(\d[\d\.]*)/i],[VERSION,[NAME,"webOS"]],[/web0s;.+?(?:chr[o0]me|safari)\/(\d+)/i],[[VERSION,strMapper,{25:"120",24:"108",23:"94",22:"87",6:"79",5:"68",4:"53",3:"38",2:"538",1:"537","*":"TV"}],[NAME,"webOS"]],[/watch(?: ?os[,\/ ]|\d,\d\/)([\d\.]+)/i],[VERSION,[NAME,"watchOS"]],[/cros [\w]+(?:\)| ([\w\.]+)\b)/i],[VERSION,[NAME,"Chrome OS"]],[/kepler ([\w\.]+); (aft|aeo)/i],[VERSION,[NAME,"Vega OS"]],[/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) (\w+)/i,/(xbox); +xbox ([^\);]+)/i,/(pico) .+os([\w\.]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/linux.+(mint)[\/\(\) ]?([\w\.]*)/i,/(mageia|vectorlinux|fuchsia|arcaos|arch(?= ?linux))[;l ]([\d\.]*)/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire|knoppix)(?: gnu[\/ ]linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/\b(aix)[; ]([1-9\.]{0,4})/i,/(hurd|linux|morphos)(?: (?:arm|x86|ppc)\w*| ?)([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) ?(r\d)?/i],[NAME,VERSION],[/(sunos) ?([\d\.]*)/i],[[NAME,"Solaris"],VERSION],[/\b(beos|os\/2|amigaos|openvms|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[NAME,VERSION]]};var defaultProps=function(){var props={init:{},isIgnore:{},isIgnoreRgx:{},toString:{}};setProps.call(props.init,[[BROWSER,[NAME,VERSION,MAJOR,TYPE]],[CPU,[ARCHITECTURE]],[DEVICE,[TYPE,MODEL,VENDOR]],[ENGINE,[NAME,VERSION]],[OS,[NAME,VERSION]]]);setProps.call(props.isIgnore,[[BROWSER,[VERSION,MAJOR]],[ENGINE,[VERSION]],[OS,[VERSION]]]);setProps.call(props.isIgnoreRgx,[[BROWSER,/ ?browser$/i],[OS,/ ?os$/i]]);setProps.call(props.toString,[[BROWSER,[NAME,VERSION]],[CPU,[ARCHITECTURE]],[DEVICE,[VENDOR,MODEL]],[ENGINE,[NAME,VERSION]],[OS,[NAME,VERSION]]]);return props}();var createIData=function(item,itemType){var init_props=defaultProps.init[itemType],is_ignoreProps=defaultProps.isIgnore[itemType]||0,is_ignoreRgx=defaultProps.isIgnoreRgx[itemType]||0,toString_props=defaultProps.toString[itemType]||0;function IData(){setProps.call(this,init_props)}IData.prototype.getItem=function(){return item};IData.prototype.withClientHints=function(){if(!NAVIGATOR_UADATA){return item.parseCH().get()}return NAVIGATOR_UADATA.getHighEntropyValues(CH_ALL_VALUES).then(function(res){return item.setCH(new UACHData(res,false)).parseCH().get()})};IData.prototype.withFeatureCheck=function(){return item.detectFeature().get()};if(itemType!=RESULT){IData.prototype.is=function(strToCheck){var is=false;for(var i in this){if(this.hasOwnProperty(i)&&!has(is_ignoreProps,i)&&lowerize(is_ignoreRgx?strip(is_ignoreRgx,this[i]):this[i])==lowerize(is_ignoreRgx?strip(is_ignoreRgx,strToCheck):strToCheck)){is=true;if(strToCheck!=TYPEOF.UNDEFINED)break}else if(strToCheck==TYPEOF.UNDEFINED&&is){is=!is;break}}return is};IData.prototype.toString=function(){var str=EMPTY;for(var i in toString_props){if(typeof this[toString_props[i]]!==TYPEOF.UNDEFINED){str+=(str?" ":EMPTY)+this[toString_props[i]]}}return str||TYPEOF.UNDEFINED}}IData.prototype.then=function(cb){var that=this;var IDataResolve=function(){for(var prop in that){if(that.hasOwnProperty(prop)){this[prop]=that[prop]}}};IDataResolve.prototype={is:IData.prototype.is,toString:IData.prototype.toString,withClientHints:IData.prototype.withClientHints,withFeatureCheck:IData.prototype.withFeatureCheck};var resolveData=new IDataResolve;cb(resolveData);return resolveData};return new IData};function UACHData(uach,isHttpUACH){uach=uach||{};setProps.call(this,CH_ALL_VALUES);if(isHttpUACH){setProps.call(this,[[BRANDS,itemListToArray(uach[CH])],[FULLVERLIST,itemListToArray(uach[CH_FULL_VER_LIST])],[MOBILE,/\?1/.test(uach[CH_MOBILE])],[MODEL,stripQuotes(uach[CH_MODEL])],[PLATFORM,stripQuotes(uach[CH_PLATFORM])],[PLATFORMVER,stripQuotes(uach[CH_PLATFORM_VER])],[ARCHITECTURE,stripQuotes(uach[CH_ARCH])],[FORMFACTORS,itemListToArray(uach[CH_FORM_FACTORS])],[BITNESS,stripQuotes(uach[CH_BITNESS])]])}else{for(var prop in uach){if(this.hasOwnProperty(prop)&&typeof uach[prop]!==TYPEOF.UNDEFINED)this[prop]=uach[prop]}}}function UAItem(itemType,ua,rgxMap,uaCH){setProps.call(this,[["itemType",itemType],["ua",ua],["uaCH",uaCH],["rgxMap",rgxMap],["data",createIData(this,itemType)]]);return this}UAItem.prototype.get=function(prop){if(!prop)return this.data;return this.data.hasOwnProperty(prop)?this.data[prop]:undefined};UAItem.prototype.set=function(prop,val){this.data[prop]=val;return this};UAItem.prototype.setCH=function(ch){this.uaCH=ch;return this};UAItem.prototype.detectFeature=function(){if(NAVIGATOR&&NAVIGATOR.userAgent==this.ua){switch(this.itemType){case BROWSER:if(NAVIGATOR.brave&&typeof NAVIGATOR.brave.isBrave==TYPEOF.FUNCTION){this.set(NAME,"Brave")}break;case DEVICE:if(!this.get(TYPE)&&NAVIGATOR_UADATA&&NAVIGATOR_UADATA[MOBILE]){this.set(TYPE,MOBILE)}if(this.get(MODEL)=="Macintosh"&&NAVIGATOR&&typeof NAVIGATOR.standalone!==TYPEOF.UNDEFINED&&NAVIGATOR.maxTouchPoints&&NAVIGATOR.maxTouchPoints>2){this.set(MODEL,"iPad").set(TYPE,TABLET)}break;case OS:if(!this.get(NAME)&&NAVIGATOR_UADATA&&NAVIGATOR_UADATA[PLATFORM]){this.set(NAME,NAVIGATOR_UADATA[PLATFORM])}break;case RESULT:var data=this.data;var detect=function(itemType){return data[itemType].getItem().detectFeature().get()};this.set(BROWSER,detect(BROWSER)).set(CPU,detect(CPU)).set(DEVICE,detect(DEVICE)).set(ENGINE,detect(ENGINE)).set(OS,detect(OS))}}return this};UAItem.prototype.parseUA=function(){if(this.itemType!=RESULT){rgxMapper.call(this.data,this.ua,this.rgxMap)}switch(this.itemType){case BROWSER:this.set(MAJOR,majorize(this.get(VERSION)));break;case OS:if(this.get(NAME)=="iOS"&&this.get(VERSION)=="18.6"){var realVersion=/\) Version\/([\d\.]+)/.exec(this.ua);if(realVersion&&parseInt(realVersion[1].substring(0,2),10)>=26){this.set(VERSION,realVersion[1])}}break}return this};UAItem.prototype.parseCH=function(){var uaCH=this.uaCH,rgxMap=this.rgxMap;switch(this.itemType){case BROWSER:case ENGINE:var brands=uaCH[FULLVERLIST]||uaCH[BRANDS],prevName;if(brands){for(var i=0;i<brands.length;i++){var brandName=brands[i].brand||brands[i],brandVersion=brands[i].version;if(this.itemType==BROWSER&&!/not.a.brand/i.test(brandName)&&(!prevName||/Chrom/.test(prevName)&&brandName!=CHROMIUM||prevName==EDGE&&/WebView2/.test(brandName))){brandName=strMapper(brandName,browserHintsMap);prevName=this.get(NAME);if(!(prevName&&!/Chrom/.test(prevName)&&/Chrom/.test(brandName))){this.set(NAME,brandName).set(VERSION,brandVersion).set(MAJOR,majorize(brandVersion))}prevName=brandName}if(this.itemType==ENGINE&&brandName==CHROMIUM){this.set(VERSION,brandVersion)}}}break;case CPU:var archName=uaCH[ARCHITECTURE];if(archName){if(archName&&uaCH[BITNESS]=="64")archName+="64";rgxMapper.call(this.data,archName+";",rgxMap)}break;case DEVICE:if(uaCH[MOBILE]){this.set(TYPE,MOBILE)}if(uaCH[MODEL]){this.set(MODEL,uaCH[MODEL]);if(!this.get(TYPE)||!this.get(VENDOR)){var reParse={};rgxMapper.call(reParse,"droid 9; "+uaCH[MODEL]+")",rgxMap);if(!this.get(TYPE)&&!!reParse.type){this.set(TYPE,reParse.type)}if(!this.get(VENDOR)&&!!reParse.vendor){this.set(VENDOR,reParse.vendor)}}}if(uaCH[FORMFACTORS]){var ff;if(typeof uaCH[FORMFACTORS]!=="string"){var idx=0;while(!ff&&idx<uaCH[FORMFACTORS].length){ff=strMapper(uaCH[FORMFACTORS][idx++],formFactorsMap)}}else{ff=strMapper(uaCH[FORMFACTORS],formFactorsMap)}this.set(TYPE,ff)}break;case OS:var osName=uaCH[PLATFORM];if(osName){var osVersion=uaCH[PLATFORMVER];if(osName==WINDOWS)osVersion=parseInt(majorize(osVersion),10)>=13?"11":"10";this.set(NAME,osName).set(VERSION,osVersion)}if(this.get(NAME)==WINDOWS&&uaCH[MODEL]=="Xbox"){this.set(NAME,"Xbox").set(VERSION,undefined)}break;case RESULT:var data=this.data;var parse=function(itemType){return data[itemType].getItem().setCH(uaCH).parseCH().get()};this.set(BROWSER,parse(BROWSER)).set(CPU,parse(CPU)).set(DEVICE,parse(DEVICE)).set(ENGINE,parse(ENGINE)).set(OS,parse(OS))}return this};function UAParser(ua,extensions,headers){if(typeof ua===TYPEOF.OBJECT){if(isExtensions(ua,true)){if(typeof extensions===TYPEOF.OBJECT){headers=extensions}extensions=ua}else{headers=ua;extensions=undefined}ua=undefined}else if(typeof ua===TYPEOF.STRING&&!isExtensions(extensions,true)){headers=extensions;extensions=undefined}if(headers){if(typeof headers.append===TYPEOF.FUNCTION){var kv={};headers.forEach(function(v,k){kv[String(k).toLowerCase()]=v});headers=kv}else{var normalized={};for(var header in headers){if(headers.hasOwnProperty(header)){normalized[String(header).toLowerCase()]=headers[header]}}headers=normalized}}if(!(this instanceof UAParser)){return new UAParser(ua,extensions,headers).getResult()}var userAgent=typeof ua===TYPEOF.STRING?ua:headers&&headers[USER_AGENT]?headers[USER_AGENT]:NAVIGATOR&&NAVIGATOR.userAgent?NAVIGATOR.userAgent:EMPTY,httpUACH=new UACHData(headers,true),regexMap=extensions?extend(defaultRegexes,extensions):defaultRegexes,createItemFunc=function(itemType){if(itemType==RESULT){return function(){return new UAItem(itemType,userAgent,regexMap,httpUACH).set("ua",userAgent).set(BROWSER,this.getBrowser()).set(CPU,this.getCPU()).set(DEVICE,this.getDevice()).set(ENGINE,this.getEngine()).set(OS,this.getOS()).get()}}else{return function(){return new UAItem(itemType,userAgent,regexMap[itemType],httpUACH).parseUA().get()}}};setProps.call(this,[["getBrowser",createItemFunc(BROWSER)],["getCPU",createItemFunc(CPU)],["getDevice",createItemFunc(DEVICE)],["getEngine",createItemFunc(ENGINE)],["getOS",createItemFunc(OS)],["getResult",createItemFunc(RESULT)],["getUA",function(){return userAgent}],["setUA",function(ua){if(isString(ua))userAgent=trim(ua,UA_MAX_LENGTH);return this}]]).setUA(userAgent);return this}UAParser.VERSION=LIBVERSION;UAParser.BROWSER=enumerize([NAME,VERSION,MAJOR,TYPE]);UAParser.CPU=enumerize([ARCHITECTURE]);UAParser.DEVICE=enumerize([MODEL,VENDOR,TYPE,CONSOLE,MOBILE,SMARTTV,TABLET,WEARABLE,EMBEDDED]);UAParser.ENGINE=UAParser.OS=enumerize([NAME,VERSION]);export{UAParser};

================================================
FILE: dist/ua-parser.pack.js
================================================
/* UAParser.js v2.0.9
   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>
   AGPLv3 License */
((i,c)=>{function A(i){for(var e={},t=0;t<i.length;t++)e[i[t].toUpperCase()]=i[t];return e}function B(i){return Ti(i)?Oi(/[^\d\.]/g,i).split(".")[0]:c}function H(i,e){if(i&&e)for(var t,o,r,a,s,n=0;n<e.length&&!a;){for(var w=e[n],b=e[n+1],d=t=0;d<w.length&&!a&&w[d];)if(a=w[d++].exec(i))for(o=0;o<b.length;o++)s=a[++t],typeof(r=b[o])===l.OBJECT&&0<r.length?2===r.length?typeof r[1]==l.FUNCTION?this[r[0]]=r[1].call(this,s):this[r[0]]=r[1]:3<=r.length&&(typeof r[1]!==l.FUNCTION||r[1].exec&&r[1].test?3==r.length?this[r[0]]=s?s.replace(r[1],r[2]):c:4==r.length?this[r[0]]=s?r[3].call(this,s.replace(r[1],r[2])):c:4<r.length&&(this[r[0]]=s?r[3].apply(this,[s.replace(r[1],r[2])].concat(r.slice(4))):c):3<r.length?this[r[0]]=s?r[1].apply(this,r.slice(2)):c:this[r[0]]=s?r[1].call(this,s,r[2]):c):this[r]=s||c;n+=2}}function p(i,e){for(var t in e)if(typeof e[t]===l.OBJECT&&0<e[t].length){for(var o=0;o<e[t].length;o++)if(Ei(e[t][o],i))return"?"===t?c:t}else if(Ei(e[t],i))return"?"===t?c:t;return e.hasOwnProperty("*")?e["*"]:i}function M(e,i){var t=Ai.init[i],o=Ai.isIgnore[i]||0,r=Ai.isIgnoreRgx[i]||0,a=Ai.toString[i]||0;function s(){D.call(this,t)}return s.prototype.getItem=function(){return e},s.prototype.withClientHints=function(){return _?_.getHighEntropyValues(oi).then(function(i){return e.setCH(new Bi(i,!1)).parseCH().get()}):e.parseCH().get()},s.prototype.withFeatureCheck=function(){return e.detectFeature().get()},i!=v&&(s.prototype.is=function(i){var e,t=!1;for(e in this)if(this.hasOwnProperty(e)&&!Ei(o,e)&&q(r?Oi(r,this[e]):this[e])==q(r?Oi(r,i):i)){if(t=!0,i!=l.UNDEFINED)break}else if(i==l.UNDEFINED&&t){t=!t;break}return t},s.prototype.toString=function(){var i,e=d;for(i in a)typeof this[a[i]]!==l.UNDEFINED&&(e+=(e?" ":d)+this[a[i]]);return e||l.UNDEFINED}),s.prototype.then=function(i){function e(){for(var i in t)t.hasOwnProperty(i)&&(this[i]=t[i])}var t=this,o=(e.prototype={is:s.prototype.is,toString:s.prototype.toString,withClientHints:s.prototype.withClientHints,withFeatureCheck:s.prototype.withFeatureCheck},new e);return i(o),o},new s}var V="user-agent",d="",l={FUNCTION:"function",OBJECT:"object",STRING:"string",UNDEFINED:"undefined"},h="browser",u="cpu",m="device",f="engine",g="os",v="result",k="name",x="type",y="vendor",C="version",N="architecture",j="major",E="model",P="console",S="mobile",t="tablet",e="smarttv",o="wearable",R="xr",G="embedded",r="inapp",L="brands",T="formFactors",$="fullVersionList",I="platform",W="platformVersion",J="bitness",a="sec-ch-ua",X=a+"-full-version-list",Y=a+"-arch",Z=a+"-"+J,Q=a+"-form-factors",K=a+"-"+S,ii=a+"-"+E,ei=a+"-"+I,ti=ei+"-version",oi=[L,$,S,E,I,W,N,T,J],ri="Amazon",s="Apple",ai="ASUS",si="BlackBerry",n="Google",ni="Huawei",wi="Lenovo",bi="Honor",di="Microsoft",li="Motorola",ci="OnePlus",pi="OPPO",hi="Samsung",ui="Sony",mi="Xiaomi",fi="Zebra",gi="Chromium",w="Chromecast",vi="Edge",ki="Firefox",b="Opera",xi="Facebook",O="Mobile ",yi=" Browser",Ci="Windows",Ni=typeof i!==l.UNDEFINED,U=Ni&&i.navigator?i.navigator:c,_=U&&U.userAgentData?U.userAgentData:c,Ei=function(i,e){if(typeof i===l.OBJECT&&0<i.length){for(var t in i)if(q(e)==q(i[t]))return!0;return!1}return!!Ti(i)&&q(e)==q(i)},Si=function(i,e){for(var t in i)return/^(browser|cpu|device|engine|os)$/.test(t)||!!e&&Si(i[t])},Ti=function(i){return typeof i===l.STRING},Ii=function(i){if(!i)return c;for(var e,t=[],o=Oi(/\\?\"/g,i).split(","),r=0;r<o.length;r++)-1<o[r].indexOf(";")?(e=_i(o[r]).split(";v="),t[r]={brand:e[0],version:e[1]}):t[r]=_i(o[r]);return t},q=function(i){return Ti(i)?i.toLowerCase():i},D=function(i){for(var e in i)i.hasOwnProperty(e)&&(typeof(e=i[e])==l.OBJECT&&2==e.length?this[e[0]]=e[1]:this[e]=c);return this},Oi=function(i,e){return Ti(e)?e.replace(i,d):e},Ui=function(i){return Oi(/\\?\"/g,i)},_i=function(i,e){return i=Oi(/^\s\s*/,String(i)),typeof e===l.UNDEFINED?i:i.substring(0,e)},qi={ME:"4.90","NT 3.51":"3.51","NT 4.0":"4.0",2e3:["5.0","5.01"],XP:["5.1","5.2"],Vista:"6.0",7:"6.1",8:"6.2",8.1:"6.3",10:["6.4","10.0"],NT:""},Di={embedded:"Automotive",mobile:"Mobile",tablet:["Tablet","EInk"],smarttv:"TV",wearable:"Watch",xr:["VR","XR"],"?":["Desktop","Unknown"],"*":c},Fi={Chrome:"Google Chrome",Edge:"Microsoft Edge","Edge WebView2":"Microsoft Edge WebView2","Chrome WebView":"Android WebView","Chrome Headless":"HeadlessChrome","Huawei Browser":"HuaweiBrowser","MIUI Browser":"Miui Browser","Opera Mobi":"OperaMobile",Yandex:"YaBrowser"},zi={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[C,[k,O+"Chrome"]],[/webview.+edge\/([\w\.]+)/i],[C,[k,vi+" WebView"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[C,[k,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[k,C],[/opios[\/ ]+([\w\.]+)/i],[C,[k,b+" Mini"]],[/\bop(?:rg)?x\/([\w\.]+)/i],[C,[k,b+" GX"]],[/\bopr\/([\w\.]+)/i],[C,[k,b]],[/\bb[ai]*d(?:uhd|[ub]*[aekoprswx]{5,6})[\/ ]?([\w\.]+)/i],[C,[k,"Baidu"]],[/\b(?:mxbrowser|mxios|myie2)\/?([-\w\.]*)\b/i],[C,[k,"Maxthon"]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer|sleipnir)[\/ ]?([\w\.]*)/i,/(avant|iemobile|slim(?:browser|boat|jet))[\/ ]?([\d\.]*)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(atlas|flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|qupzilla|falkon|rekonq|puffin|whale(?!.+naver)|qqbrowserlite|duckduckgo|klar|helio|(?=comodo_)?dragon|otter|dooble|(?:hi|lg |ovi|qute)browser|palemoon)\/v?([-\w\.]+)/i,/(brave)(?: chrome)?\/([\d\.]+)/i,/(aloha|heytap|ovi|115|surf|qwant)browser\/([\d\.]+)/i,/(qwant)(?:ios|mobile)\/([\d\.]+)/i,/(ecosia|weibo)(?:__| \w+@)([\d\.]+)/i],[k,C],[/quark(?:pc)?\/([-\w\.]+)/i],[C,[k,"Quark"]],[/\bddg\/([\w\.]+)/i],[C,[k,"DuckDuckGo"]],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[C,[k,"UCBrowser"]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i,/micromessenger\/([\w\.]+)/i],[C,[k,"WeChat"]],[/konqueror\/([\w\.]+)/i],[C,[k,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[C,[k,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[C,[k,"Yandex"]],[/slbrowser\/([\w\.]+)/i],[C,[k,"Smart "+wi+yi]],[/(av(?:ast|g|ira))\/([\w\.]+)/i],[[k,/(.+)/,"$1 Secure"+yi],C],[/norton\/([\w\.]+)/i],[C,[k,"Norton Private"+yi]],[/\bfocus\/([\w\.]+)/i],[C,[k,ki+" Focus"]],[/ mms\/([\w\.]+)$/i],[C,[k,b+" Neon"]],[/ opt\/([\w\.]+)$/i],[C,[k,b+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[C,[k,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[C,[k,"Dolphin"]],[/coast\/([\w\.]+)/i],[C,[k,b+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[C,[k,"MIUI"+yi]],[/fxios\/([\w\.-]+)/i],[C,[k,O+ki]],[/\bqihoobrowser\/?([\w\.]*)/i],[C,[k,"360"]],[/\b(qq)\/([\w\.]+)/i],[[k,/(.+)/,"$1Browser"],C],[/(oculus|sailfish|huawei|vivo|pico)browser\/([\w\.]+)/i],[[k,/(.+)/,"$1"+yi],C],[/samsungbrowser\/([\w\.]+)/i],[C,[k,hi+" Internet"]],[/metasr[\/ ]?([\d\.]+)/i],[C,[k,"Sogou Explorer"]],[/(sogou)mo\w+\/([\d\.]+)/i],[[k,"Sogou Mobile"],C],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|2345(?=browser|chrome|explorer))\w*[\/ ]?v?([\w\.]+)/i],[k,C],[/(lbbrowser|luakit|rekonq|steam(?= (clie|tenf|gameo)))/i],[k],[/ome\/([\w\.]+).+(iron(?= saf)|360(?=[es]e$))/i],[C,k],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[k,xi],C,[x,r]],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/(daum)apps[\/ ]([\w\.]+)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(alipay)client\/([\w\.]+)/i,/(twitter)(?:and| f.+e\/([\w\.]+))/i,/(bing)(?:web|sapphire)\/([\w\.]+)/i,/(instagram|snapchat|klarna)[\/ ]([-\w\.]+)/i],[k,C,[x,r]],[/\bgsa\/([\w\.]+) .*safari\//i],[C,[k,"GSA"],[x,r]],[/(?:musical_ly|trill)(?:.+app_?version\/|_)([\w\.]+)/i],[C,[k,"TikTok"],[x,r]],[/\[(linkedin)app\]/i],[k,[x,r]],[/(zalo(?:app)?)[\/\sa-z]*([\w\.-]+)/i],[[k,/(.+)/,"Zalo"],C,[x,r]],[/(chromium)[\/ ]([-\w\.]+)/i],[k,C],[/ome-(lighthouse)$/i],[k,[x,"fetcher"]],[/headlesschrome(?:\/([\w\.]+)| )/i],[C,[k,"Chrome Headless"]],[/wv\).+chrome\/([\w\.]+).+edgw\//i],[C,[k,vi+" WebView2"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[k,"Chrome WebView"],C],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[C,[k,"Android"+yi]],[/chrome\/([\w\.]+) mobile/i],[C,[k,O+"Chrome"]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[k,C],[/version\/([\w\.\,]+) .*mobile(?:\/\w+ | ?)safari/i],[C,[k,O+"Safari"]],[/iphone .*mobile(?:\/\w+ | ?)safari/i],[[k,O+"Safari"]],[/version\/([\w\.\,]+) .*(safari)/i],[C,k],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[k,[C,"1"]],[/(webkit|khtml)\/([\w\.]+)/i],[k,C],[/(?:mobile|tablet);.*(firefox)\/([\w\.-]+)/i],[[k,O+ki],C],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[k,"Netscape"],C],[/(wolvic|librewolf)\/([\w\.]+)/i],[k,C],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[C,[k,ki+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+(?= .+rv\:.+gecko\/\d+)|[0-4][\w\.]+(?!.+compatible))/i,/(amaya|dillo|doris|icab|ladybird|lynx|mosaic|netsurf|obigo|polaris|w3m|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/\b(links) \(([\w\.]+)/i],[k,[C,/_/g,"."]],[/(cobalt)\/([\w\.]+)/i],[k,[C,/[^\d\.]+./,d]]],cpu:[[/\b((amd|x|x86[-_]?|wow|win)64)\b/i],[[N,"amd64"]],[/(ia32(?=;))/i,/\b((i[346]|x)86)(pc)?\b/i],[[N,"ia32"]],[/\b(aarch64|arm(v?[89]e?l?|_?64))\b/i],[[N,"arm64"]],[/\b(arm(v[67])?ht?n?[fl]p?)\b/i],[[N,"armhf"]],[/( (ce|mobile); ppc;|\/[\w\.]+arm\b)/i],[[N,"arm"]],[/ sun4\w[;\)]/i],[[N,"sparc"]],[/\b(avr32|ia64(?=;)|68k(?=\))|\barm(?=v([1-7]|[5-7]1)l?|;|eabi)|(irix|mips|sparc)(64)?\b|pa-risc)/i,/((ppc|powerpc)(64)?)( mac|;|\))/i,/(?:osf1|[freopnt]{3,4}bsd) (alpha)/i],[[N,/ower/,d,q]],[/mc680.0/i],[[N,"68k"]],[/winnt.+\[axp/i],[[N,"alpha"]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[E,[y,hi],[x,t]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,/sec-(sgh\w+)/i],[E,[y,hi],[x,S]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)[\/\);]/i],[E,[y,s],[x,S]],[/\b(?:ios|apple\w+)\/.+[\(\/](ipad)/i,/\b(ipad)[\d,]*[;\] ].+(mac |i(pad)?)os/i],[E,[y,s],[x,t]],[/(macintosh);/i],[E,[y,s]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[E,[y,"Sharp"],[x,S]],[/\b((?:brt|eln|hey2?|gdi|jdn)-a?[lnw]09|(?:ag[rm]3?|jdn2|kob2)-a?[lw]0[09]hn)(?: bui|\)|;)/i],[E,[y,bi],[x,t]],[/honor([-\w ]+)[;\)]/i],[E,[y,bi],[x,S]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?|605hw|bg2-u03|(?:gem|fdr|m2|ple|t1)-[7a]0[1-4][lu]|t1-a2[13][lw]|mediapad[\w\. ]*(?= bui|\)))\b(?!.+d\/s)/i],[E,[y,ni],[x,t]],[/(?:huawei) ?([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i],[E,[y,ni],[x,S]],[/oid[^\)]+; (2[\dbc]{4}(182|283|rp\w{2})[cgl]|m2105k81a?c)(?: bui|\))/i,/\b(?:xiao)?((?:red)?mi[-_ ]?pad[\w- ]*)(?: bui|\))/i],[[E,/_/g," "],[y,mi],[x,t]],[/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/oid[^\)]+; (redmi[\-_ ]?(?:note|k)?[\w_ ]+|m?[12]\d[01]\d\w{3,6}|poco[\w ]+|(shark )?\w{3}-[ah]0|qin ?[1-3](s\+|ultra| pro)?)( bui|; wv|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note|max|cc)?[_ ]?(?:\d{0,2}\w?)[_ ]?(?:plus|se|lite|pro)?( 5g|lte)?)(?: bui|\))/i,/ ([\w ]+) miui\/v?\d/i],[[E,/_/g," "],[y,mi],[x,S]],[/droid.+; (cph2[3-6]\d[13579]|((gm|hd)19|(ac|be|in|kb)20|(d[en]|eb|le|mt)21|ne22)[0-2]\d|p[g-l]\w[1m]10)\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[E,[y,ci],[x,S]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[E,[y,pi],[x,S]],[/\b(opd2(\d{3}a?))(?: bui|\))/i],[E,[y,p,{OnePlus:["203","304","403","404","413","415"],"*":pi}],[x,t]],[/(vivo (5r?|6|8l?|go|one|s|x[il]?[2-4]?)[\w\+ ]*)(?: bui|\))/i],[E,[y,"BLU"],[x,S]],[/; vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[E,[y,"Vivo"],[x,S]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i],[E,[y,"Realme"],[x,S]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])( bui|;|\)|\/)/i,/lenovo ?(b[68]0[08]0-?[hf]?|tab(?:[\w- ]+?)|tb[\w-]{6,7})( bui|;|\)|\/)/i],[E,[y,wi],[x,t]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i],[E,[y,wi],[x,S]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,/((?:moto(?! 360)[-\w\(\) ]+|xt\d{3,4}[cgkosw\+]?[-\d]*|nexus 6)(?= bui|\)))/i],[E,[y,li],[x,S]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[E,[y,li],[x,t]],[/\b(?:lg)?([vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[E,[y,"LG"],[x,t]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,/\blg-?([\d\w]+) bui/i],[E,[y,"LG"],[x,S]],[/(nokia) (t[12][01])/i],[y,E,[x,t]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,/nokia[-_ ]?(([-\w\. ]*?))( bui|\)|;|\/)/i],[[E,/_/g," "],[x,S],[y,"Nokia"]],[/(pixel (c|tablet))\b/i],[E,[y,n],[x,t]],[/droid.+;(?: google)? (g(01[13]a|020[aem]|025[jn]|1b60|1f8f|2ybb|4s1m|576d|5nz6|8hhn|8vou|a02099|c15s|d1yq|e2ae|ec77|gh2x|kv4x|p4bc|pj41|r83y|tt9q|ur25|wvk6)|pixel[\d ]*a?( pro)?( xl)?( fold)?( \(5g\))?)( bui|\))/i],[E,[y,n],[x,S]],[/(google) (pixelbook( go)?)/i],[y,E],[/droid.+; (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-\w\w\d\d)(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[E,[y,ui],[x,S]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[E,"Xperia Tablet"],[y,ui],[x,t]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo(?!bc)\w\w)( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[E,[y,ri],[x,t]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[E,/(.+)/g,"Fire Phone $1"],[y,ri],[x,S]],[/(playbook);[-\w\),; ]+(rim)/i],[E,y,[x,t]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/(?:blackberry|\(bb10;) (\w+)/i],[E,[y,si],[x,S]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[E,[y,ai],[x,t]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[E,[y,ai],[x,S]],[/(nexus 9)/i],[E,[y,"HTC"],[x,t]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[y,[E,/_/g," "],[x,S]],[/tcl (xess p17aa)/i,/droid [\w\.]+; ((?:8[14]9[16]|9(?:0(?:48|60|8[01])|1(?:3[27]|66)|2(?:6[69]|9[56])|466))[gqswx])(_\w(\w|\w\w))?(\)| bui)/i],[E,[y,"TCL"],[x,t]],[/droid [\w\.]+; (418(?:7d|8v)|5087z|5102l|61(?:02[dh]|25[adfh]|27[ai]|56[dh]|59k|65[ah])|a509dl|t(?:43(?:0w|1[adepqu])|50(?:6d|7[adju])|6(?:09dl|10k|12b|71[efho]|76[hjk])|7(?:66[ahju]|67[hw]|7[045][bh]|71[hk]|73o|76[ho]|79w|81[hks]?|82h|90[bhsy]|99b)|810[hs]))(_\w(\w|\w\w))?(\)| bui)/i],[E,[y,"TCL"],[x,S]],[/(itel) ((\w+))/i],[[y,q],E,[x,p,{tablet:["p10001l","w7001"],"*":"mobile"}]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[E,[y,"Acer"],[x,t]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[E,[y,"Meizu"],[x,S]],[/; ((?:power )?armor(?:[\w ]{0,8}))(?: bui|\))/i],[E,[y,"Ulefone"],[x,S]],[/; (energy ?\w+)(?: bui|\))/i,/; energizer ([\w ]+)(?: bui|\))/i],[E,[y,"Energizer"],[x,S]],[/; cat (b35);/i,/; (b15q?|s22 flip|s48c|s62 pro)(?: bui|\))/i],[E,[y,"Cat"],[x,S]],[/((?:new )?andromax[\w- ]+)(?: bui|\))/i],[E,[y,"Smartfren"],[x,S]],[/droid.+; (a(in)?(0(15|59|6[35])|142)p?)/i],[E,[y,"Nothing"],[x,S]],[/; (x67 5g|tikeasy \w+|ac[1789]\d\w+)( b|\))/i,/archos ?(5|gamepad2?|([\w ]*[t1789]|hello) ?\d+[\w ]*)( b|\))/i],[E,[y,"Archos"],[x,t]],[/archos ([\w ]+)( b|\))/i,/; (ac[3-6]\d\w{2,8})( b|\))/i],[E,[y,"Archos"],[x,S]],[/; (n159v)/i],[E,[y,"HMD"],[x,S]],[/(imo) (tab \w+)/i,/(infinix|tecno) (x1101b?|p904|dp(7c|8d|10a)( pro)?|p70[1-3]a?|p904|t1101)/i],[y,E,[x,t]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus(?! zenw)|dell|jolla|meizu|motorola|polytron|tecno|micromax|advan)[-_ ]?([-\w]*)/i,/; (blu|hmd|imo|infinix|lava|oneplus|tcl|wiko)[_ ]([\w\+ ]+?)(?: bui|\)|; r)/i,/(hp) ([\w ]+\w)/i,/(microsoft); (lumia[\w ]+)/i,/(oppo) ?([\w ]+) bui/i,/(hisense) ([ehv][\w ]+)\)/i,/droid[^;]+; (philips)[_ ]([sv-x][\d]{3,4}[xz]?)/i],[y,E,[x,S]],[/(kobo)\s(ereader|touch)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i],[y,E,[x,t]],[/(surface duo)/i],[E,[y,di],[x,t]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[E,[y,"Fairphone"],[x,S]],[/((?:tegranote|shield t(?!.+d tv))[\w- ]*?)(?: b|\))/i],[E,[y,"Nvidia"],[x,t]],[/(sprint) (\w+)/i],[y,E,[x,S]],[/(kin\.[onetw]{3})/i],[[E,/\./g," "],[y,di],[x,S]],[/droid.+; ([c6]+|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[E,[y,fi],[x,t]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[E,[y,fi],[x,S]],[/(philips)[\w ]+tv/i,/smart-tv.+(samsung)/i],[y,[x,e]],[/hbbtv.+maple;(\d+)/i],[[E,/^/,"SmartTV"],[y,hi],[x,e]],[/(vizio)(?: |.+model\/)(\w+-\w+)/i,/tcast.+(lg)e?. ([-\w]+)/i],[y,E,[x,e]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[y,"LG"],[x,e]],[/(apple) ?tv/i],[y,[E,s+" TV"],[x,e]],[/crkey.*devicetype\/chromecast/i],[[E,w+" Third Generation"],[y,n],[x,e]],[/crkey.*devicetype\/([^/]*)/i],[[E,/^/,"Chromecast "],[y,n],[x,e]],[/fuchsia.*crkey/i],[[E,w+" Nest Hub"],[y,n],[x,e]],[/crkey/i],[[E,w],[y,n],[x,e]],[/(portaltv)/i],[E,[y,xi],[x,e]],[/droid.+aft(\w+)( bui|\))/i],[E,[y,ri],[x,e]],[/(shield \w+ tv)/i],[E,[y,"Nvidia"],[x,e]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[E,[y,"Sharp"],[x,e]],[/(bravia[\w ]+)( bui|\))/i],[E,[y,ui],[x,e]],[/(mi(tv|box)-?\w+) bui/i],[E,[y,mi],[x,e]],[/Hbbtv.*(technisat) (.*);/i],[y,E,[x,e]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[y,/.+\/(\w+)/,"$1",p,{LG:"lge"}],[E,_i],[x,e]],[/(playstation \w+)/i],[E,[y,ui],[x,P]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[E,[y,di],[x,P]],[/(ouya)/i,/(nintendo) (\w+)/i,/(retroid) (pocket ([^\)]+))/i,/(valve).+(steam deck)/i,/droid.+; ((shield|rgcube|gr0006))( bui|\))/i],[[y,p,{Nvidia:"Shield",Anbernic:"RGCUBE",Logitech:"GR0006"}],E,[x,P]],[/\b(sm-[lr]\d\d[0156][fnuw]?s?|gear live)\b/i],[E,[y,hi],[x,o]],[/((pebble))app/i,/(asus|google|lg|oppo|xiaomi) ((pixel |zen)?watch[\w ]*)( bui|\))/i],[y,E,[x,o]],[/(ow(?:19|20)?we?[1-3]{1,3})/i],[E,[y,pi],[x,o]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[E,[y,s],[x,o]],[/(opwwe\d{3})/i],[E,[y,ci],[x,o]],[/(moto 360)/i],[E,[y,li],[x,o]],[/(smartwatch 3)/i],[E,[y,ui],[x,o]],[/(g watch r)/i],[E,[y,"LG"],[x,o]],[/droid.+; (wt63?0{2,3})\)/i],[E,[y,fi],[x,o]],[/droid.+; (glass) \d/i],[E,[y,n],[x,R]],[/(pico) ([\w ]+) os\d/i],[y,E,[x,R]],[/(quest( \d| pro)?s?).+vr/i],[E,[y,xi],[x,R]],[/mobile vr; rv.+firefox/i],[[x,R]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[y,[x,G]],[/(aeobc)\b/i],[E,[y,ri],[x,G]],[/(homepod).+mac os/i],[E,[y,s],[x,G]],[/windows iot/i],[[x,G]],[/droid.+; ([\w- ]+) (4k|android|smart|google)[- ]?tv/i],[E,[x,e]],[/\b((4k|android|smart|opera)[- ]?tv|tv; rv:|large screen[\w ]+safari)\b/i],[[x,e]],[/droid .+?; ([^;]+?)(?: bui|; wv\)|\) applew|; hmsc).+?(mobile|vr|\d) safari/i],[E,[x,p,{mobile:"Mobile",xr:"VR","*":t}]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[x,t]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[x,S]],[/droid .+?; ([\w\. -]+)( bui|\))/i],[E,[y,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[C,[k,vi+"HTML"]],[/(arkweb)\/([\w\.]+)/i],[k,C],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[C,[k,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna|servo)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links|dillo)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[k,C],[/ladybird\//i],[[k,"LibWeb"]],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[C,k]],os:[[/(windows nt) (6\.[23]); arm/i],[[k,/N/,"R"],[C,p,qi]],[/(windows (?:phone|mobile|iot))(?: os)?[\/ ]?([\d\.]*( se)?)/i,/(windows)[\/ ](1[01]|2000|3\.1|7|8(\.1)?|9[58]|me|server 20\d\d( r2)?|vista|xp)/i],[k,C],[/windows nt ?([\d\.\)]*)(?!.+xbox)/i,/\bwin(?=3| ?9|n)(?:nt| 9x )?([\d\.;]*)/i],[[C,/(;|\))/g,"",p,qi],[k,Ci]],[/(windows ce)\/?([\d\.]*)/i],[k,C],[/[adehimnop]{4,7}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv|ios(?=.+ip(?:ad|hone)|.+apple ?tv)|ip(?:ad|hone)(?: |.+i(?:pad)?)os|apple ?tv.+ios)[\/ ]([\w\.]+)/i,/\btvos ?([\w\.]+)/i,/cfnetwork\/.+darwin/i],[[C,/_/g,"."],[k,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+(haiku|morphos))/i],[[k,"macOS"],[C,/_/g,"."]],[/android ([\d\.]+).*crkey/i],[C,[k,w+" Android"]],[/fuchsia.*crkey\/([\d\.]+)/i],[C,[k,w+" Fuchsia"]],[/crkey\/([\d\.]+).*devicetype\/smartspeaker/i],[C,[k,w+" SmartSpeaker"]],[/linux.*crkey\/([\d\.]+)/i],[C,[k,w+" Linux"]],[/crkey\/([\d\.]+)/i],[C,[k,w]],[/droid ([\w\.]+)\b.+(android[- ]x86)/i],[C,k],[/(ubuntu) ([\w\.]+) like android/i],[[k,/(.+)/,"$1 Touch"],C],[/(harmonyos)[\/ ]?([\d\.]*)/i,/(android|bada|blackberry|kaios|maemo|meego|openharmony|qnx|rim tablet os|sailfish|series40|symbian|tizen)\w*[-\/\.; ]?([\d\.]*)/i],[k,C],[/\(bb(10);/i],[C,[k,si]],[/(?:symbian ?os|symbos|s60(?=;)|series ?60)[-\/ ]?([\w\.]*)/i],[C,[k,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile[;\w ]*|tablet|tv|[^\)]*(?:viera|lg(?:l25|-d300)|alcatel ?o.+|y300-f1)); rv:([\w\.]+)\).+gecko\//i],[C,[k,ki+" OS"]],[/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i,/webos(?:[ \/]?|\.tv-20(?=2[2-9]))(\d[\d\.]*)/i],[C,[k,"webOS"]],[/web0s;.+?(?:chr[o0]me|safari)\/(\d+)/i],[[C,p,{25:"120",24:"108",23:"94",22:"87",6:"79",5:"68",4:"53",3:"38",2:"538",1:"537","*":"TV"}],[k,"webOS"]],[/watch(?: ?os[,\/ ]|\d,\d\/)([\d\.]+)/i],[C,[k,"watchOS"]],[/cros [\w]+(?:\)| ([\w\.]+)\b)/i],[C,[k,"Chrome OS"]],[/kepler ([\w\.]+); (aft|aeo)/i],[C,[k,"Vega OS"]],[/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) (\w+)/i,/(xbox); +xbox ([^\);]+)/i,/(pico) .+os([\w\.]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/linux.+(mint)[\/\(\) ]?([\w\.]*)/i,/(mageia|vectorlinux|fuchsia|arcaos|arch(?= ?linux))[;l ]([\d\.]*)/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire|knoppix)(?: gnu[\/ ]linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/\b(aix)[; ]([1-9\.]{0,4})/i,/(hurd|linux|morphos)(?: (?:arm|x86|ppc)\w*| ?)([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) ?(r\d)?/i],[k,C],[/(sunos) ?([\d\.]*)/i],[[k,"Solaris"],C],[/\b(beos|os\/2|amigaos|openvms|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[k,C]]},Ai=(b={init:{},isIgnore:{},isIgnoreRgx:{},toString:{}},D.call(b.init,[[h,[k,C,j,x]],[u,[N]],[m,[x,E,y]],[f,[k,C]],[g,[k,C]]]),D.call(b.isIgnore,[[h,[C,j]],[f,[C]],[g,[C]]]),D.call(b.isIgnoreRgx,[[h,/ ?browser$/i],[g,/ ?os$/i]]),D.call(b.toString,[[h,[k,C]],[u,[N]],[m,[y,E]],[f,[k,C]],[g,[k,C]]]),b);function Bi(i,e){if(i=i||{},D.call(this,oi),e)D.call(this,[[L,Ii(i[a])],[$,Ii(i[X])],[S,/\?1/.test(i[K])],[E,Ui(i[ii])],[I,Ui(i[ei])],[W,Ui(i[ti])],[N,Ui(i[Y])],[T,Ii(i[Q])],[J,Ui(i[Z])]]);else for(var t in i)this.hasOwnProperty(t)&&typeof i[t]!==l.UNDEFINED&&(this[t]=i[t])}function F(i,e,t,o){return D.call(this,[["itemType",i],["ua",e],["uaCH",o],["rgxMap",t],["data",M(this,i)]]),this}function z(i,e,t){if(typeof i===l.OBJECT?(e=Si(i,!0)?(typeof e===l.OBJECT&&(t=e),i):(t=i,c),i=c):typeof i!==l.STRING||Si(e,!0)||(t=e,e=c),t)if(typeof t.append===l.FUNCTION){var o={};t.forEach(function(i,e){o[String(e).toLowerCase()]=i}),t=o}else{var r,a={};for(r in t)t.hasOwnProperty(r)&&(a[String(r).toLowerCase()]=t[r]);t=a}var s,n,w,b;return this instanceof z?(s=typeof i===l.STRING?i:t&&t[V]?t[V]:U&&U.userAgent?U.userAgent:d,n=new Bi(t,!0),w=e?((i,e)=>{var t,o={},r=e;if(!Si(e))for(var a in r={},e)for(var s in e[a])r[s]=e[a][s].concat(r[s]||[]);for(t in i)o[t]=r[t]&&r[t].length%2==0?r[t].concat(i[t]):i[t];return o})(zi,e):zi,D.call(this,[["getBrowser",(b=function(i){return i==v?function(){return new F(i,s,w,n).set("ua",s).set(h,this.getBrowser()).set(u,this.getCPU()).set(m,this.getDevice()).set(f,this.getEngine()).set(g,this.getOS()).get()}:function(){return new F(i,s,w[i],n).parseUA().get()}})(h)],["getCPU",b(u)],["getDevice",b(m)],["getEngine",b(f)],["getOS",b(g)],["getResult",b(v)],["getUA",function(){return s}],["setUA",function(i){return Ti(i)&&(s=_i(i,500)),this}]]).setUA(s),this):new z(i,e,t).getResult()}F.prototype.get=function(i){return i?this.data.hasOwnProperty(i)?this.data[i]:c:this.data},F.prototype.set=function(i,e){return this.data[i]=e,this},F.prototype.setCH=function(i){return this.uaCH=i,this},F.prototype.detectFeature=function(){if(U&&U.userAgent==this.ua)switch(this.itemType){case h:U.brave&&typeof U.brave.isBrave==l.FUNCTION&&this.set(k,"Brave");break;case m:!this.get(x)&&_&&_[S]&&this.set(x,S),"Macintosh"==this.get(E)&&U&&typeof U.standalone!==l.UNDEFINED&&U.maxTouchPoints&&2<U.maxTouchPoints&&this.set(E,"iPad").set(x,t);break;case g:!this.get(k)&&_&&_[I]&&this.set(k,_[I]);break;case v:var e=this.data,i=function(i){return e[i].getItem().detectFeature().get()};this.set(h,i(h)).set(u,i(u)).set(m,i(m)).set(f,i(f)).set(g,i(g))}return this},F.prototype.parseUA=function(){switch(this.itemType!=v&&H.call(this.data,this.ua,this.rgxMap),this.itemType){case h:this.set(j,B(this.get(C)));break;case g:var i;"iOS"==this.get(k)&&"18.6"==this.get(C)&&(i=/\) Version\/([\d\.]+)/.exec(this.ua))&&26<=parseInt(i[1].substring(0,2),10)&&this.set(C,i[1])}return this},F.prototype.parseCH=function(){var i,e=this.uaCH,t=this.rgxMap;switch(this.itemType){case h:case f:var o,r=e[$]||e[L];if(r)for(var a=0;a<r.length;a++){var s=r[a].brand||r[a],n=r[a].version;this.itemType==h&&!/not.a.brand/i.test(s)&&(!o||/Chrom/.test(o)&&s!=gi||o==vi&&/WebView2/.test(s))&&(s=p(s,Fi),(o=this.get(k))&&!/Chrom/.test(o)&&/Chrom/.test(s)||this.set(k,s).set(C,n).set(j,B(n)),o=s),this.itemType==f&&s==gi&&this.set(C,n)}break;case u:var w=e[N];w&&("64"==e[J]&&(w+="64"),H.call(this.data,w+";",t));break;case m:if(e[S]&&this.set(x,S),e[E]&&(this.set(E,e[E]),this.get(x)&&this.get(y)||(H.call(w={},"droid 9; "+e[E]+")",t),!this.get(x)&&w.type&&this.set(x,w.type),!this.get(y)&&w.vendor&&this.set(y,w.vendor))),e[T]){if("string"!=typeof e[T])for(var b=0;!i&&b<e[T].length;)i=p(e[T][b++],Di);else i=p(e[T],Di);this.set(x,i)}break;case g:var d,w=e[I];w&&(d=e[W],w==Ci&&(d=13<=parseInt(B(d),10)?"11":"10"),this.set(k,w).set(C,d)),this.get(k)==Ci&&"Xbox"==e[E]&&this.set(k,"Xbox").set(C,c);break;case v:var l=this.data,w=function(i){return l[i].getItem().setCH(e).parseCH().get()};this.set(h,w(h)).set(u,w(u)).set(m,w(m)).set(f,w(f)).set(g,w(g))}return this},z.VERSION="2.0.9",z.BROWSER=A([k,C,j,x]),z.CPU=A([N]),z.DEVICE=A([E,y,x,P,S,e,t,o,G]),z.ENGINE=z.OS=A([k,C]),typeof exports!==l.UNDEFINED?(exports=typeof module!==l.UNDEFINED&&module.exports?module.exports=z:exports).UAParser=z:typeof define===l.FUNCTION&&define.amd?define(function(){return z}):Ni&&(i.UAParser=z);var Hi,Mi=Ni&&(i.jQuery||i.Zepto);Mi&&!Mi.ua&&(Hi=new z,Mi.ua=Hi.getResult(),Mi.ua.get=function(){return Hi.getUA()},Mi.ua.set=function(i){Hi.setUA(i);var e,t=Hi.getResult();for(e in t)Mi.ua[e]=t[e]})})("object"==typeof window?window:this);

================================================
FILE: dist/ua-parser.pack.mjs
================================================
/* UAParser.js v2.0.9
   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>
   AGPLv3 License */
function B(i){for(var e={},o=0;o<i.length;o++)e[i[o].toUpperCase()]=i[o];return e}function H(i){return Si(i)?z(/[^\d\.]/g,i).split(".")[0]:void 0}function A(i,e){if(i&&e)for(var o,t,r,a,s,n=0;n<e.length&&!a;){for(var w=e[n],d=e[n+1],b=o=0;b<w.length&&!a&&w[b];)if(a=w[b++].exec(i))for(t=0;t<d.length;t++)s=a[++o],typeof(r=d[t])===l.OBJECT&&0<r.length?2===r.length?typeof r[1]==l.FUNCTION?this[r[0]]=r[1].call(this,s):this[r[0]]=r[1]:3<=r.length&&(typeof r[1]!==l.FUNCTION||r[1].exec&&r[1].test?3==r.length?this[r[0]]=s?s.replace(r[1],r[2]):void 0:4==r.length?this[r[0]]=s?r[3].call(this,s.replace(r[1],r[2])):void 0:4<r.length&&(this[r[0]]=s?r[3].apply(this,[s.replace(r[1],r[2])].concat(r.slice(4))):void 0):3<r.length?this[r[0]]=s?r[1].apply(this,r.slice(2)):void 0:this[r[0]]=s?r[1].call(this,s,r[2]):void 0):this[r]=s||void 0;n+=2}}function c(i,e){for(var o in e)if(typeof e[o]===l.OBJECT&&0<e[o].length){for(var t=0;t<e[o].length;t++)if(Ni(e[o][t],i))return"?"===o?void 0:o}else if(Ni(e[o],i))return"?"===o?void 0:o;return e.hasOwnProperty("*")?e["*"]:i}function M(e,i){var o=Di.init[i],t=Di.isIgnore[i]||0,r=Di.isIgnoreRgx[i]||0,a=Di.toString[i]||0;function s(){U.call(this,o)}return s.prototype.getItem=function(){return e},s.prototype.withClientHints=function(){return _?_.getHighEntropyValues(ti).then(function(i){return e.setCH(new Fi(i,!1)).parseCH().get()}):e.parseCH().get()},s.prototype.withFeatureCheck=function(){return e.detectFeature().get()},i!=f&&(s.prototype.is=function(i){var e,o=!1;for(e in this)if(this.hasOwnProperty(e)&&!Ni(t,e)&&q(r?z(r,this[e]):this[e])==q(r?z(r,i):i)){if(o=!0,i!=l.UNDEFINED)break}else if(i==l.UNDEFINED&&o){o=!o;break}return o},s.prototype.toString=function(){var i,e=b;for(i in a)typeof this[a[i]]!==l.UNDEFINED&&(e+=(e?" ":b)+this[a[i]]);return e||l.UNDEFINED}),s.prototype.then=function(i){function e(){for(var i in o)o.hasOwnProperty(i)&&(this[i]=o[i])}var o=this,t=(e.prototype={is:s.prototype.is,toString:s.prototype.toString,withClientHints:s.prototype.withClientHints,withFeatureCheck:s.prototype.withFeatureCheck},new e);return i(t),t},new s}var V="user-agent",b="",l={FUNCTION:"function",OBJECT:"object",STRING:"string",UNDEFINED:"undefined"},h="browser",p="cpu",u="device",m="engine",g="os",f="result",v="name",k="type",x="vendor",y="version",C="architecture",P="major",N="model",j="console",E="mobile",o="tablet",i="smarttv",e="wearable",R="xr",G="embedded",t="inapp",L="brands",S="formFactors",$="fullVersionList",T="platform",W="platformVersion",J="bitness",r="sec-ch-ua",X=r+"-full-version-list",Y=r+"-arch",Z=r+"-"+J,K=r+"-form-factors",Q=r+"-"+E,ii=r+"-"+N,ei=r+"-"+T,oi=ei+"-version",ti=[L,$,E,N,T,W,C,S,J],ri="Amazon",a="Apple",ai="ASUS",si="BlackBerry",s="Google",ni="Huawei",wi="Lenovo",di="Honor",bi="LG",li="Microsoft",ci="Motorola",hi="OnePlus",pi="OPPO",ui="Samsung",mi="Sony",gi="Xiaomi",fi="Zebra",vi="Chromium",n="Chromecast",ki="Edge",xi="Firefox",w="Opera",yi="Facebook",d="Mobile ",O=" Browser",Ci="Windows",I=typeof window!==l.UNDEFINED&&window.navigator?window.navigator:void 0,_=I&&I.userAgentData?I.userAgentData:void 0,Ni=function(i,e){if(typeof i===l.OBJECT&&0<i.length){for(var o in i)if(q(e)==q(i[o]))return!0;return!1}return!!Si(i)&&q(e)==q(i)},Ei=function(i,e){for(var o in i)return/^(browser|cpu|device|engine|os)$/.test(o)||!!e&&Ei(i[o])},Si=function(i){return typeof i===l.STRING},Ti=function(i){if(i){for(var e,o=[],t=z(/\\?\"/g,i).split(","),r=0;r<t.length;r++)-1<t[r].indexOf(";")?(e=Ii(t[r]).split(";v="),o[r]={brand:e[0],version:e[1]}):o[r]=Ii(t[r]);return o}},q=function(i){return Si(i)?i.toLowerCase():i},U=function(i){for(var e in i)i.hasOwnProperty(e)&&(typeof(e=i[e])==l.OBJECT&&2==e.length?this[e[0]]=e[1]:this[e]=void 0);return this},z=function(i,e){return Si(e)?e.replace(i,b):e},Oi=function(i){return z(/\\?\"/g,i)},Ii=function(i,e){return i=z(/^\s\s*/,String(i)),typeof e===l.UNDEFINED?i:i.substring(0,e)},_i={ME:"4.90","NT 3.51":"3.51","NT 4.0":"4.0",2e3:["5.0","5.01"],XP:["5.1","5.2"],Vista:"6.0",7:"6.1",8:"6.2",8.1:"6.3",10:["6.4","10.0"],NT:""},qi={embedded:"Automotive",mobile:"Mobile",tablet:["Tablet","EInk"],smarttv:"TV",wearable:"Watch",xr:["VR","XR"],"?":["Desktop","Unknown"],"*":void 0},Ui={Chrome:"Google Chrome",Edge:"Microsoft Edge","Edge WebView2":"Microsoft Edge WebView2","Chrome WebView":"Android WebView","Chrome Headless":"HeadlessChrome","Huawei Browser":"HuaweiBrowser","MIUI Browser":"Miui Browser","Opera Mobi":"OperaMobile",Yandex:"YaBrowser"},zi={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[y,[v,d+"Chrome"]],[/webview.+edge\/([\w\.]+)/i],[y,[v,ki+" WebView"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[y,[v,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[v,y],[/opios[\/ ]+([\w\.]+)/i],[y,[v,w+" Mini"]],[/\bop(?:rg)?x\/([\w\.]+)/i],[y,[v,w+" GX"]],[/\bopr\/([\w\.]+)/i],[y,[v,w]],[/\bb[ai]*d(?:uhd|[ub]*[aekoprswx]{5,6})[\/ ]?([\w\.]+)/i],[y,[v,"Baidu"]],[/\b(?:mxbrowser|mxios|myie2)\/?([-\w\.]*)\b/i],[y,[v,"Maxthon"]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer|sleipnir)[\/ ]?([\w\.]*)/i,/(avant|iemobile|slim(?:browser|boat|jet))[\/ ]?([\d\.]*)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(atlas|flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|qupzilla|falkon|rekonq|puffin|whale(?!.+naver)|qqbrowserlite|duckduckgo|klar|helio|(?=comodo_)?dragon|otter|dooble|(?:hi|lg |ovi|qute)browser|palemoon)\/v?([-\w\.]+)/i,/(brave)(?: chrome)?\/([\d\.]+)/i,/(aloha|heytap|ovi|115|surf|qwant)browser\/([\d\.]+)/i,/(qwant)(?:ios|mobile)\/([\d\.]+)/i,/(ecosia|weibo)(?:__| \w+@)([\d\.]+)/i],[v,y],[/quark(?:pc)?\/([-\w\.]+)/i],[y,[v,"Quark"]],[/\bddg\/([\w\.]+)/i],[y,[v,"DuckDuckGo"]],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[y,[v,"UCBrowser"]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i,/micromessenger\/([\w\.]+)/i],[y,[v,"WeChat"]],[/konqueror\/([\w\.]+)/i],[y,[v,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[y,[v,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[y,[v,"Yandex"]],[/slbrowser\/([\w\.]+)/i],[y,[v,"Smart "+wi+O]],[/(av(?:ast|g|ira))\/([\w\.]+)/i],[[v,/(.+)/,"$1 Secure"+O],y],[/norton\/([\w\.]+)/i],[y,[v,"Norton Private"+O]],[/\bfocus\/([\w\.]+)/i],[y,[v,xi+" Focus"]],[/ mms\/([\w\.]+)$/i],[y,[v,w+" Neon"]],[/ opt\/([\w\.]+)$/i],[y,[v,w+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[y,[v,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[y,[v,"Dolphin"]],[/coast\/([\w\.]+)/i],[y,[v,w+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[y,[v,"MIUI"+O]],[/fxios\/([\w\.-]+)/i],[y,[v,d+xi]],[/\bqihoobrowser\/?([\w\.]*)/i],[y,[v,"360"]],[/\b(qq)\/([\w\.]+)/i],[[v,/(.+)/,"$1Browser"],y],[/(oculus|sailfish|huawei|vivo|pico)browser\/([\w\.]+)/i],[[v,/(.+)/,"$1"+O],y],[/samsungbrowser\/([\w\.]+)/i],[y,[v,ui+" Internet"]],[/metasr[\/ ]?([\d\.]+)/i],[y,[v,"Sogou Explorer"]],[/(sogou)mo\w+\/([\d\.]+)/i],[[v,"Sogou Mobile"],y],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|2345(?=browser|chrome|explorer))\w*[\/ ]?v?([\w\.]+)/i],[v,y],[/(lbbrowser|luakit|rekonq|steam(?= (clie|tenf|gameo)))/i],[v],[/ome\/([\w\.]+).+(iron(?= saf)|360(?=[es]e$))/i],[y,v],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[v,yi],y,[k,t]],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/(daum)apps[\/ ]([\w\.]+)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(alipay)client\/([\w\.]+)/i,/(twitter)(?:and| f.+e\/([\w\.]+))/i,/(bing)(?:web|sapphire)\/([\w\.]+)/i,/(instagram|snapchat|klarna)[\/ ]([-\w\.]+)/i],[v,y,[k,t]],[/\bgsa\/([\w\.]+) .*safari\//i],[y,[v,"GSA"],[k,t]],[/(?:musical_ly|trill)(?:.+app_?version\/|_)([\w\.]+)/i],[y,[v,"TikTok"],[k,t]],[/\[(linkedin)app\]/i],[v,[k,t]],[/(zalo(?:app)?)[\/\sa-z]*([\w\.-]+)/i],[[v,/(.+)/,"Zalo"],y,[k,t]],[/(chromium)[\/ ]([-\w\.]+)/i],[v,y],[/ome-(lighthouse)$/i],[v,[k,"fetcher"]],[/headlesschrome(?:\/([\w\.]+)| )/i],[y,[v,"Chrome Headless"]],[/wv\).+chrome\/([\w\.]+).+edgw\//i],[y,[v,ki+" WebView2"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[v,"Chrome WebView"],y],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[y,[v,"Android"+O]],[/chrome\/([\w\.]+) mobile/i],[y,[v,d+"Chrome"]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[v,y],[/version\/([\w\.\,]+) .*mobile(?:\/\w+ | ?)safari/i],[y,[v,d+"Safari"]],[/iphone .*mobile(?:\/\w+ | ?)safari/i],[[v,d+"Safari"]],[/version\/([\w\.\,]+) .*(safari)/i],[y,v],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[v,[y,"1"]],[/(webkit|khtml)\/([\w\.]+)/i],[v,y],[/(?:mobile|tablet);.*(firefox)\/([\w\.-]+)/i],[[v,d+xi],y],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[v,"Netscape"],y],[/(wolvic|librewolf)\/([\w\.]+)/i],[v,y],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[y,[v,xi+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+(?= .+rv\:.+gecko\/\d+)|[0-4][\w\.]+(?!.+compatible))/i,/(amaya|dillo|doris|icab|ladybird|lynx|mosaic|netsurf|obigo|polaris|w3m|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/\b(links) \(([\w\.]+)/i],[v,[y,/_/g,"."]],[/(cobalt)\/([\w\.]+)/i],[v,[y,/[^\d\.]+./,b]]],cpu:[[/\b((amd|x|x86[-_]?|wow|win)64)\b/i],[[C,"amd64"]],[/(ia32(?=;))/i,/\b((i[346]|x)86)(pc)?\b/i],[[C,"ia32"]],[/\b(aarch64|arm(v?[89]e?l?|_?64))\b/i],[[C,"arm64"]],[/\b(arm(v[67])?ht?n?[fl]p?)\b/i],[[C,"armhf"]],[/( (ce|mobile); ppc;|\/[\w\.]+arm\b)/i],[[C,"arm"]],[/ sun4\w[;\)]/i],[[C,"sparc"]],[/\b(avr32|ia64(?=;)|68k(?=\))|\barm(?=v([1-7]|[5-7]1)l?|;|eabi)|(irix|mips|sparc)(64)?\b|pa-risc)/i,/((ppc|powerpc)(64)?)( mac|;|\))/i,/(?:osf1|[freopnt]{3,4}bsd) (alpha)/i],[[C,/ower/,b,q]],[/mc680.0/i],[[C,"68k"]],[/winnt.+\[axp/i],[[C,"alpha"]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[N,[x,ui],[k,o]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,/sec-(sgh\w+)/i],[N,[x,ui],[k,E]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)[\/\);]/i],[N,[x,a],[k,E]],[/\b(?:ios|apple\w+)\/.+[\(\/](ipad)/i,/\b(ipad)[\d,]*[;\] ].+(mac |i(pad)?)os/i],[N,[x,a],[k,o]],[/(macintosh);/i],[N,[x,a]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[N,[x,"Sharp"],[k,E]],[/\b((?:brt|eln|hey2?|gdi|jdn)-a?[lnw]09|(?:ag[rm]3?|jdn2|kob2)-a?[lw]0[09]hn)(?: bui|\)|;)/i],[N,[x,di],[k,o]],[/honor([-\w ]+)[;\)]/i],[N,[x,di],[k,E]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?|605hw|bg2-u03|(?:gem|fdr|m2|ple|t1)-[7a]0[1-4][lu]|t1-a2[13][lw]|mediapad[\w\. ]*(?= bui|\)))\b(?!.+d\/s)/i],[N,[x,ni],[k,o]],[/(?:huawei) ?([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i],[N,[x,ni],[k,E]],[/oid[^\)]+; (2[\dbc]{4}(182|283|rp\w{2})[cgl]|m2105k81a?c)(?: bui|\))/i,/\b(?:xiao)?((?:red)?mi[-_ ]?pad[\w- ]*)(?: bui|\))/i],[[N,/_/g," "],[x,gi],[k,o]],[/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/oid[^\)]+; (redmi[\-_ ]?(?:note|k)?[\w_ ]+|m?[12]\d[01]\d\w{3,6}|poco[\w ]+|(shark )?\w{3}-[ah]0|qin ?[1-3](s\+|ultra| pro)?)( bui|; wv|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note|max|cc)?[_ ]?(?:\d{0,2}\w?)[_ ]?(?:plus|se|lite|pro)?( 5g|lte)?)(?: bui|\))/i,/ ([\w ]+) miui\/v?\d/i],[[N,/_/g," "],[x,gi],[k,E]],[/droid.+; (cph2[3-6]\d[13579]|((gm|hd)19|(ac|be|in|kb)20|(d[en]|eb|le|mt)21|ne22)[0-2]\d|p[g-l]\w[1m]10)\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[N,[x,hi],[k,E]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[N,[x,pi],[k,E]],[/\b(opd2(\d{3}a?))(?: bui|\))/i],[N,[x,c,{OnePlus:["203","304","403","404","413","415"],"*":pi}],[k,o]],[/(vivo (5r?|6|8l?|go|one|s|x[il]?[2-4]?)[\w\+ ]*)(?: bui|\))/i],[N,[x,"BLU"],[k,E]],[/; vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[N,[x,"Vivo"],[k,E]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i],[N,[x,"Realme"],[k,E]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])( bui|;|\)|\/)/i,/lenovo ?(b[68]0[08]0-?[hf]?|tab(?:[\w- ]+?)|tb[\w-]{6,7})( bui|;|\)|\/)/i],[N,[x,wi],[k,o]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i],[N,[x,wi],[k,E]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,/((?:moto(?! 360)[-\w\(\) ]+|xt\d{3,4}[cgkosw\+]?[-\d]*|nexus 6)(?= bui|\)))/i],[N,[x,ci],[k,E]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[N,[x,ci],[k,o]],[/\b(?:lg)?([vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[N,[x,bi],[k,o]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,/\blg-?([\d\w]+) bui/i],[N,[x,bi],[k,E]],[/(nokia) (t[12][01])/i],[x,N,[k,o]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,/nokia[-_ ]?(([-\w\. ]*?))( bui|\)|;|\/)/i],[[N,/_/g," "],[k,E],[x,"Nokia"]],[/(pixel (c|tablet))\b/i],[N,[x,s],[k,o]],[/droid.+;(?: google)? (g(01[13]a|020[aem]|025[jn]|1b60|1f8f|2ybb|4s1m|576d|5nz6|8hhn|8vou|a02099|c15s|d1yq|e2ae|ec77|gh2x|kv4x|p4bc|pj41|r83y|tt9q|ur25|wvk6)|pixel[\d ]*a?( pro)?( xl)?( fold)?( \(5g\))?)( bui|\))/i],[N,[x,s],[k,E]],[/(google) (pixelbook( go)?)/i],[x,N],[/droid.+; (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-\w\w\d\d)(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[N,[x,mi],[k,E]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[N,"Xperia Tablet"],[x,mi],[k,o]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo(?!bc)\w\w)( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[N,[x,ri],[k,o]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[N,/(.+)/g,"Fire Phone $1"],[x,ri],[k,E]],[/(playbook);[-\w\),; ]+(rim)/i],[N,x,[k,o]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/(?:blackberry|\(bb10;) (\w+)/i],[N,[x,si],[k,E]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[N,[x,ai],[k,o]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[N,[x,ai],[k,E]],[/(nexus 9)/i],[N,[x,"HTC"],[k,o]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[x,[N,/_/g," "],[k,E]],[/tcl (xess p17aa)/i,/droid [\w\.]+; ((?:8[14]9[16]|9(?:0(?:48|60|8[01])|1(?:3[27]|66)|2(?:6[69]|9[56])|466))[gqswx])(_\w(\w|\w\w))?(\)| bui)/i],[N,[x,"TCL"],[k,o]],[/droid [\w\.]+; (418(?:7d|8v)|5087z|5102l|61(?:02[dh]|25[adfh]|27[ai]|56[dh]|59k|65[ah])|a509dl|t(?:43(?:0w|1[adepqu])|50(?:6d|7[adju])|6(?:09dl|10k|12b|71[efho]|76[hjk])|7(?:66[ahju]|67[hw]|7[045][bh]|71[hk]|73o|76[ho]|79w|81[hks]?|82h|90[bhsy]|99b)|810[hs]))(_\w(\w|\w\w))?(\)| bui)/i],[N,[x,"TCL"],[k,E]],[/(itel) ((\w+))/i],[[x,q],N,[k,c,{tablet:["p10001l","w7001"],"*":"mobile"}]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[N,[x,"Acer"],[k,o]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[N,[x,"Meizu"],[k,E]],[/; ((?:power )?armor(?:[\w ]{0,8}))(?: bui|\))/i],[N,[x,"Ulefone"],[k,E]],[/; (energy ?\w+)(?: bui|\))/i,/; energizer ([\w ]+)(?: bui|\))/i],[N,[x,"Energizer"],[k,E]],[/; cat (b35);/i,/; (b15q?|s22 flip|s48c|s62 pro)(?: bui|\))/i],[N,[x,"Cat"],[k,E]],[/((?:new )?andromax[\w- ]+)(?: bui|\))/i],[N,[x,"Smartfren"],[k,E]],[/droid.+; (a(in)?(0(15|59|6[35])|142)p?)/i],[N,[x,"Nothing"],[k,E]],[/; (x67 5g|tikeasy \w+|ac[1789]\d\w+)( b|\))/i,/archos ?(5|gamepad2?|([\w ]*[t1789]|hello) ?\d+[\w ]*)( b|\))/i],[N,[x,"Archos"],[k,o]],[/archos ([\w ]+)( b|\))/i,/; (ac[3-6]\d\w{2,8})( b|\))/i],[N,[x,"Archos"],[k,E]],[/; (n159v)/i],[N,[x,"HMD"],[k,E]],[/(imo) (tab \w+)/i,/(infinix|tecno) (x1101b?|p904|dp(7c|8d|10a)( pro)?|p70[1-3]a?|p904|t1101)/i],[x,N,[k,o]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus(?! zenw)|dell|jolla|meizu|motorola|polytron|tecno|micromax|advan)[-_ ]?([-\w]*)/i,/; (blu|hmd|imo|infinix|lava|oneplus|tcl|wiko)[_ ]([\w\+ ]+?)(?: bui|\)|; r)/i,/(hp) ([\w ]+\w)/i,/(microsoft); (lumia[\w ]+)/i,/(oppo) ?([\w ]+) bui/i,/(hisense) ([ehv][\w ]+)\)/i,/droid[^;]+; (philips)[_ ]([sv-x][\d]{3,4}[xz]?)/i],[x,N,[k,E]],[/(kobo)\s(ereader|touch)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i],[x,N,[k,o]],[/(surface duo)/i],[N,[x,li],[k,o]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[N,[x,"Fairphone"],[k,E]],[/((?:tegranote|shield t(?!.+d tv))[\w- ]*?)(?: b|\))/i],[N,[x,"Nvidia"],[k,o]],[/(sprint) (\w+)/i],[x,N,[k,E]],[/(kin\.[onetw]{3})/i],[[N,/\./g," "],[x,li],[k,E]],[/droid.+; ([c6]+|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[N,[x,fi],[k,o]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[N,[x,fi],[k,E]],[/(philips)[\w ]+tv/i,/smart-tv.+(samsung)/i],[x,[k,i]],[/hbbtv.+maple;(\d+)/i],[[N,/^/,"SmartTV"],[x,ui],[k,i]],[/(vizio)(?: |.+model\/)(\w+-\w+)/i,/tcast.+(lg)e?. ([-\w]+)/i],[x,N,[k,i]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[x,bi],[k,i]],[/(apple) ?tv/i],[x,[N,a+" TV"],[k,i]],[/crkey.*devicetype\/chromecast/i],[[N,n+" Third Generation"],[x,s],[k,i]],[/crkey.*devicetype\/([^/]*)/i],[[N,/^/,"Chromecast "],[x,s],[k,i]],[/fuchsia.*crkey/i],[[N,n+" Nest Hub"],[x,s],[k,i]],[/crkey/i],[[N,n],[x,s],[k,i]],[/(portaltv)/i],[N,[x,yi],[k,i]],[/droid.+aft(\w+)( bui|\))/i],[N,[x,ri],[k,i]],[/(shield \w+ tv)/i],[N,[x,"Nvidia"],[k,i]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[N,[x,"Sharp"],[k,i]],[/(bravia[\w ]+)( bui|\))/i],[N,[x,mi],[k,i]],[/(mi(tv|box)-?\w+) bui/i],[N,[x,gi],[k,i]],[/Hbbtv.*(technisat) (.*);/i],[x,N,[k,i]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[x,/.+\/(\w+)/,"$1",c,{LG:"lge"}],[N,Ii],[k,i]],[/(playstation \w+)/i],[N,[x,mi],[k,j]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[N,[x,li],[k,j]],[/(ouya)/i,/(nintendo) (\w+)/i,/(retroid) (pocket ([^\)]+))/i,/(valve).+(steam deck)/i,/droid.+; ((shield|rgcube|gr0006))( bui|\))/i],[[x,c,{Nvidia:"Shield",Anbernic:"RGCUBE",Logitech:"GR0006"}],N,[k,j]],[/\b(sm-[lr]\d\d[0156][fnuw]?s?|gear live)\b/i],[N,[x,ui],[k,e]],[/((pebble))app/i,/(asus|google|lg|oppo|xiaomi) ((pixel |zen)?watch[\w ]*)( bui|\))/i],[x,N,[k,e]],[/(ow(?:19|20)?we?[1-3]{1,3})/i],[N,[x,pi],[k,e]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[N,[x,a],[k,e]],[/(opwwe\d{3})/i],[N,[x,hi],[k,e]],[/(moto 360)/i],[N,[x,ci],[k,e]],[/(smartwatch 3)/i],[N,[x,mi],[k,e]],[/(g watch r)/i],[N,[x,bi],[k,e]],[/droid.+; (wt63?0{2,3})\)/i],[N,[x,fi],[k,e]],[/droid.+; (glass) \d/i],[N,[x,s],[k,R]],[/(pico) ([\w ]+) os\d/i],[x,N,[k,R]],[/(quest( \d| pro)?s?).+vr/i],[N,[x,yi],[k,R]],[/mobile vr; rv.+firefox/i],[[k,R]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[x,[k,G]],[/(aeobc)\b/i],[N,[x,ri],[k,G]],[/(homepod).+mac os/i],[N,[x,a],[k,G]],[/windows iot/i],[[k,G]],[/droid.+; ([\w- ]+) (4k|android|smart|google)[- ]?tv/i],[N,[k,i]],[/\b((4k|android|smart|opera)[- ]?tv|tv; rv:|large screen[\w ]+safari)\b/i],[[k,i]],[/droid .+?; ([^;]+?)(?: bui|; wv\)|\) applew|; hmsc).+?(mobile|vr|\d) safari/i],[N,[k,c,{mobile:"Mobile",xr:"VR","*":o}]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[k,o]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[k,E]],[/droid .+?; ([\w\. -]+)( bui|\))/i],[N,[x,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[y,[v,ki+"HTML"]],[/(arkweb)\/([\w\.]+)/i],[v,y],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[y,[v,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna|servo)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links|dillo)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[v,y],[/ladybird\//i],[[v,"LibWeb"]],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[y,v]],os:[[/(windows nt) (6\.[23]); arm/i],[[v,/N/,"R"],[y,c,_i]],[/(windows (?:phone|mobile|iot))(?: os)?[\/ ]?([\d\.]*( se)?)/i,/(windows)[\/ ](1[01]|2000|3\.1|7|8(\.1)?|9[58]|me|server 20\d\d( r2)?|vista|xp)/i],[v,y],[/windows nt ?([\d\.\)]*)(?!.+xbox)/i,/\bwin(?=3| ?9|n)(?:nt| 9x )?([\d\.;]*)/i],[[y,/(;|\))/g,"",c,_i],[v,Ci]],[/(windows ce)\/?([\d\.]*)/i],[v,y],[/[adehimnop]{4,7}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv|ios(?=.+ip(?:ad|hone)|.+apple ?tv)|ip(?:ad|hone)(?: |.+i(?:pad)?)os|apple ?tv.+ios)[\/ ]([\w\.]+)/i,/\btvos ?([\w\.]+)/i,/cfnetwork\/.+darwin/i],[[y,/_/g,"."],[v,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+(haiku|morphos))/i],[[v,"macOS"],[y,/_/g,"."]],[/android ([\d\.]+).*crkey/i],[y,[v,n+" Android"]],[/fuchsia.*crkey\/([\d\.]+)/i],[y,[v,n+" Fuchsia"]],[/crkey\/([\d\.]+).*devicetype\/smartspeaker/i],[y,[v,n+" SmartSpeaker"]],[/linux.*crkey\/([\d\.]+)/i],[y,[v,n+" Linux"]],[/crkey\/([\d\.]+)/i],[y,[v,n]],[/droid ([\w\.]+)\b.+(android[- ]x86)/i],[y,v],[/(ubuntu) ([\w\.]+) like android/i],[[v,/(.+)/,"$1 Touch"],y],[/(harmonyos)[\/ ]?([\d\.]*)/i,/(android|bada|blackberry|kaios|maemo|meego|openharmony|qnx|rim tablet os|sailfish|series40|symbian|tizen)\w*[-\/\.; ]?([\d\.]*)/i],[v,y],[/\(bb(10);/i],[y,[v,si]],[/(?:symbian ?os|symbos|s60(?=;)|series ?60)[-\/ ]?([\w\.]*)/i],[y,[v,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile[;\w ]*|tablet|tv|[^\)]*(?:viera|lg(?:l25|-d300)|alcatel ?o.+|y300-f1)); rv:([\w\.]+)\).+gecko\//i],[y,[v,xi+" OS"]],[/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i,/webos(?:[ \/]?|\.tv-20(?=2[2-9]))(\d[\d\.]*)/i],[y,[v,"webOS"]],[/web0s;.+?(?:chr[o0]me|safari)\/(\d+)/i],[[y,c,{25:"120",24:"108",23:"94",22:"87",6:"79",5:"68",4:"53",3:"38",2:"538",1:"537","*":"TV"}],[v,"webOS"]],[/watch(?: ?os[,\/ ]|\d,\d\/)([\d\.]+)/i],[y,[v,"watchOS"]],[/cros [\w]+(?:\)| ([\w\.]+)\b)/i],[y,[v,"Chrome OS"]],[/kepler ([\w\.]+); (aft|aeo)/i],[y,[v,"Vega OS"]],[/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) (\w+)/i,/(xbox); +xbox ([^\);]+)/i,/(pico) .+os([\w\.]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/linux.+(mint)[\/\(\) ]?([\w\.]*)/i,/(mageia|vectorlinux|fuchsia|arcaos|arch(?= ?linux))[;l ]([\d\.]*)/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire|knoppix)(?: gnu[\/ ]linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/\b(aix)[; ]([1-9\.]{0,4})/i,/(hurd|linux|morphos)(?: (?:arm|x86|ppc)\w*| ?)([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) ?(r\d)?/i],[v,y],[/(sunos) ?([\d\.]*)/i],[[v,"Solaris"],y],[/\b(beos|os\/2|amigaos|openvms|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[v,y]]},Di=(w={init:{},isIgnore:{},isIgnoreRgx:{},toString:{}},U.call(w.init,[[h,[v,y,P,k]],[p,[C]],[u,[k,N,x]],[m,[v,y]],[g,[v,y]]]),U.call(w.isIgnore,[[h,[y,P]],[m,[y]],[g,[y]]]),U.call(w.isIgnoreRgx,[[h,/ ?browser$/i],[g,/ ?os$/i]]),U.call(w.toString,[[h,[v,y]],[p,[C]],[u,[x,N]],[m,[v,y]],[g,[v,y]]]),w);function Fi(i,e){if(i=i||{},U.call(this,ti),e)U.call(this,[[L,Ti(i[r])],[$,Ti(i[X])],[E,/\?1/.test(i[Q])],[N,Oi(i[ii])],[T,Oi(i[ei])],[W,Oi(i[oi])],[C,Oi(i[Y])],[S,Ti(i[K])],[J,Oi(i[Z])]]);else for(var o in i)this.hasOwnProperty(o)&&typeof i[o]!==l.UNDEFINED&&(this[o]=i[o])}function D(i,e,o,t){return U.call(this,[["itemType",i],["ua",e],["uaCH",t],["rgxMap",o],["data",M(this,i)]]),this}function F(i,e,o){if(typeof i===l.OBJECT?(e=Ei(i,!0)?(typeof e===l.OBJECT&&(o=e),i):void(o=i),i=void 0):typeof i!==l.STRING||Ei(e,!0)||(o=e,e=void 0),o)if(typeof o.append===l.FUNCTION){var t={};o.forEach(function(i,e){t[String(e).toLowerCase()]=i}),o=t}else{var r,a={};for(r in o)o.hasOwnProperty(r)&&(a[String(r).toLowerCase()]=o[r]);o=a}var s,n,w,d;return this instanceof F?(s=typeof i===l.STRING?i:o&&o[V]?o[V]:I&&I.userAgent?I.userAgent:b,n=new Fi(o,!0),w=e?((i,e)=>{var o,t={},r=e;if(!Ei(e))for(var a in r={},e)for(var s in e[a])r[s]=e[a][s].concat(r[s]||[]);for(o in i)t[o]=r[o]&&r[o].length%2==0?r[o].concat(i[o]):i[o];return t})(zi,e):zi,U.call(this,[["getBrowser",(d=function(i){return i==f?function(){return new D(i,s,w,n).set("ua",s).set(h,this.getBrowser()).set(p,this.getCPU()).set(u,this.getDevice()).set(m,this.getEngine()).set(g,this.getOS()).get()}:function(){return new D(i,s,w[i],n).parseUA().get()}})(h)],["getCPU",d(p)],["getDevice",d(u)],["getEngine",d(m)],["getOS",d(g)],["getResult",d(f)],["getUA",function(){return s}],["setUA",function(i){return Si(i)&&(s=Ii(i,500)),this}]]).setUA(s),this):new F(i,e,o).getResult()}D.prototype.get=function(i){return i?this.data.hasOwnProperty(i)?this.data[i]:void 0:this.data},D.prototype.set=function(i,e){return this.data[i]=e,this},D.prototype.setCH=function(i){return this.uaCH=i,this},D.prototype.detectFeature=function(){if(I&&I.userAgent==this.ua)switch(this.itemType){case h:I.brave&&typeof I.brave.isBrave==l.FUNCTION&&this.set(v,"Brave");break;case u:!this.get(k)&&_&&_[E]&&this.set(k,E),"Macintosh"==this.get(N)&&I&&typeof I.standalone!==l.UNDEFINED&&I.maxTouchPoints&&2<I.maxTouchPoints&&this.set(N,"iPad").set(k,o);break;case g:!this.get(v)&&_&&_[T]&&this.set(v,_[T]);break;case f:var e=this.data,i=function(i){return e[i].getItem().detectFeature().get()};this.set(h,i(h)).set(p,i(p)).set(u,i(u)).set(m,i(m)).set(g,i(g))}return this},D.prototype.parseUA=function(){switch(this.itemType!=f&&A.call(this.data,this.ua,this.rgxMap),this.itemType){case h:this.set(P,H(this.get(y)));break;case g:var i;"iOS"==this.get(v)&&"18.6"==this.get(y)&&(i=/\) Version\/([\d\.]+)/.exec(this.ua))&&26<=parseInt(i[1].substring(0,2),10)&&this.set(y,i[1])}return this},D.prototype.parseCH=function(){var i,e=this.uaCH,o=this.rgxMap;switch(this.itemType){case h:case m:var t,r=e[$]||e[L];if(r)for(var a=0;a<r.length;a++){var s=r[a].brand||r[a],n=r[a].version;this.itemType==h&&!/not.a.brand/i.test(s)&&(!t||/Chrom/.test(t)&&s!=vi||t==ki&&/WebView2/.test(s))&&(s=c(s,Ui),(t=this.get(v))&&!/Chrom/.test(t)&&/Chrom/.test(s)||this.set(v,s).set(y,n).set(P,H(n)),t=s),this.itemType==m&&s==vi&&this.set(y,n)}break;case p:var w=e[C];w&&("64"==e[J]&&(w+="64"),A.call(this.data,w+";",o));break;case u:if(e[E]&&this.set(k,E),e[N]&&(this.set(N,e[N]),this.get(k)&&this.get(x)||(A.call(w={},"droid 9; "+e[N]+")",o),!this.get(k)&&w.type&&this.set(k,w.type),!this.get(x)&&w.vendor&&this.set(x,w.vendor))),e[S]){if("string"!=typeof e[S])for(var d=0;!i&&d<e[S].length;)i=c(e[S][d++],qi);else i=c(e[S],qi);this.set(k,i)}break;case g:var b,w=e[T];w&&(b=e[W],w==Ci&&(b=13<=parseInt(H(b),10)?"11":"10"),this.set(v,w).set(y,b)),this.get(v)==Ci&&"Xbox"==e[N]&&this.set(v,"Xbox").set(y,void 0);break;case f:var l=this.data,w=function(i){return l[i].getItem().setCH(e).parseCH().get()};this.set(h,w(h)).set(p,w(p)).set(u,w(u)).set(m,w(m)).set(g,w(g))}return this},F.VERSION="2.0.9",F.BROWSER=B([v,y,P,k]),F.CPU=B([C]),F.DEVICE=B([N,x,k,j,E,i,o,e,G]),F.ENGINE=F.OS=B([v,y]);export{F as UAParser};

================================================
FILE: package.json
================================================
{
  "title": "UAParser.js",
  "name": "ua-parser-js",
  "version": "2.0.9",
  "author": "Faisal Salman <f@faisalman.com> (http://faisalman.com)",
  "description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent & Client Hints data. Supports browser & node.js environment",
  "keywords": [
    "user-agent",
    "client-hints",
    "browser",
    "engine",
    "os",
    "device",
    "cpu",
    "ua-parser-js",
    "browser-detection",
    "device-detection",
    "os-detection",
    "bot-detection",
    "ai-detection",
    "app-detection",
    "crawler-detection"
  ],
  "homepage": "https://uaparser.dev",
  "contributors": [
    "Aamir Poonawalla <aamir@urx.com>",
    "Admas <mollases@users.noreply.github.com>",
    "Aiyush <aiyushdhar85@gmail.com>",
    "algenon <m@antonz.ru>",
    "Alvin Portillo <alvin@8thwall.com>",
    "Amumu <yoyo837@hotmail.com>",
    "Andreas Kogler <andreas.kogler@bitmovin.com>",
    "Andrea Vaghi <andrea.vaghi@jobrapido.com>",
    "Anton Zhiyanov <m@antonz.ru>",
    "Arturo Mejia <amejia@blim.com>",
    "Arun Rama Reddy <arunramareddy@gmail.com>",
    "Austin Pray <austin@austinpray.com>",
    "Beat YT <66485277+Beat-YT@users.noreply.github.com>",
    "Bendeguz <symunona@gmail.com>",
    "Benjamin Bertrand <bertrand.design@gmail.com>",
    "Benjamin Urban <benjamin.urban@sueddeutsche.de>",
    "boneyao <admin@boneyao.com>",
    "Carl C Von Lewin <carlchristianlewin@gmail.com>",
    "CESAR RAMOS <c@imagenproactiva.com>",
    "Chad Killingsworth <ckillingsworth@jackhenry.com>",
    "chenhui9279 <chenhui9279@autohome.com.cn>",
    "chenyuan-new <53860479+chenyuan-new@users.noreply.github.com>",
    "Christopher De Cairos <chris.decairos@gmail.com>",
    "Cyrille David <cyrille@qonto.eu>",
    "Dai Jie <daijie@php.net>",
    "Danila Rodichkin <daniluk4000@outlook.com>",
    "Dante <duanjl.china@gmail.com>",
    "Dario Vladovic <d.vladimyr@gmail.com>",
    "David Annez <david.annez@gmail.com>",
    "Davit Barbakadze <jayarjo@gmail.com>",
    "ddivernois <david-emmanuel.divernois@amadeus.com>",
    "Deliaz <D3liaz@gmail.com>",
    "Demis Palma <demis.palma@gmail.com>",
    "dhoko <aurelien@protonmail.com>",
    "dianhe <dianhe@webank.com>",
    "dineshks1 <dineshks1@d.kumar44@outlook.com>",
    "Dmitry Tyschenko <dtyschenko@gmail.com>",
    "Douglas Li <doug@knotch.it>",
    "Dumitru Uzun <contact@duzun.me>",
    "Dustin <duburns@fanatics.com>",
    "Elchin Valiyev <elchin.valiyev@autodesk.com>",
    "Emil Hesslow <hesslow@gmail.com>",
    "Eric Redon <eric.redon@coox.org>",
    "Eric Schrenker <eric.schrenker@gmail.com>",
    "Erik Hesselink <hesselink@gmail.com>",
    "Fabian Becker <halfdan@xnorfz.de>",
    "Faisal Salman <f@faisalman.com>",
    "Frédéric Camblor <fcamblor@gmail.com>",
    "Frederik Ring <frederik.ring@gmail.com>",
    "Garrit Franke <garrit@slashdev.space>",
    "Gerald Host <me@jacobford.co.uk>",
    "Germán M. Bravo <german.mb@gmail.com>",
    "Grigory Dmitrenko <grigory@snsk.ru>",
    "gulpin <gulping.gulpin@gmail.com>",
    "Hans Ott <hansott@hotmail.be>",
    "Harald Reingruber <74898239+haraldreingruber-dedalus@users.noreply.github.com>",
    "Hendrik Helwich <h.helwich@iplabs.de>",
    "Hermann Ebert <ebbmo@HE.local>",
    "hr6r <hedian@gmail.com>",
    "Hyewon Kang <gpffps369@gmail.com>",
    "Hyunbin <47051820+hyunbinseo@users.noreply.github.com>",
    "Igor Topal <i.topal@smartweb.com.ua>",
    "Ildar Kamalov <i.kamalov@adguard.com>",
    "Ilya Daraseliya <idarase@gmail.com>",
    "insanehong <insane.hong@navercorp.com>",
    "jackpoll <jackpoll123456@gmail.com>",
    "Jacky Choo <jackychoo@adly-macbook.local>",
    "Jake Mc <startswithaj@users.noreply.github.com>",
    "JBYoshi <12983479+JBYoshi@users.noreply.github.com>",
    "Joey Parrish <joeyparrish@google.com>",
    "John Tantalo <john.tantalo@gmail.com>",
    "John Yanarella <jmy@codecatalyst.com>",
    "Jon Buckley <jon@jbuckley.ca>",
    "Josh Goldberg <joshuakgoldberg@outlook.com>",
    "Junki-Ishida <junki_ishida@dwango.co.jp>",
    "Kendall Buchanan <kendall@kendagriff.com>",
    "KnifeLemon <role___play@naver.com>",
    "kNoAPP <alldoneb@gmail.com>",
    "Lee Treveil <leetreveil@gmail.com>",
    "leonardo <leofiore@libero.it>",
    "Levente Balogh <balogh.levente.hu@gmail.com>",
    "Liam Quinn <lquinn@blackberry.com>",
    "Lithin <lithin@webklipper.com>",
    "liujunlve <liujunlve@henhaoji.com>",
    "lj0812 <xoyljlj@163.com>",
    "ll-syber <670159357@qq.com>",
    "Loris Guignard <loris.guignard@gmail.com>",
    "Lukas Drgon <lukas.drgon@gmail.com>",
    "Lukas Eipert <leipert@users.noreply.github.com>",
    "Malash <i@malash.me>",
    "Martynas <martynas@firmfirm.co>",
    "Masahiko Sato <masasato@yahoo-corp.jp>",
    "Matt Brophy <matt@brophy.org>",
    "Matthew Origer <karatecowboy@gmail.com>",
    "Maximilian Haupt <mail@maximilianhaupt.com>",
    "Max Maurer <maxemanuel.maurer@gmail.com>",
    "Max Nordlund <max.nordlund@gmail.com>",
    "Michael Hess <mhess@connectify.me>",
    "Mike <mikehuebner@me.com>",
    "MimyyK <michele.marais@hakisa.com>",
    "Mok <mok@moekm.com>",
    "nabetama <mao.nabeta@gmail.com>",
    "naoh <naoh.cs03g@nctu.edu.tw>",
    "Nicholas Ionata <nionata@ufl.edu>",
    "Nikhil Motiani <nikhil.motiani@outlook.com>",
    "Nik Rolls <nik@rolls.cc>",
    "nionata <n.ionata129@gmail.com>",
    "niris <nirisix@gmail.com>",
    "Nobuo Okada <nookada@yahoo-corp.jp>",
    "o.drapeza <o.drapeza@tinkoff.ru>",
    "Oscar Becerra <oscarbecerra@google.com>",
    "otakuSiD <otakusid@gmail.com>",
    "Pablo Osés <opablo@gmail.com>",
    "Paris Morgan <paris@8thwall.com>",
    "patrick-nurt <github@pereira.dk>",
    "Pavel Studeny <studeny@avast.com>",
    "Peter Dave Hello <PeterDaveHello@users.noreply.github.com>",
    "philippsimon <github@philippsimon.de>",
    "Pieter Hendrickx <pieter.hendrickx@belfius.be>",
    "Piper Chester <piperchester@gmail.com>",
    "Queen Vinyl Darkscratch <vinyldarkscratch@gmail.com>",
    "Raine Makelainen <raine.makelainen@jolla.com>",
    "Raman Savaryn <homeneartheocean@gmail.com>",
    "Riley Shaw <rileyjshaw@users.noreply.github.com>",
    "Robert Tod <robert@qubit.com>",
    "roman.savarin <roman.savarin@skywindgroup.com>",
    "Ron Korland <ron@testim.io>",
    "Ross Noble <rosshnoble@gmail.com>",
    "ruicong <466403866@qq.com>",
    "Runar Heggset <rukki093@gmail.com>",
    "Ryohei Shima <shima01dev@gmail.com>",
    "Sandro Sonntag <sandro.sonntag@adorsys.de>",
    "sgautrea <shanegautreau@gmail.com>",
    "shaharmor <shahar@peer5.com>",
    "Shane Gautreau <sgautrea@opentext.com>",
    "Shane Thacker <shane@steadymade.com>",
    "Shreedhar <shreedhar@uber.com>",
    "Simon Eisenmann <simon@longsleep.org>",
    "Simon Lang <me@simonlang.org>",
    "Stiekel <histkc@gmail.com>",
    "sunny-mwx <30586210+sunny-mwx@users.noreply.github.com>",
    "sUP <dani3l@gmail.com>",
    "Sylvain Gizard <sylvain.gizard@gmail.com>",
    "szchenghuang <szchenghuang@gmail.com>",
    "Tanguy Krotoff <tkrotoff@gmail.com>",
    "Tony Tomarchio <tony@tomarchio.cc>",
    "Ulrich Schmidt <u.schmidt@velian.de>",
    "Vadim Kurachevsky <vadim@hmvs.org>",
    "Varun Sharma <varunsh@stepsecurity.io>",
    "XhmikosR <xhmikosr@gmail.com>",
    "Yılmaz <yilmazdemir36@gmail.com>",
    "yuanyang <work_yuanyang@163.com>",
    "Yun Young-jin <yupmin@yupmin-office-macmini.local>",
    "Zach Bjornson <zbbjornson@gmail.com>",
    "Ziding Zhang <zidingz@gmail.com>"
  ],
  "type": "commonjs",
  "types": "src/main/ua-parser.d.ts",
  "main": "src/main/ua-parser.js",
  "module": "src/main/ua-parser.mjs",
  "browser": "dist/ua-parser.pack.js",
  "exports": {
    ".": {
      "require": "./src/main/ua-parser.js",
      "import": "./src/main/ua-parser.mjs",
      "types": "./src/main/ua-parser.d.ts"
    },
    "./bot-detection": {
      "require": "./src/bot-detection/bot-detection.js",
      "import": "./src/bot-detection/bot-detection.mjs",
      "types": "./src/bot-detection/bot-detection.d.ts"
    },
    "./browser-detection": {
      "require": "./src/browser-detection/browser-detection.js",
      "import": "./src/browser-detection/browser-detection.mjs",
      "types": "./src/browser-detection/browser-detection.d.ts"
    },
    "./device-detection": {
      "require": "./src/device-detection/device-detection.js",
      "import": "./src/device-detection/device-detection.mjs",
      "types": "./src/device-detection/device-detection.d.ts"
    },
    "./enums": {
      "require": "./src/enums/ua-parser-enums.js",
      "import": "./src/enums/ua-parser-enums.mjs",
      "types": "./src/enums/ua-parser-enums.d.ts"
    },
    "./extensions": {
      "require": "./src/extensions/ua-parser-extensions.js",
      "import": "./src/extensions/ua-parser-extensions.mjs",
      "types": "./src/extensions/ua-parser-extensions.d.ts"
    },
    "./helpers": {
      "require": "./src/helpers/ua-parser-helpers.js",
      "import": "./src/helpers/ua-parser-helpers.mjs",
      "types": "./src/helpers/ua-parser-helpers.d.ts"
    }
  },
  "files": [
    "dist/*.?(m)js",
    "dist/icons",
    "src"
  ],
  "bin": "./script/cli.js",
  "scripts": {
    "build": "./script/build-dist.sh && ./script/build-esm.js",
    "build+test": "npm run build && npm run test",
    "fuzz": "jazzer ./test/fuzz/redos.js --sync",
    "test": "./script/test-all.sh",
    "test:dts-lint": "tsd --typings src/main/ua-parser.d.ts --files test/static/dts-lint.ts",
    "test:eslint": "eslint --no-config-lookup src",
    "test:jshint": "jshint src/main",
    "test:lockfile-lint": "lockfile-lint -p package-lock.json",
    "test:mocha": "mocha --recursive test/unit",
    "test:playwright": "npx playwright install && playwright test test/e2e --browser all"
  },
  "dependencies": {
    "detect-europe-js": "^0.1.2",
    "is-standalone-pwa": "^0.1.1",
    "ua-is-frozen": "^0.1.2"
  },
  "devDependencies": {
    "@babel/parser": "7.15.8",
    "@babel/traverse": "7.23.2",
    "@playwright/test": "^1.57.0",
    "eslint": "^9.39.1",
    "jshint": "~2.13.6",
    "lockfile-lint": "^4.14.1",
    "mocha": "~8.2.0",
    "requirejs": "2.3.2",
    "safe-regex": "^2.1.1",
    "tsd": "^0.29.0",
    "uglify-js": "~3.19.3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/faisalman/ua-parser-js.git"
  },
  "license": "AGPL-3.0-or-later",
  "engines": {
    "node": "*"
  },
  "directories": {
    "dist": "dist",
    "script": "script",
    "src": "src",
    "test": "test"
  },
  "bugs": "https://github.com/faisalman/ua-parser-js/issues",
  "demo": "https://uaparser.dev",
  "download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.pack.js",
  "funding": [
    {
      "type": "opencollective",
      "url": "https://opencollective.com/ua-parser-js"
    },
    {
      "type": "paypal",
      "url": "https://paypal.me/faisalman"
    },
    {
      "type": "github",
      "url": "https://github.com/sponsors/faisalman"
    }
  ]
}


================================================
FILE: script/build-dist.sh
================================================
#!/usr/bin/env bash

SRC_PATH="src/main/ua-parser.js"
MIN_PATH="dist/ua-parser.min.js"
PACK_PATH="dist/ua-parser.pack.js"

SRC_PATH_MJS="src/main/ua-parser.mjs"
MIN_PATH_MJS="dist/ua-parser.min.mjs"
PACK_PATH_MJS="dist/ua-parser.pack.mjs"

# minified
echo "Generate ${MIN_PATH}"
uglifyjs $SRC_PATH -o $MIN_PATH --comments "/^ UA/"

echo "Generate ${MIN_PATH_MJS}"
uglifyjs $SRC_PATH_MJS -o $MIN_PATH_MJS --comments "/^ UA/" --module

# packed
echo "Generate ${PACK_PATH}"
uglifyjs $SRC_PATH -o $PACK_PATH --comments "/^ UA/" --compress --mangle

echo "Generate ${PACK_PATH_MJS}"
uglifyjs $SRC_PATH_MJS -o $PACK_PATH_MJS --comments "/^ UA/" --compress --mangle --module

================================================
FILE: script/build-esm.js
================================================
#!/usr/bin/env node
/* jshint esversion: 6 */ 
const fs = require('fs');

const defaultReplacements = {
    mjs: [
        [/(?<=const.+)(:)(?=.+require)/ig, ' as'],
        [/const (.+?)\s*=\s*require\(\'\.(.+)\'\)/ig, 'import $1 from \'\.$2.mjs\''],
        [/const (.+?)\s*=\s*require\(\'(.+)\'\)/ig, 'import $1 from \'$2\''],
        [/module\.exports =/ig, 'export']
    ]
}

const generateFile = (module) => {
    let { src, dest, title, replacements } = module;
    let text = fs.readFileSync(src, 'utf-8');

    replacements.forEach(rep => {
        text = text.replace(rep[0], rep[1]);
    });

    console.log(`Generate ${dest}`);

    fs.writeFileSync(dest,
`// ${title}
// DO NOT EDIT THIS FILE!
// Source: /${src}

${text}`, 'utf-8');
};

const files = [
    {
        src : 'src/main/ua-parser.js',
        dest : 'src/main/ua-parser.mjs',
        title : 'Generated ESM version of ua-parser-js',
        replacements : [
            [/\(func[\s\S]+strict\';/ig, ''],
            [/esversion\: 3/ig, 'esversion: 6'],
            [/\/[\/\s]+export[\s\S]+/ig,'export {UAParser};'],
            ...defaultReplacements.mjs
        ]
    },
    {
        src : 'src/bot-detection/bot-detection.js',
        dest :'src/bot-detection/bot-detection.mjs',
        title : 'Generated ESM version of ua-parser-js/bot-detection',
        replacements : [...defaultReplacements.mjs]
    },
    {
        src : 'src/browser-detection/browser-detection.js',
        dest :'src/browser-detection/browser-detection.mjs',
        title : 'Generated ESM version of ua-parser-js/browser-detection',
        replacements : [...defaultReplacements.mjs]
    },
    {
        src : 'src/device-detection/device-detection.js',
        dest :'src/device-detection/device-detection.mjs',
        title : 'Generated ESM version of ua-parser-js/device-detection',
        replacements : [...defaultReplacements.mjs]
    },
    {
        src : 'src/enums/ua-parser-enums.js',
        dest :'src/enums/ua-parser-enums.mjs',
        title : 'Generated ESM version of ua-parser-js/enums',
        replacements : [...defaultReplacements.mjs]
    },
    {
        src : 'src/enums/ua-parser-enums.js',
        dest :'src/enums/ua-parser-enums.d.ts',
        title : 'Generated type declarations of ua-parser-js/enums',
        replacements : [
            [/(const .+) = object\.freeze\(/ig, 'export $1: Readonly<'],
            [/(const .+) =( .+;)/ig, 'export $1: typeof$2'],
            [/}\);/ig, '}>;'],
            [/module\.exports =.+/igs, '']
        ]
    },
    {
        src : 'src/extensions/ua-parser-extensions.js',
        dest : 'src/extensions/ua-parser-extensions.mjs',
        title : 'Generated ESM version of ua-parser-js/extensions',
        replacements : [...defaultReplacements.mjs]
    },
    {
        src : 'src/helpers/ua-parser-helpers.js',
        dest : 'src/helpers/ua-parser-helpers.mjs',
        title : 'Generated ESM version of ua-parser-js/helpers',
        replacements : [...defaultReplacements.mjs]
    }
];

files.forEach(module => generateFile(module));

================================================
FILE: script/cli.js
================================================
#!/usr/bin/env node

try {    
    const fs = require('node:fs');
    const path = require('node:path');
    const { performance } = require('node:perf_hooks');
    const readline = require('node:readline');
    const { parseArgs } = require('node:util');
    const UAParser = require('../src/main/ua-parser');
    const { Bots, Emails, ExtraDevices, InApps, Vehicles } = require('../src/extensions/ua-parser-extensions');

    if (!process.argv[2].startsWith('-')) {

        const results = process.argv.slice(2).map(ua => UAParser(ua, [Bots, Emails, ExtraDevices, InApps, Vehicles]));
        console.log(JSON.stringify(results, null, 4));
        process.exit(0);

    } else if (['-h', '--help'].includes(process.argv[2])) {

        console.log('Usage: npx ua-parser-js <string>');
        console.log('   or  npx ua-parser-js --input-file <filepath> [--output-file <filepath>]');
        console.log('-i, --input-file');
        console.log('-o, --output-file');
        process.exit(0);

    } else {

        const startPerf = performance.now();
        const {
            values: { 
                'input-file': inputFile, 
                'output-file': outputFile 
            },
        } = parseArgs({
            options: {
                'input-file': { type: 'string', short: 'i' },
                'output-file': { type: 'string', short: 'o' }
            }
        });

        if (!inputFile) {
            console.error('Input file must be present');
            process.exit(1);
        }

        const inputPath = path.resolve(__dirname, inputFile);
        const outputPath = outputFile ? path.resolve(__dirname, outputFile) : null;

        if (!fs.existsSync(inputPath)) {
            console.error(`Input file not found: ${inputPath}`);
            process.exit(1);
        }

        const inputStream = fs.createReadStream(inputPath, 'utf8');
        const rl = readline.createInterface({
            input: inputStream,
            crlfDelay: Infinity
        });

        const outputStream = outputPath ? fs.createWriteStream(outputPath, { encoding : 'utf8' }) : process.stdout;

        const uap = new UAParser([Bots, Emails, ExtraDevices, InApps, Vehicles]);
        let lineNumber = 0;

        outputStream.write('[\n');

        rl.on('line', line => {
            const result = uap.setUA(line).getResult();
            const json = JSON.stringify(result, null, 4);
            if (lineNumber > 0) outputStream.write(',\n');
            outputStream.write(json);
            lineNumber++;
        });

        rl.on('close', () => {
            outputStream.write('\n]');
            if (outputPath) {
                outputStream.end(() => {
                    const finishPerf = performance.now();
                    console.log(`Done!`);
                    console.log(`Number of lines found: ${lineNumber}`);
                    console.log(`Task finished in: ${(finishPerf - startPerf).toFixed(3)}ms`);
                    console.log(`Output written to: ${outputPath}`);
                    process.exit(0);
                });
            } else {
                process.exit(0);
            }
        });
    }
} catch (err) {
    console.error(err);
    process.exit(1);
}

================================================
FILE: script/test-all.sh
================================================
#!/usr/bin/env bash

echo '
- run build
'
npm run build || exit 1

echo '
- lint js code
'
npm run test:jshint || exit 1 
npm run test:eslint || exit 1 

echo '
- test using mocha
'
npm run test:mocha || exit 1 

echo '
- test using playwright
'
npm run test:playwright || exit 1 

echo '
- lint lockfile
'
npm run test:lockfile-lint || exit 1 

echo '
- lint d.ts files
'
npm run test:dts-lint || exit 1

================================================
FILE: src/bot-detection/bot-detection.d.ts
================================================
// Type definitions for bot-detection submodule of UAParser.js v2.0.9
// Project: https://github.com/faisalman/ua-parser-js
// Definitions by: Faisal Salman <https://github.com/faisalman>

import type { IResult } from "../main/ua-parser";

export function isAIAssistant(resultOrUA: IResult | string): boolean;
export function isAICrawler(resultOrUA: IResult | string): boolean;
export function isBot(resultOrUA: IResult | string): boolean;

================================================
FILE: src/bot-detection/bot-detection.js
================================================
//////////////////////////////////////////////////
/*  bot-detection submodule of UAParser.js v2.0.9
    https://github.com/faisalman/ua-parser-js
    Author: Faisal Salman <f@faisalman.com>
    AGPLv3 License */
/////////////////////////////////////////////////

/*jshint esversion: 6 */ 

const { UAParser } = require('../main/ua-parser');
const { Bots, Crawlers, Fetchers } = require('../extensions/ua-parser-extensions');
const { BrowserType, Extension } = require('../enums/ua-parser-enums');
const { Crawler, Fetcher } = Extension.BrowserName;

class BotList {
    constructor(ext, prop, list) {
        this.ext = ext;
        this.prop = prop;
        this.list = list.map(x => x.toLowerCase());
    }
    includes(ua) {
        return this.list.includes(
            (typeof ua === 'string' ? 
                new UAParser(ua, this.ext).getBrowser() : 
                ua.browser
            )[this.prop]?.toLowerCase());
    }
}

const BotTypes = new BotList(Bots, 'type', [
    BrowserType.CLI, 
    BrowserType.CRAWLER, 
    BrowserType.FETCHER, 
    BrowserType.LIBRARY
]);

const AIAssistants = new BotList(Fetchers, 'name', [

    // Amazon
    Fetcher.AMAZON_NOVA_ACT,

    // Anthropic
    Fetcher.ANTHROPIC_CLAUDE_USER,

    // Cohere
    Fetcher.COHERE_AI,

    // DuckDuckGo
    Fetcher.DUCKDUCKGO_ASSISTBOT,

    // Google
    Fetcher.GOOGLE_GEMINI_DEEP_RESEARCH,

    // Mistral AI
    Fetcher.MISTRALAI_USER,

    // OpenAI
    Fetcher.OPENAI_CHATGPT_USER,

    // Perplexity
    Fetcher.PERPLEXITY_USER
]);

const AICrawlers = new BotList(Crawlers, 'name', [

    // AI2
    Crawler.AI2_BOT,

    // Amazon
    Crawler.AMAZON_BOT,

    // Anthropic
    Crawler.ANTHROPIC_AI,
    Crawler.ANTHROPIC_CLAUDE_BOT,
    Crawler.ANTHROPIC_CLAUDE_SEARCHBOT,
    Crawler.ANTHROPIC_CLAUDE_WEB,

    // Apple
    Crawler.APPLE_BOT,
    Crawler.APPLE_BOT_EXTENDED,

    // Atlassian
    Crawler.ATLASSIAN_BOT,

    // Brave
    Crawler.BRAVE_BOT,

    // ByteDance
    Crawler.BYTEDANCE_BYTESPIDER,
    Crawler.BYTEDANCE_TIKTOKSPIDER,

    // Cloudflare
    Crawler.CLOUDFLARE_AUTORAG,

    // Cohere
    Crawler.COHERE_TRAINING_DATA_CRAWLER,

    // Common Crawl
    Crawler.COMMON_CRAWL_CCBOT,    

    // Coveo
    Crawler.COVEO_BOT,

    // DataForSeo
    Crawler.DATAFORSEO_BOT,

    // DeepSeek
    Crawler.DEEPSEEK_BOT,

    // Diffbot
    Crawler.DIFFBOT,

    // Google
    Crawler.GOOGLE_EXTENDED,
    Crawler.GOOGLE_NOTEBOOKLM,
    Crawler.GOOGLE_OTHER,
    Crawler.GOOGLE_OTHER_IMAGE,
    Crawler.GOOGLE_OTHER_VIDEO,
    Crawler.GOOGLE_CLOUDVERTEXBOT,

    // Hive AI
    Crawler.HIVE_IMAGESIFTBOT,

    // Huawei
    Crawler.HUAWEI_PETALBOT,
    Crawler.HUAWEI_PANGUBOT,

    // Hugging Face
    Crawler.HUGGINGFACE_BOT,

    // Kangaroo
    Crawler.KANGAROO_BOT,

    // Mendable.ai
    Crawler.FIRECRAWL_AGENT,

    // Meta
    Crawler.META_FACEBOOKBOT,
    Crawler.META_EXTERNALAGENT,
    Crawler.META_WEBINDEXER,

    // OpenAI
    Crawler.OPENAI_GPTBOT,
    Crawler.OPENAI_SEARCH_BOT,

    // Perplexity
    Crawler.PERPLEXITY_BOT,

    // Replicate
    Crawler.REPLICATE_BOT,

    // Runpod
    Crawler.RUNPOD_BOT,

    // SB Intuitions
    Crawler.SB_INTUITIONS_BOT,

    // Semrush
    Crawler.SEMRUSH_BOT_CONTENTSHAKE,
    Crawler.SEMRUSH_BOT_SWA,

    // Timpi
    Crawler.TIMPI_BOT,

    // Together AI
    Crawler.TOGETHER_BOT,

    // Velen.io
    Crawler.HUNTER_VELENPUBLICWEBCRAWLER,

    // Vercel
    Crawler.VERCEL_V0BOT,

    // Webz.io
    Crawler.WEBZIO_OMGILI,
    Crawler.WEBZIO_OMGILI_BOT,
    Crawler.WEBZIO_EXTENDED,

    // X
    Crawler.XAI_BOT,

    // You.com
    Crawler.YOU_BOT,

    // Zhipu AI
    Crawler.ZHIPU_CHATGLM_SPIDER
]);

const isBot = ua => BotTypes.includes(ua);
const isAIAssistant = ua => AIAssistants.includes(ua);
const isAICrawler = ua => AICrawlers.includes(ua);

module.exports = {
    isAIAssistant, 
    isAICrawler,
    isBot
}

================================================
FILE: src/bot-detection/bot-detection.mjs
================================================
// Generated ESM version of ua-parser-js/bot-detection
// DO NOT EDIT THIS FILE!
// Source: /src/bot-detection/bot-detection.js

//////////////////////////////////////////////////
/*  bot-detection submodule of UAParser.js v2.0.9
    https://github.com/faisalman/ua-parser-js
    Author: Faisal Salman <f@faisalman.com>
    AGPLv3 License */
/////////////////////////////////////////////////

/*jshint esversion: 6 */ 

import { UAParser } from '../main/ua-parser.mjs';
import { Bots, Crawlers, Fetchers } from '../extensions/ua-parser-extensions.mjs';
import { BrowserType, Extension } from '../enums/ua-parser-enums.mjs';
const { Crawler, Fetcher } = Extension.BrowserName;

class BotList {
    constructor(ext, prop, list) {
        this.ext = ext;
        this.prop = prop;
        this.list = list.map(x => x.toLowerCase());
    }
    includes(ua) {
        return this.list.includes(
            (typeof ua === 'string' ? 
                new UAParser(ua, this.ext).getBrowser() : 
                ua.browser
            )[this.prop]?.toLowerCase());
    }
}

const BotTypes = new BotList(Bots, 'type', [
    BrowserType.CLI, 
    BrowserType.CRAWLER, 
    BrowserType.FETCHER, 
    BrowserType.LIBRARY
]);

const AIAssistants = new BotList(Fetchers, 'name', [

    // Amazon
    Fetcher.AMAZON_NOVA_ACT,

    // Anthropic
    Fetcher.ANTHROPIC_CLAUDE_USER,

    // Cohere
    Fetcher.COHERE_AI,

    // DuckDuckGo
    Fetcher.DUCKDUCKGO_ASSISTBOT,

    // Google
    Fetcher.GOOGLE_GEMINI_DEEP_RESEARCH,

    // Mistral AI
    Fetcher.MISTRALAI_USER,

    // OpenAI
    Fetcher.OPENAI_CHATGPT_USER,

    // Perplexity
    Fetcher.PERPLEXITY_USER
]);

const AICrawlers = new BotList(Crawlers, 'name', [

    // AI2
    Crawler.AI2_BOT,

    // Amazon
    Crawler.AMAZON_BOT,

    // Anthropic
    Crawler.ANTHROPIC_AI,
    Crawler.ANTHROPIC_CLAUDE_BOT,
    Crawler.ANTHROPIC_CLAUDE_SEARCHBOT,
    Crawler.ANTHROPIC_CLAUDE_WEB,

    // Apple
    Crawler.APPLE_BOT,
    Crawler.APPLE_BOT_EXTENDED,

    // Atlassian
    Crawler.ATLASSIAN_BOT,

    // Brave
    Crawler.BRAVE_BOT,

    // ByteDance
    Crawler.BYTEDANCE_BYTESPIDER,
    Crawler.BYTEDANCE_TIKTOKSPIDER,

    // Cloudflare
    Crawler.CLOUDFLARE_AUTORAG,

    // Cohere
    Crawler.COHERE_TRAINING_DATA_CRAWLER,

    // Common Crawl
    Crawler.COMMON_CRAWL_CCBOT,    

    // Coveo
    Crawler.COVEO_BOT,

    // DataForSeo
    Crawler.DATAFORSEO_BOT,

    // DeepSeek
    Crawler.DEEPSEEK_BOT,

    // Diffbot
    Crawler.DIFFBOT,

    // Google
    Crawler.GOOGLE_EXTENDED,
    Crawler.GOOGLE_NOTEBOOKLM,
    Crawler.GOOGLE_OTHER,
    Crawler.GOOGLE_OTHER_IMAGE,
    Crawler.GOOGLE_OTHER_VIDEO,
    Crawler.GOOGLE_CLOUDVERTEXBOT,

    // Hive AI
    Crawler.HIVE_IMAGESIFTBOT,

    // Huawei
    Crawler.HUAWEI_PETALBOT,
    Crawler.HUAWEI_PANGUBOT,

    // Hugging Face
    Crawler.HUGGINGFACE_BOT,

    // Kangaroo
    Crawler.KANGAROO_BOT,

    // Mendable.ai
    Crawler.FIRECRAWL_AGENT,

    // Meta
    Crawler.META_FACEBOOKBOT,
    Crawler.META_EXTERNALAGENT,

    // OpenAI
    Crawler.OPENAI_GPTBOT,
    Crawler.OPENAI_SEARCH_BOT,

    // Perplexity
    Crawler.PERPLEXITY_BOT,

    // Replicate
    Crawler.REPLICATE_BOT,

    // Runpod
    Crawler.RUNPOD_BOT,

    // SB Intuitions
    Crawler.SB_INTUITIONS_BOT,

    // Semrush
    Crawler.SEMRUSH_BOT_CONTENTSHAKE,
    Crawler.SEMRUSH_BOT_SWA,

    // Timpi
    Crawler.TIMPI_BOT,

    // Together AI
    Crawler.TOGETHER_BOT,

    // Velen.io
    Crawler.HUNTER_VELENPUBLICWEBCRAWLER,

    // Vercel
    Crawler.VERCEL_V0BOT,

    // Webz.io
    Crawler.WEBZIO_OMGILI,
    Crawler.WEBZIO_OMGILI_BOT,
    Crawler.WEBZIO_EXTENDED,

    // X
    Crawler.XAI_BOT,

    // You.com
    Crawler.YOU_BOT,

    // Zhipu AI
    Crawler.ZHIPU_CHATGLM_SPIDER
]);

const isBot = ua => BotTypes.includes(ua);
const isAIAssistant = ua => AIAssistants.includes(ua);
const isAICrawler = ua => AICrawlers.includes(ua);

export {
    isAIAssistant, 
    isAICrawler,
    isBot
}

================================================
FILE: src/browser-detection/browser-detection.d.ts
================================================
// Type definitions for browser-detection submodule of UAParser.js v2.0.9
// Project: https://github.com/faisalman/ua-parser-js
// Definitions by: Faisal Salman <https://github.com/faisalman>

import type { IResult } from "../main/ua-parser";

export function isChromeFamily(resultOrUA: IResult | string): boolean;
export function isElectron(): boolean;
export function isFromEU(): boolean;
export function isStandalonePWA(): boolean;

================================================
FILE: src/browser-detection/browser-detection.js
================================================
//////////////////////////////////////////////////////
/*  browser-detection submodule of UAParser.js v2.0.9
    https://github.com/faisalman/ua-parser-js
    Author: Faisal Salman <f@faisalman.com>
    AGPLv3 License */
/////////////////////////////////////////////////////

/*jshint esversion: 6 */ 

const { UAParser } = require('../main/ua-parser');
const { EngineName } = require('../enums/ua-parser-enums');
const { isStandalonePWA } = require('is-standalone-pwa');
const { isFromEU } = require('detect-europe-js');

const isChromeFamily = val => !!(
    (typeof val === 'string' ? 
        new UAParser(val).getEngine() : 
        val.engine
    )?.is(EngineName.BLINK));

const isElectron = () => !!(
    process?.versions?.hasOwnProperty('electron') ||    // node.js
    / electron\//i.test(navigator?.userAgent));         // browser

module.exports = { 
    isChromeFamily,
    isElectron,
    isFromEU,
    isStandalonePWA
}

================================================
FILE: src/browser-detection/browser-detection.mjs
================================================
// Generated ESM version of ua-parser-js/browser-detection
// DO NOT EDIT THIS FILE!
// Source: /src/browser-detection/browser-detection.js

//////////////////////////////////////////////////////
/*  browser-detection submodule of UAParser.js v2.0.9
    https://github.com/faisalman/ua-parser-js
    Author: Faisal Salman <f@faisalman.com>
    AGPLv3 License */
/////////////////////////////////////////////////////

/*jshint esversion: 6 */ 

import { UAParser } from '../main/ua-parser.mjs';
import { EngineName } from '../enums/ua-parser-enums.mjs';
import { isStandalonePWA } from 'is-standalone-pwa';
import { isFromEU
Download .txt
gitextract_gju4zwmr/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   └── pull_request_template.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── funding.yml
│   └── workflows/
│       ├── analysis-codeql.yml
│       ├── analysis-dependency.yml
│       ├── analysis-scorecard.yml
│       ├── publish-github-packages.yml
│       ├── publish-npm-packages.yml
│       └── test-ci.yml
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── SECURITY.md
├── dist/
│   ├── icons/
│   │   ├── color/
│   │   │   └── LICENSE.md
│   │   └── mono/
│   │       └── LICENSE.md
│   ├── ua-parser.html
│   ├── ua-parser.min.mjs
│   ├── ua-parser.pack.js
│   └── ua-parser.pack.mjs
├── package.json
├── script/
│   ├── build-dist.sh
│   ├── build-esm.js
│   ├── cli.js
│   └── test-all.sh
├── src/
│   ├── bot-detection/
│   │   ├── bot-detection.d.ts
│   │   ├── bot-detection.js
│   │   └── bot-detection.mjs
│   ├── browser-detection/
│   │   ├── browser-detection.d.ts
│   │   ├── browser-detection.js
│   │   └── browser-detection.mjs
│   ├── device-detection/
│   │   ├── device-detection.d.ts
│   │   ├── device-detection.js
│   │   └── device-detection.mjs
│   ├── enums/
│   │   ├── ua-parser-enums.d.ts
│   │   ├── ua-parser-enums.js
│   │   └── ua-parser-enums.mjs
│   ├── extensions/
│   │   ├── ua-parser-extensions.d.ts
│   │   ├── ua-parser-extensions.js
│   │   └── ua-parser-extensions.mjs
│   ├── helpers/
│   │   ├── ua-parser-helpers.d.ts
│   │   ├── ua-parser-helpers.js
│   │   └── ua-parser-helpers.mjs
│   └── main/
│       ├── ua-parser.d.ts
│       ├── ua-parser.js
│       └── ua-parser.mjs
└── test/
    ├── data/
    │   ├── ua/
    │   │   ├── browser/
    │   │   │   └── browser-all.json
    │   │   ├── cpu/
    │   │   │   └── cpu-all.json
    │   │   ├── device/
    │   │   │   ├── _others.json
    │   │   │   ├── acer.json
    │   │   │   ├── advan.json
    │   │   │   ├── alcatel.json
    │   │   │   ├── amazon.json
    │   │   │   ├── anbernic.json
    │   │   │   ├── apple.json
    │   │   │   ├── archos.json
    │   │   │   ├── asus.json
    │   │   │   ├── blackberry.json
    │   │   │   ├── blackview.json
    │   │   │   ├── blu.json
    │   │   │   ├── cat.json
    │   │   │   ├── coolpad.json
    │   │   │   ├── cubot.json
    │   │   │   ├── energizer.json
    │   │   │   ├── facebook.json
    │   │   │   ├── fairphone.json
    │   │   │   ├── google.json
    │   │   │   ├── hisense.json
    │   │   │   ├── hmd.json
    │   │   │   ├── honor.json
    │   │   │   ├── htc.json
    │   │   │   ├── huawei.json
    │   │   │   ├── imo.json
    │   │   │   ├── infinix.json
    │   │   │   ├── itel.json
    │   │   │   ├── jolla.json
    │   │   │   ├── kobo.json
    │   │   │   ├── lava.json
    │   │   │   ├── lenovo.json
    │   │   │   ├── lg.json
    │   │   │   ├── logitech.json
    │   │   │   ├── meizu.json
    │   │   │   ├── micromax.json
    │   │   │   ├── microsoft.json
    │   │   │   ├── motorola.json
    │   │   │   ├── nintendo.json
    │   │   │   ├── nokia.json
    │   │   │   ├── nothing.json
    │   │   │   ├── nvidia.json
    │   │   │   ├── oneplus.json
    │   │   │   ├── oppo.json
    │   │   │   ├── ouya.json
    │   │   │   ├── panasonic.json
    │   │   │   ├── philips.json
    │   │   │   ├── pico.json
    │   │   │   ├── polytron.json
    │   │   │   ├── realme.json
    │   │   │   ├── retroid.json
    │   │   │   ├── roku.json
    │   │   │   ├── samsung.json
    │   │   │   ├── sharp.json
    │   │   │   ├── smartfren.json
    │   │   │   ├── sony.json
    │   │   │   ├── t-mobile.json
    │   │   │   ├── tcl.json
    │   │   │   ├── technisat.json
    │   │   │   ├── tecno.json
    │   │   │   ├── tesla.json
    │   │   │   ├── ulefone.json
    │   │   │   ├── valve.json
    │   │   │   ├── vivo.json
    │   │   │   ├── vizio.json
    │   │   │   ├── wiko.json
    │   │   │   ├── xiaomi.json
    │   │   │   └── zte.json
    │   │   ├── engine/
    │   │   │   └── engine-all.json
    │   │   ├── extension/
    │   │   │   ├── cli.json
    │   │   │   ├── crawler.json
    │   │   │   ├── email.json
    │   │   │   ├── extra-devices.json
    │   │   │   ├── fetcher.json
    │   │   │   ├── inapp.json
    │   │   │   ├── library.json
    │   │   │   ├── mediaplayer.json
    │   │   │   └── vehicle.json
    │   │   └── os/
    │   │       ├── aix.json
    │   │       ├── amigaos.json
    │   │       ├── android-x86.json
    │   │       ├── android.json
    │   │       ├── arcaos.json
    │   │       ├── arch.json
    │   │       ├── bada.json
    │   │       ├── beos.json
    │   │       ├── blackberry.json
    │   │       ├── centos.json
    │   │       ├── chrome-os.json
    │   │       ├── chromecast-android.json
    │   │       ├── chromecast-fuchsia.json
    │   │       ├── chromecast-linux.json
    │   │       ├── chromecast-smartspeaker.json
    │   │       ├── contiki.json
    │   │       ├── debian.json
    │   │       ├── deepin.json
    │   │       ├── dragonfly.json
    │   │       ├── elementary-os.json
    │   │       ├── fedora.json
    │   │       ├── firefox-os.json
    │   │       ├── freebsd.json
    │   │       ├── fuchsia.json
    │   │       ├── gentoo.json
    │   │       ├── ghostbsd.json
    │   │       ├── haiku.json
    │   │       ├── harmonyos.json
    │   │       ├── hp-ux.json
    │   │       ├── hurd.json
    │   │       ├── ios.json
    │   │       ├── joli.json
    │   │       ├── kaios.json
    │   │       ├── knoppix.json
    │   │       ├── kubuntu.json
    │   │       ├── linpus.json
    │   │       ├── linspire.json
    │   │       ├── linux.json
    │   │       ├── macos.json
    │   │       ├── maemo.json
    │   │       ├── mandriva.json
    │   │       ├── manjaro.json
    │   │       ├── meego.json
    │   │       ├── minix.json
    │   │       ├── mint.json
    │   │       ├── morphos.json
    │   │       ├── netbsd.json
    │   │       ├── netrange.json
    │   │       ├── nettv.json
    │   │       ├── nintendo.json
    │   │       ├── openbsd.json
    │   │       ├── openharmony.json
    │   │       ├── os2.json
    │   │       ├── palm.json
    │   │       ├── pclinuxos.json
    │   │       ├── pico.json
    │   │       ├── plan9.json
    │   │       ├── playstation.json
    │   │       ├── qnx.json
    │   │       ├── raspbian.json
    │   │       ├── redhat.json
    │   │       ├── rim-tablet-os.json
    │   │       ├── risc-os.json
    │   │       ├── sabayon.json
    │   │       ├── sailfish.json
    │   │       ├── serenityos.json
    │   │       ├── series40.json
    │   │       ├── slackware.json
    │   │       ├── solaris.json
    │   │       ├── suse.json
    │   │       ├── symbian.json
    │   │       ├── tizen.json
    │   │       ├── ubuntu-touch.json
    │   │       ├── ubuntu.json
    │   │       ├── unix.json
    │   │       ├── vegaos.json
    │   │       ├── watchos.json
    │   │       ├── webos.json
    │   │       ├── windows-ce.json
    │   │       ├── windows-iot.json
    │   │       ├── windows-mobile.json
    │   │       ├── windows-phone.json
    │   │       ├── windows-rt.json
    │   │       ├── windows.json
    │   │       ├── xbox.json
    │   │       ├── xubuntu.json
    │   │       └── zenwalk.json
    │   └── ua-ch/
    │       └── headers.js
    ├── e2e/
    │   └── browser.spec.mjs
    ├── fuzz/
    │   └── redos.js
    ├── static/
    │   └── dts-lint.ts
    └── unit/
        ├── cli/
        │   ├── cli.spec.js
        │   ├── input.txt
        │   └── output.json
        ├── es6.mjs
        ├── main.js
        ├── submodules/
        │   ├── bot-detection.spec.js
        │   ├── browser-detection.spec.js
        │   ├── device-detection.spec.js
        │   ├── extensions.spec.js
        │   └── helpers.spec.js
        └── ua-ch.js
Download .txt
SYMBOL INDEX (80 symbols across 15 files)

FILE: dist/ua-parser.min.mjs
  function IData (line 4) | function IData(){setProps.call(this,init_props)}
  function UACHData (line 4) | function UACHData(uach,isHttpUACH){uach=uach||{};setProps.call(this,CH_A...
  function UAItem (line 4) | function UAItem(itemType,ua,rgxMap,uaCH){setProps.call(this,[["itemType"...
  function UAParser (line 4) | function UAParser(ua,extensions,headers){if(typeof ua===TYPEOF.OBJECT){i...

FILE: dist/ua-parser.pack.js
  function A (line 4) | function A(i){for(var e={},t=0;t<i.length;t++)e[i[t].toUpperCase()]=i[t]...
  function B (line 4) | function B(i){return Ti(i)?Oi(/[^\d\.]/g,i).split(".")[0]:c}
  function H (line 4) | function H(i,e){if(i&&e)for(var t,o,r,a,s,n=0;n<e.length&&!a;){for(var w...
  function p (line 4) | function p(i,e){for(var t in e)if(typeof e[t]===l.OBJECT&&0<e[t].length)...
  function M (line 4) | function M(e,i){var t=Ai.init[i],o=Ai.isIgnore[i]||0,r=Ai.isIgnoreRgx[i]...
  function Bi (line 4) | function Bi(i,e){if(i=i||{},D.call(this,oi),e)D.call(this,[[L,Ii(i[a])],...
  function F (line 4) | function F(i,e,t,o){return D.call(this,[["itemType",i],["ua",e],["uaCH",...
  function z (line 4) | function z(i,e,t){if(typeof i===l.OBJECT?(e=Si(i,!0)?(typeof e===l.OBJEC...

FILE: dist/ua-parser.pack.mjs
  function B (line 4) | function B(i){for(var e={},o=0;o<i.length;o++)e[i[o].toUpperCase()]=i[o]...
  function H (line 4) | function H(i){return Si(i)?z(/[^\d\.]/g,i).split(".")[0]:void 0}
  function A (line 4) | function A(i,e){if(i&&e)for(var o,t,r,a,s,n=0;n<e.length&&!a;){for(var w...
  function c (line 4) | function c(i,e){for(var o in e)if(typeof e[o]===l.OBJECT&&0<e[o].length)...
  function M (line 4) | function M(e,i){var o=Di.init[i],t=Di.isIgnore[i]||0,r=Di.isIgnoreRgx[i]...
  function Fi (line 4) | function Fi(i,e){if(i=i||{},U.call(this,ti),e)U.call(this,[[L,Ti(i[r])],...
  function D (line 4) | function D(i,e,o,t){return U.call(this,[["itemType",i],["ua",e],["uaCH",...
  function F (line 4) | function F(i,e,o){if(typeof i===l.OBJECT?(e=Ei(i,!0)?(typeof e===l.OBJEC...

FILE: src/bot-detection/bot-detection.js
  class BotList (line 15) | class BotList {
    method constructor (line 16) | constructor(ext, prop, list) {
    method includes (line 21) | includes(ua) {

FILE: src/bot-detection/bot-detection.mjs
  class BotList (line 19) | class BotList {
    method constructor (line 20) | constructor(ext, prop, list) {
    method includes (line 25) | includes(ua) {

FILE: src/enums/ua-parser-enums.d.ts
  constant CPU (line 219) | const CPU: typeof CPUArch;

FILE: src/enums/ua-parser-enums.js
  constant CPU (line 215) | const CPU = CPUArch;

FILE: src/enums/ua-parser-enums.mjs
  constant CPU (line 219) | const CPU = CPUArch;

FILE: src/extensions/ua-parser-extensions.js
  constant MODEL (line 10) | const MODEL     = 'model';
  constant NAME (line 11) | const NAME      = 'name';
  constant TYPE (line 12) | const TYPE      = 'type';
  constant VENDOR (line 13) | const VENDOR    = 'vendor';
  constant VERSION (line 14) | const VERSION   = 'version';
  constant MOBILE (line 15) | const MOBILE    = 'mobile';
  constant TABLET (line 16) | const TABLET    = 'tablet';
  constant CRAWLER (line 17) | const CRAWLER   = 'crawler';
  constant CLI (line 18) | const CLI       = 'cli';
  constant EMAIL (line 19) | const EMAIL     = 'email';
  constant FETCHER (line 20) | const FETCHER   = 'fetcher';
  constant INAPP (line 21) | const INAPP     = 'inapp';
  constant MEDIAPLAYER (line 22) | const MEDIAPLAYER = 'mediaplayer';
  constant LIBRARY (line 23) | const LIBRARY    = 'library';

FILE: src/extensions/ua-parser-extensions.mjs
  constant MODEL (line 14) | const MODEL     = 'model';
  constant NAME (line 15) | const NAME      = 'name';
  constant TYPE (line 16) | const TYPE      = 'type';
  constant VENDOR (line 17) | const VENDOR    = 'vendor';
  constant VERSION (line 18) | const VERSION   = 'version';
  constant MOBILE (line 19) | const MOBILE    = 'mobile';
  constant TABLET (line 20) | const TABLET    = 'tablet';
  constant CRAWLER (line 21) | const CRAWLER   = 'crawler';
  constant CLI (line 22) | const CLI       = 'cli';
  constant EMAIL (line 23) | const EMAIL     = 'email';
  constant FETCHER (line 24) | const FETCHER   = 'fetcher';
  constant INAPP (line 25) | const INAPP     = 'inapp';
  constant MEDIAPLAYER (line 26) | const MEDIAPLAYER = 'mediaplayer';
  constant LIBRARY (line 27) | const LIBRARY    = 'library';

FILE: src/main/ua-parser.d.ts
  type IData (line 9) | interface IData<T> {
  type IBrowser (line 16) | interface IBrowser extends IData<IBrowser> {
  type ICPU (line 23) | interface ICPU extends IData<ICPU> {
  type IDevice (line 27) | interface IDevice extends IData<IDevice> {
  type IEngine (line 33) | interface IEngine extends IData<IEngine> {
  type IOS (line 38) | interface IOS extends IData<IOS> {
  type IResult (line 43) | interface IResult extends IData<IResult> {
  type RegexMap (line 52) | type RegexMap = ((RegExp | string | (string | RegExp | Function)[])[])[];
  type UAParserProps (line 53) | type UAParserProps = 'browser' | 'cpu' | 'device' | 'engine' | 'os';
  type UAParserExt (line 54) | type UAParserExt = Partial<Record<UAParserProps, RegexMap>> | Partial<Re...
  type UAParserHeaders (line 55) | type UAParserHeaders = Record<string, string | string[] | undefined> | H...
  class UAParser (line 62) | class UAParser {

FILE: src/main/ua-parser.js
  function IData (line 1111) | function IData () {
  function UACHData (line 1195) | function UACHData (uach, isHttpUACH) {
  function UAItem (line 1217) | function UAItem (itemType, ua, rgxMap, uaCH) {
  function UAParser (line 1416) | function UAParser (ua, extensions, headers) {

FILE: src/main/ua-parser.mjs
  function IData (line 1100) | function IData () {
  function UACHData (line 1184) | function UACHData (uach, isHttpUACH) {
  function UAItem (line 1206) | function UAItem (itemType, ua, rgxMap, uaCH) {
  function UAParser (line 1399) | function UAParser (ua, extensions, headers) {

FILE: test/fuzz/redos.js
  constant UA_MAX_LENGTH (line 3) | const UA_MAX_LENGTH = 500;

FILE: test/unit/main.js
  function readJsonFiles (line 16) | function readJsonFiles(dir) {
  function withMangledArrayProto (line 99) | function withMangledArrayProto(fn, key = 'isEmpty', value = function() {...
Condensed preview — 231 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,322K chars).
[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 1118,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Library versio"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 595,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your fea"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE/pull_request_template.md",
    "chars": 173,
    "preview": "- [ ] I have read and accept the [Contributor License Agreement (CLA)](https://gist.github.com/faisalman/2ed16621ebb5441"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "chars": 756,
    "preview": "# Prerequisites\n\n- [ ] I have read and follow the [contributing](https://github.com/faisalman/ua-parser-js/blob/master/C"
  },
  {
    "path": ".github/funding.yml",
    "chars": 596,
    "preview": "# These are supported funding model platforms\n\ngithub: faisalman\npatreon: # Replace with a single Patreon username\nopen_"
  },
  {
    "path": ".github/workflows/analysis-codeql.yml",
    "chars": 2978,
    "preview": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# Y"
  },
  {
    "path": ".github/workflows/analysis-dependency.yml",
    "chars": 885,
    "preview": "# Dependency Review Action\n#\n# This Action will scan dependency manifest files that change as part of a Pull Request, su"
  },
  {
    "path": ".github/workflows/analysis-scorecard.yml",
    "chars": 2974,
    "preview": "# This workflow uses actions that are not certified by GitHub. They are provided\n# by a third-party and are governed by "
  },
  {
    "path": ".github/workflows/publish-github-packages.yml",
    "chars": 464,
    "preview": "name: Publish to GitHub Package\n\non:\n  release:\n    types: [published]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    pe"
  },
  {
    "path": ".github/workflows/publish-npm-packages.yml",
    "chars": 494,
    "preview": "name: Publish to NPM\n\non:\n release:\n   types: [published]\n\njobs:\n build:\n   runs-on: ubuntu-latest\n   permissions:\n     "
  },
  {
    "path": ".github/workflows/test-ci.yml",
    "chars": 676,
    "preview": "name: UAParser.js CI-Test\n\non: [push, pull_request]\n\npermissions:\n  contents: read\n\njobs:\n  run-test:\n    runs-on: ubunt"
  },
  {
    "path": ".gitignore",
    "chars": 314,
    "preview": "node_modules/\nnpm-debug.log\nplaywright-report/\ntest-results/\n\n### vim ###\n.*.s[a-w][a-z]\n*.un~\nSession.vim\n.netrwhist\n*~"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 20269,
    "preview": "# UAParser.js Changelog\n\n## Migrating from v1 to v2\n\n### What's Breaking:\n\n- **Licensing Changes:**\n  - UAParser.js is n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 1175,
    "preview": "# UAParser.js Code of Conduct\n\n## Introduction\n\nWelcome to the UAParser.js community! We're here to collaborate on devel"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 308,
    "preview": "# UAParser.js: How to Contribute\n\n* Fork and clone this repository\n* Make some changes as required\n* Write unit test to "
  },
  {
    "path": "LICENSE.md",
    "chars": 32095,
    "preview": "# GNU AFFERO GENERAL PUBLIC LICENSE\n\nVersion 3, 19 November 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc.\n<htt"
  },
  {
    "path": "README.md",
    "chars": 10601,
    "preview": "#### Featured Sponsors\n\n[![https://ref.wisprflow.ai/Rxj3n8H](https://github.com/user-attachments/assets/e39fc98d-5d1b-4f"
  },
  {
    "path": "SECURITY.md",
    "chars": 596,
    "preview": "# Security Policy\n\n## Reporting a Vulnerability\n\nTo report a security issue, please email `f@faisalman.com` with a descr"
  },
  {
    "path": "dist/icons/color/LICENSE.md",
    "chars": 78,
    "preview": "MIT License\nCopyright (c) Cătălin Mariș\nhttps://github.com/alrra/browser-logos"
  },
  {
    "path": "dist/icons/mono/LICENSE.md",
    "chars": 91,
    "preview": "CC0-1.0\nhttps://github.com/simple-icons/simple-icons\nhttps://github.com/coreui/coreui-icons"
  },
  {
    "path": "dist/ua-parser.html",
    "chars": 43,
    "preview": "<script src=\"./ua-parser.min.js\"></script>\n"
  },
  {
    "path": "dist/ua-parser.min.mjs",
    "chars": 35556,
    "preview": "/* UAParser.js v2.0.9\n   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>\n   AGPLv3 License */\nvar LIBVERSION=\"2.0."
  },
  {
    "path": "dist/ua-parser.pack.js",
    "chars": 27082,
    "preview": "/* UAParser.js v2.0.9\n   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>\n   AGPLv3 License */\n((i,c)=>{function A("
  },
  {
    "path": "dist/ua-parser.pack.mjs",
    "chars": 26723,
    "preview": "/* UAParser.js v2.0.9\n   Copyright © 2012-2026 Faisal Salman <f@faisalman.com>\n   AGPLv3 License */\nfunction B(i){for(va"
  },
  {
    "path": "package.json",
    "chars": 10953,
    "preview": "{\n  \"title\": \"UAParser.js\",\n  \"name\": \"ua-parser-js\",\n  \"version\": \"2.0.9\",\n  \"author\": \"Faisal Salman <f@faisalman.com>"
  },
  {
    "path": "script/build-dist.sh",
    "chars": 668,
    "preview": "#!/usr/bin/env bash\n\nSRC_PATH=\"src/main/ua-parser.js\"\nMIN_PATH=\"dist/ua-parser.min.js\"\nPACK_PATH=\"dist/ua-parser.pack.js"
  },
  {
    "path": "script/build-esm.js",
    "chars": 3076,
    "preview": "#!/usr/bin/env node\n/* jshint esversion: 6 */ \nconst fs = require('fs');\n\nconst defaultReplacements = {\n    mjs: [\n     "
  },
  {
    "path": "script/cli.js",
    "chars": 3228,
    "preview": "#!/usr/bin/env node\n\ntry {    \n    const fs = require('node:fs');\n    const path = require('node:path');\n    const { per"
  },
  {
    "path": "script/test-all.sh",
    "chars": 404,
    "preview": "#!/usr/bin/env bash\n\necho '\n- run build\n'\nnpm run build || exit 1\n\necho '\n- lint js code\n'\nnpm run test:jshint || exit 1"
  },
  {
    "path": "src/bot-detection/bot-detection.d.ts",
    "chars": 439,
    "preview": "// Type definitions for bot-detection submodule of UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-parser"
  },
  {
    "path": "src/bot-detection/bot-detection.js",
    "chars": 3907,
    "preview": "//////////////////////////////////////////////////\n/*  bot-detection submodule of UAParser.js v2.0.9\n    https://github."
  },
  {
    "path": "src/bot-detection/bot-detection.mjs",
    "chars": 3994,
    "preview": "// Generated ESM version of ua-parser-js/bot-detection\n// DO NOT EDIT THIS FILE!\n// Source: /src/bot-detection/bot-detec"
  },
  {
    "path": "src/browser-detection/browser-detection.d.ts",
    "chars": 434,
    "preview": "// Type definitions for browser-detection submodule of UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-pa"
  },
  {
    "path": "src/browser-detection/browser-detection.js",
    "chars": 935,
    "preview": "//////////////////////////////////////////////////////\n/*  browser-detection submodule of UAParser.js v2.0.9\n    https:/"
  },
  {
    "path": "src/browser-detection/browser-detection.mjs",
    "chars": 1054,
    "preview": "// Generated ESM version of ua-parser-js/browser-detection\n// DO NOT EDIT THIS FILE!\n// Source: /src/browser-detection/b"
  },
  {
    "path": "src/device-detection/device-detection.d.ts",
    "chars": 381,
    "preview": "// Type definitions for device-detection submodule of UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-par"
  },
  {
    "path": "src/device-detection/device-detection.js",
    "chars": 1555,
    "preview": "/////////////////////////////////////////////////////\n/*  device-detection submodule of UAParser.js v2.0.9\n    https://g"
  },
  {
    "path": "src/device-detection/device-detection.mjs",
    "chars": 1681,
    "preview": "// Generated ESM version of ua-parser-js/device-detection\n// DO NOT EDIT THIS FILE!\n// Source: /src/device-detection/dev"
  },
  {
    "path": "src/enums/ua-parser-enums.d.ts",
    "chars": 24912,
    "preview": "// Generated type declarations of ua-parser-js/enums\n// DO NOT EDIT THIS FILE!\n// Source: /src/enums/ua-parser-enums.js\n"
  },
  {
    "path": "src/enums/ua-parser-enums.js",
    "chars": 25916,
    "preview": "///////////////////////////////////////////////\n/*  Enums for UAParser.js v2.0.9\n    https://github.com/faisalman/ua-par"
  },
  {
    "path": "src/enums/ua-parser-enums.mjs",
    "chars": 25113,
    "preview": "// Generated ESM version of ua-parser-js/enums\n// DO NOT EDIT THIS FILE!\n// Source: /src/enums/ua-parser-enums.js\n\n/////"
  },
  {
    "path": "src/extensions/ua-parser-extensions.d.ts",
    "chars": 594,
    "preview": "// Type definitions for Helpers submodule of UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-parser-js\n//"
  },
  {
    "path": "src/extensions/ua-parser-extensions.js",
    "chars": 24017,
    "preview": "///////////////////////////////////////////////\n/*  Extensions for UAParser.js v2.0.9\n    https://github.com/faisalman/u"
  },
  {
    "path": "src/extensions/ua-parser-extensions.mjs",
    "chars": 23588,
    "preview": "// Generated ESM version of ua-parser-js/extensions\n// DO NOT EDIT THIS FILE!\n// Source: /src/extensions/ua-parser-exten"
  },
  {
    "path": "src/helpers/ua-parser-helpers.d.ts",
    "chars": 1299,
    "preview": "// Type definitions for Helpers submodule of UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-parser-js\n//"
  },
  {
    "path": "src/helpers/ua-parser-helpers.js",
    "chars": 3376,
    "preview": "///////////////////////////////////////////////\n/*  Helpers for UAParser.js v2.0.9\n    https://github.com/faisalman/ua-p"
  },
  {
    "path": "src/helpers/ua-parser-helpers.mjs",
    "chars": 3492,
    "preview": "// Generated ESM version of ua-parser-js/helpers\n// DO NOT EDIT THIS FILE!\n// Source: /src/helpers/ua-parser-helpers.js\n"
  },
  {
    "path": "src/main/ua-parser.d.ts",
    "chars": 3609,
    "preview": "// Type definitions for UAParser.js v2.0.9\n// Project: https://github.com/faisalman/ua-parser-js\n// Definitions by: Fais"
  },
  {
    "path": "src/main/ua-parser.js",
    "chars": 77342,
    "preview": "/////////////////////////////////////////////////////////////////////////////////\n/* UAParser.js v2.0.9\n   Copyright © 2"
  },
  {
    "path": "src/main/ua-parser.mjs",
    "chars": 75009,
    "preview": "// Generated ESM version of ua-parser-js\n// DO NOT EDIT THIS FILE!\n// Source: /src/main/ua-parser.js\n\n//////////////////"
  },
  {
    "path": "test/data/ua/browser/browser-all.json",
    "chars": 101273,
    "preview": "[\n    {\n        \"desc\"    : \"115 Browser\",\n        \"ua\"      : \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_16_0) AppleWeb"
  },
  {
    "path": "test/data/ua/cpu/cpu-all.json",
    "chars": 9489,
    "preview": "[\n    {\n        \"desc\"    : \"i686\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:19.0) Gecko/20100101 F"
  },
  {
    "path": "test/data/ua/device/_others.json",
    "chars": 11551,
    "preview": "[\n    {\n        \"desc\": \"Generic Android Device\",\n        \"ua\": \"Dalvik/2.1.0 (Linux; U; Android 9; X96mini_RP Build/X96"
  },
  {
    "path": "test/data/ua/device/acer.json",
    "chars": 319,
    "preview": "[\n    {\n        \"desc\": \"Acer Iconia A1-810\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.2.2; A1-810 Build/JDQ39) Appl"
  },
  {
    "path": "test/data/ua/device/advan.json",
    "chars": 986,
    "preview": "[\n    {\n        \"desc\": \"Advan M4\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 6.0; ADVAN M4 Build/MRA58K; wv) AppleW"
  },
  {
    "path": "test/data/ua/device/alcatel.json",
    "chars": 860,
    "preview": "[\n    {\n        \"desc\": \"Alcatel 4056W\",\n        \"ua\": \"Mozilla/5.0 (Mobile; ALCATEL 4056W; rv:84.0) Gecko/84.0 Firefox/"
  },
  {
    "path": "test/data/ua/device/amazon.json",
    "chars": 4757,
    "preview": "[\n    {\n        \"desc\": \"Kindle Fire HD\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 4.0.3; en-us; KFTT Build/IML74K)"
  },
  {
    "path": "test/data/ua/device/anbernic.json",
    "chars": 302,
    "preview": "[\n    {\n        \"desc\": \"Anbernic\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 13; RGCUBE) AppleWebKit/537.36 (KHTML, li"
  },
  {
    "path": "test/data/ua/device/apple.json",
    "chars": 8305,
    "preview": "[\n    {\n        \"desc\": \"Apple Desktop\",\n        \"ua\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605."
  },
  {
    "path": "test/data/ua/device/archos.json",
    "chars": 8700,
    "preview": "[\n    {\n        \"desc\": \"Archos 5\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 1.6; fr-fr; Archos5 Build/Donut) Apple"
  },
  {
    "path": "test/data/ua/device/asus.json",
    "chars": 5765,
    "preview": "[\n    {\n        \"desc\": \"ASUS Nexus 7\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.4.2; Nexus 7 Build/KOT49H) AppleWeb"
  },
  {
    "path": "test/data/ua/device/blackberry.json",
    "chars": 1985,
    "preview": "[\n    {\n        \"desc\": \"BlackBerry 9650\",\n        \"ua\": \"Mozilla/5.0 (BlackBerry; U; BlackBerry 9650; en-US) AppleWebKi"
  },
  {
    "path": "test/data/ua/device/blackview.json",
    "chars": 1108,
    "preview": "[\n    {\n        \"desc\": \"Blackview BV4800 SE\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 15; BV4800 SE Build/AP3A.24090"
  },
  {
    "path": "test/data/ua/device/blu.json",
    "chars": 3807,
    "preview": "[\n    {\n        \"desc\": \"BLU Grand X LTE\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 7.0; BLU Grand X LTE Build/NRD90M)"
  },
  {
    "path": "test/data/ua/device/cat.json",
    "chars": 1237,
    "preview": "[\n    {\n        \"desc\": \"Cat B15Q\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.4.2; B15Q) AppleWebKit/537.36 (KHTML, l"
  },
  {
    "path": "test/data/ua/device/coolpad.json",
    "chars": 1471,
    "preview": "[\n    {\n        \"desc\": \"Coolpad 10A\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 11; pt-pt; Coolpad_2041 Build/RP1A."
  },
  {
    "path": "test/data/ua/device/cubot.json",
    "chars": 2114,
    "preview": "[\n    {\n        \"desc\": \"CUBOT ECHO\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0; CUBOT ECHO Build/MRA58K; wv) Apple"
  },
  {
    "path": "test/data/ua/device/energizer.json",
    "chars": 1090,
    "preview": "[\n    {\n        \"desc\": \"Energizer Energy 400\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0; Energy400 Build/MRA58K t"
  },
  {
    "path": "test/data/ua/device/facebook.json",
    "chars": 1724,
    "preview": "[\n    {\n        \"desc\": \"Oculus Quest\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 10; Quest) AppleWebKit/537.36 (KHTML,"
  },
  {
    "path": "test/data/ua/device/fairphone.json",
    "chars": 918,
    "preview": "[\n    {\n        \"desc\": \"Fairphone 1U\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 4.2.2; FP1U Build/JDQ39) AppleWebK"
  },
  {
    "path": "test/data/ua/device/google.json",
    "chars": 21903,
    "preview": "[\n    {\n        \"desc\": \"Google Chromecast with Google TV\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 12.0; Build/STTL."
  },
  {
    "path": "test/data/ua/device/hisense.json",
    "chars": 636,
    "preview": "[\n    {\n        \"desc\": \"Hisense E50 Lite\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 11; Hisense E50 Lite) AppleWebKit"
  },
  {
    "path": "test/data/ua/device/hmd.json",
    "chars": 2242,
    "preview": "[\n    {\n        \"desc\": \"HMD Barbie Phone\",\n        \"ua\": \"Mozilla/5.0 (Mobile; HMD Barbie Phone; rv:84.0) Gecko/84.0 Fi"
  },
  {
    "path": "test/data/ua/device/honor.json",
    "chars": 6576,
    "preview": "[\n    {\n        \"desc\": \"Honor MagicPad 13 WiFi\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 13; zh-CN; GDI-W09 Build"
  },
  {
    "path": "test/data/ua/device/htc.json",
    "chars": 988,
    "preview": "[\n    {\n        \"desc\": \"HTC Desire 820\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0.1; HTC Desire 820 Build/MMB29M)"
  },
  {
    "path": "test/data/ua/device/huawei.json",
    "chars": 38019,
    "preview": "[\n    {\n        \"desc\": \"Huawei Honor\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 2.3; xx-xx; U8860 Build/HuaweiU886"
  },
  {
    "path": "test/data/ua/device/imo.json",
    "chars": 1318,
    "preview": "[\n    {\n        \"desc\": \"IMO FEEL A2\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 5.1; IMO FEEL A2 Build/LMY47I; wv) App"
  },
  {
    "path": "test/data/ua/device/infinix.json",
    "chars": 3093,
    "preview": "[\n    {\n        \"desc\": \"Infinix Hot 4\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 7.0; en-us; Infinix HOT 4 Build/N"
  },
  {
    "path": "test/data/ua/device/itel.json",
    "chars": 2027,
    "preview": "[\n    {\n        \"desc\": \"itel A25\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 9; itel L5002) AppleWebKit/537.36 (KHTML,"
  },
  {
    "path": "test/data/ua/device/jolla.json",
    "chars": 289,
    "preview": "[\n    {\n        \"desc\": \"Jolla\",\n        \"ua\": \"Mozilla/5.0 (Maemo; Linux; U; Jolla; Sailfish; Mobile; rv:31.0) Gecko/31"
  },
  {
    "path": "test/data/ua/device/kobo.json",
    "chars": 600,
    "preview": "[\n    {\n        \"desc\": \"Kobo eReader\",\n        \"ua\": \"Mozilla/5.0 (Unknown; Linux) AppleWebKit/538.1 (KHTML, like Gecko"
  },
  {
    "path": "test/data/ua/device/lava.json",
    "chars": 4373,
    "preview": "[\n    {\n        \"desc\": \"Lava Agni 2 5G\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 14; LAVA LXX504 Build/UP1A.231005.0"
  },
  {
    "path": "test/data/ua/device/lenovo.json",
    "chars": 43180,
    "preview": "[    \n    {\n        \"desc\": \"Lenovo A7\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 9; en-US; Lenovo L19111 Build/PPR"
  },
  {
    "path": "test/data/ua/device/lg.json",
    "chars": 7819,
    "preview": "[\n    {\n        \"desc\": \"LG V40 ThinQ\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 9; LM-V405) AppleWebKit/537.36 (KHTML"
  },
  {
    "path": "test/data/ua/device/logitech.json",
    "chars": 249,
    "preview": "[\n    {\n        \"desc\": \"Logitech\",\n        \"ua\": \"Dalvik/2.1.0 (Linux; U; Android 11; GR0006 Build/SQ02K.00.0018)\",\n   "
  },
  {
    "path": "test/data/ua/device/meizu.json",
    "chars": 745,
    "preview": "[\n    {\n        \"desc\": \"Meizu M5 Note\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0; M5 Note Build/MRA58K; wv) Apple"
  },
  {
    "path": "test/data/ua/device/micromax.json",
    "chars": 1159,
    "preview": "[\n\n    {\n        \"desc\": \"Micromax Bharat 2 Plus\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 7.0; en-US; Micromax Q4"
  },
  {
    "path": "test/data/ua/device/microsoft.json",
    "chars": 1544,
    "preview": "[\n    {\n        \"desc\": \"Microsoft Lumia 950\",\n        \"ua\": \"Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft;"
  },
  {
    "path": "test/data/ua/device/motorola.json",
    "chars": 11717,
    "preview": "[\n    {\n        \"desc\": \"Motorola Defy XT\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; XT555C Build/V1."
  },
  {
    "path": "test/data/ua/device/nintendo.json",
    "chars": 1397,
    "preview": "[\n    {\n        \"desc\": \"Nintendo Switch\",\n        \"ua\": \"Mozilla/5.0 (Nintendo Switch; WifiWebAuthApplet) AppleWebKit/6"
  },
  {
    "path": "test/data/ua/device/nokia.json",
    "chars": 4211,
    "preview": "[\n    {\n        \"desc\": \"Nokia 1\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 10; Nokia 1 Build/QP1A.190711.020) AppleWe"
  },
  {
    "path": "test/data/ua/device/nothing.json",
    "chars": 2452,
    "preview": "[\n    {\n        \"desc\": \"Nothing 1\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 13; A063) AppleWebKit/537.36 (KHTML, lik"
  },
  {
    "path": "test/data/ua/device/nvidia.json",
    "chars": 1662,
    "preview": "[\n    {\n        \"desc\": \"Tegra Note 7\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 5.1; TegraNote-P1640 Build/LMY47D) Ap"
  },
  {
    "path": "test/data/ua/device/oneplus.json",
    "chars": 13275,
    "preview": "[\n    {\n        \"desc\": \"OnePlus One\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.4.4; A0001 Build/KTU84Q) AppleWebKit"
  },
  {
    "path": "test/data/ua/device/oppo.json",
    "chars": 5921,
    "preview": "[\n    {\n        \"desc\": \"OPPO Pad\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 13; zh-CN; OPD2101 Build/TP1A.220905.0"
  },
  {
    "path": "test/data/ua/device/ouya.json",
    "chars": 320,
    "preview": "[\n    {\n        \"desc\": \"Ouya\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.1.2; OUYA Console Build/JZO54L-OUYA) AppleW"
  },
  {
    "path": "test/data/ua/device/panasonic.json",
    "chars": 1486,
    "preview": "[\n    {\n        \"desc\": \"Panasonic T31\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 4.2.2; Panasonic T31 Build/JDQ39) Ap"
  },
  {
    "path": "test/data/ua/device/philips.json",
    "chars": 3094,
    "preview": "[\n    {\n        \"desc\": \"Philips S616\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 5.1; Philips S616 Build/LMY47D) Apple"
  },
  {
    "path": "test/data/ua/device/pico.json",
    "chars": 1733,
    "preview": "[\n    {\n        \"desc\": \"Pico 4\",\n        \"ua\": \"Mozilla/5.0 (X11; Linux x86_64; PICO 4 OS5.8.2 like Quest) AppleWebKit/"
  },
  {
    "path": "test/data/ua/device/polytron.json",
    "chars": 1472,
    "preview": "[\n    {\n        \"desc\": \"Polytron Prime 7 Pro\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 7.0; POLYTRON_P552 Build/N"
  },
  {
    "path": "test/data/ua/device/realme.json",
    "chars": 2503,
    "preview": "[\n    {\n        \"desc\": \"Realme C1\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 8.1; RMX1811 Build/OPM1.171019.026) Appl"
  },
  {
    "path": "test/data/ua/device/retroid.json",
    "chars": 373,
    "preview": "[\n    {\n        \"desc\": \"Retroid Pocket 4 Pro\",\n        \"ua\": \"Mozilla/5.0 (Linux; arm_64; Android 13; Retroid Pocket 4 "
  },
  {
    "path": "test/data/ua/device/roku.json",
    "chars": 785,
    "preview": "[\n    {\n        \"desc\": \"Roku\",\n        \"ua\": \"Mozilla/5.0 (Roku) AppleWebKit/537.36 (KHTML, like Gecko) Web/1.1 Safari/"
  },
  {
    "path": "test/data/ua/device/samsung.json",
    "chars": 14300,
    "preview": "[\n    {\n        \"desc\": \"Samsung Galaxy A21s\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-A217F) AppleWeb"
  },
  {
    "path": "test/data/ua/device/sharp.json",
    "chars": 1857,
    "preview": "[\n    {\n        \"desc\": \"Sharp AQUOS-TVX19B\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 9; AQUOS-TVX19B) AppleWebKit/53"
  },
  {
    "path": "test/data/ua/device/smartfren.json",
    "chars": 1039,
    "preview": "[\n    {\n        \"desc\": \"Smartfren Andromax L\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0.1; Andromax B26D2H) Apple"
  },
  {
    "path": "test/data/ua/device/sony.json",
    "chars": 9485,
    "preview": "[\n    {\n        \"desc\": \"SONY Xperia 1 III\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 11; A101SO) AppleWebKit/537.36 ("
  },
  {
    "path": "test/data/ua/device/t-mobile.json",
    "chars": 1170,
    "preview": "[\n    {\n        \"desc\": \"T-Mobile REVVL 7 5G\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 14; TMRV075G Build/UKQ1.230924"
  },
  {
    "path": "test/data/ua/device/tcl.json",
    "chars": 17556,
    "preview": "[\n    {\n        \"desc\": \"TCL 10 5G\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 11; T790Y) AppleWebKit/537.36 (KHTML, li"
  },
  {
    "path": "test/data/ua/device/technisat.json",
    "chars": 665,
    "preview": "[\n    {\n        \"desc\": \"TechniSAT Digit ISIO S SAT receiver\",\n        \"ua\": \"Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;"
  },
  {
    "path": "test/data/ua/device/tecno.json",
    "chars": 1605,
    "preview": "[\n    {\n        \"desc\": \"Tecno DroiPad 8D\",\n        \"ua\": \"Mozilla/5.0 (Linux; U; Android 5.1; TECNO DP8D Build/LMY47D; "
  },
  {
    "path": "test/data/ua/device/tesla.json",
    "chars": 620,
    "preview": "[\n    {\n        \"desc\": \"Tesla\",\n        \"ua\": \"Mozilla/5.0 (X11; GNU/Linux) AppleWebKit/601.1 (KHTML, like Gecko) Tesla"
  },
  {
    "path": "test/data/ua/device/ulefone.json",
    "chars": 3560,
    "preview": "[\n    {\n        \"desc\": \"Ulefone Armor\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 6.0; Armor Build/MRA58K) AppleWebKit"
  },
  {
    "path": "test/data/ua/device/valve.json",
    "chars": 349,
    "preview": "[\n    {\n        \"desc\": \"Valve\",\n        \"ua\": \"Mozilla/5.0 (X11; Linux x86_64; Valve Steam Client/Steam Deck [Steam Dec"
  },
  {
    "path": "test/data/ua/device/vivo.json",
    "chars": 2645,
    "preview": "[\n    {\n        \"desc\": \"Vivo S1 Pro\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 11; vivo 1920) AppleWebKit/537.36 (KHT"
  },
  {
    "path": "test/data/ua/device/vizio.json",
    "chars": 631,
    "preview": "[\n    {\n        \"desc\": \"VIZIO\",\n        \"ua\": \"Mozilla/5.0 (X11; Linux armv7l) AppleWebKit/537.36 (KHTML, like Gecko) C"
  },
  {
    "path": "test/data/ua/device/wiko.json",
    "chars": 937,
    "preview": "[\n    {\n        \"desc\": \"Wiko Life 3\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 11; Wiko U316AT) AppleWebKit/537.36 (K"
  },
  {
    "path": "test/data/ua/device/xiaomi.json",
    "chars": 26606,
    "preview": "[\n    {\n        \"desc\": \"MIUI Xiaomi Mi MIX 3 5G\",\n        \"ua\": \"Dalvik/2.1.0 (Linux; U; Android 9; Mi MIX 3 5G MIUI/V1"
  },
  {
    "path": "test/data/ua/device/zte.json",
    "chars": 362,
    "preview": "[\n    {\n        \"desc\": \"ZTE Blade A6\",\n        \"ua\": \"Mozilla/5.0 (Linux; Android 7.1.1; ZTE BLADE A0620 Build/NMF26F; "
  },
  {
    "path": "test/data/ua/engine/engine-all.json",
    "chars": 5968,
    "preview": "[\n    {\n        \"desc\"    : \"ArkWeb\",\n        \"ua\"      : \"Mozilla/5.0 (Phone; OpenHarmony 4.1) AppleWebKit/537.36 (KHTM"
  },
  {
    "path": "test/data/ua/extension/cli.json",
    "chars": 2201,
    "preview": "[\n    {\n        \"desc\"    : \"curl\",\n        \"ua\"      : \"curl/7.38.0\",\n        \"expect\"  :\n        {\n            \"name\" "
  },
  {
    "path": "test/data/ua/extension/crawler.json",
    "chars": 51962,
    "preview": "[\n    {\n        \"desc\"    : \"360Spider\",\n        \"ua\"      : \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident"
  },
  {
    "path": "test/data/ua/extension/email.json",
    "chars": 15858,
    "preview": "[\n    {\n        \"desc\": \"Airmail\",\n        \"ua\": \"Airmail 1.0 rv:148 (Macintosh; Mac OS X 10.8.3; en_BE)\",\n        \"expe"
  },
  {
    "path": "test/data/ua/extension/extra-devices.json",
    "chars": 11119,
    "preview": "[{\n    \"desc\": \"Essential PH-1\",\n    \"ua\": \"Mozilla/5.0 (Linux; Android 9; PH-1 Build/PPR1.180905.036) AppleWebKit/537.3"
  },
  {
    "path": "test/data/ua/extension/fetcher.json",
    "chars": 19475,
    "preview": "[\n    {\n        \"desc\"    : \"AhrefsSiteAudit\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 ("
  },
  {
    "path": "test/data/ua/extension/inapp.json",
    "chars": 7357,
    "preview": "[\n    {\n        \"desc\"    : \"Discord on Linux\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 "
  },
  {
    "path": "test/data/ua/extension/library.json",
    "chars": 8394,
    "preview": "[\n    {\n        \"desc\"    : \"AdobeAIR\",\n        \"ua\"      : \"Mozilla/5.0 (Windows; U; en-US) AppleWebKit/533.19.4 (KHTML"
  },
  {
    "path": "test/data/ua/extension/mediaplayer.json",
    "chars": 13615,
    "preview": "[\n    {\n        \"desc\"    : \"Coremedia\",\n        \"ua\"      : \"Apple Mac OS X v10.6.4 CoreMedia v1.0.0.10F2108\",\n        "
  },
  {
    "path": "test/data/ua/extension/vehicle.json",
    "chars": 1951,
    "preview": "[\n    {\n        \"desc\"    : \"BMW\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; Android 9; AFTLBT962E2) AppleWebKit/537.36 ("
  },
  {
    "path": "test/data/ua/os/aix.json",
    "chars": 1042,
    "preview": "[\n    {\n        \"desc\"    : \"AIX\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; AIX 000138384C00; en-US; rv:1.0.1) Gecko/20"
  },
  {
    "path": "test/data/ua/os/amigaos.json",
    "chars": 227,
    "preview": "[\n    {\n        \"desc\"    : \"AmigaOS\",\n        \"ua\"      : \"Mozilla/4.0 (compatible; AWEB 3.4 SE; AmigaOS)\",\n        \"ex"
  },
  {
    "path": "test/data/ua/os/android-x86.json",
    "chars": 334,
    "preview": "[\n    {\n        \"desc\"    : \"Android-x86\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; Android 7.1.2; Generic Android-x86) "
  },
  {
    "path": "test/data/ua/os/android.json",
    "chars": 755,
    "preview": "[\n    {\n        \"desc\"    : \"Android\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; U; Android 2.2.2; en-us; VM670 Build/FRG"
  },
  {
    "path": "test/data/ua/os/arcaos.json",
    "chars": 497,
    "preview": "[\n    {\n        \"desc\"    : \"ArcaOS\",\n        \"ua\"      : \"Mozilla/5.0 (OS/2; ArcaOS 5.0.6; x86_64; rv:89.0) Gecko/20100"
  },
  {
    "path": "test/data/ua/os/arch.json",
    "chars": 736,
    "preview": "[\n    {\n        \"desc\"    : \"Arch\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Arch Linux i686; rv:2.0) Gecko/20100101 Firef"
  },
  {
    "path": "test/data/ua/os/bada.json",
    "chars": 321,
    "preview": "[\n    {\n        \"desc\"    : \"Bada\",\n        \"ua\"      : \"Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S5253/S5253DDKC1; U; Bada/1.0;"
  },
  {
    "path": "test/data/ua/os/beos.json",
    "chars": 263,
    "preview": "[\n    {\n        \"desc\"    : \"BeOS\",\n        \"ua\"      : \"Mozilla/5.0 (BeOS; U; BeOS BePC; en-US; rv:1.8.1.8pre) Gecko/20"
  },
  {
    "path": "test/data/ua/os/blackberry.json",
    "chars": 549,
    "preview": "[\n    {\n        \"desc\"    : \"BlackBerry\",\n        \"ua\"      : \"BlackBerry9300/5.0.0.912 Profile/MIDP-2.1 Configuration/C"
  },
  {
    "path": "test/data/ua/os/centos.json",
    "chars": 215,
    "preview": "[\n    {\n        \"desc\"    : \"CentOS\",\n        \"ua\"      : \"Konqueror/15.13 (CentOS Linux 7.4; cs-CZ;)\",\n        \"expect\""
  },
  {
    "path": "test/data/ua/os/chrome-os.json",
    "chars": 584,
    "preview": "[\n    {\n        \"desc\"    : \"Chrome OS\",\n        \"ua\"      : \"Mozilla/5.0 (X11; CrOS x86_64) AppleWebKit/537.36 (KHTML, "
  },
  {
    "path": "test/data/ua/os/chromecast-android.json",
    "chars": 379,
    "preview": "[\n    {\n        \"desc\"    : \"Google Chromecast with Google TV\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; Android 12.0; B"
  },
  {
    "path": "test/data/ua/os/chromecast-fuchsia.json",
    "chars": 322,
    "preview": "[\n    {\n        \"desc\"    : \"Google Chromecast Nest Hub\",\n        \"ua\"      : \"Mozilla/5.0 (Fuchsia) AppleWebKit/537.36 "
  },
  {
    "path": "test/data/ua/os/chromecast-linux.json",
    "chars": 344,
    "preview": "[\n    {\n        \"desc\"    : \"Google Chromecast Legacy Linux-Based\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux aarch64"
  },
  {
    "path": "test/data/ua/os/chromecast-smartspeaker.json",
    "chars": 375,
    "preview": "[\n    {\n        \"desc\"    : \"Google Chromecast Mini Smart Speaker\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux armv7l)"
  },
  {
    "path": "test/data/ua/os/contiki.json",
    "chars": 235,
    "preview": "[\n    {\n        \"desc\"    : \"Contiki\",\n        \"ua\"      : \"Contiki/1.0 (Commodore 64; http://dunkels.com/adam/contiki/)"
  },
  {
    "path": "test/data/ua/os/debian.json",
    "chars": 1863,
    "preview": "[\n    {\n        \"desc\"    : \"Debian\",\n        \"ua\"      : \"Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.7 (l"
  },
  {
    "path": "test/data/ua/os/deepin.json",
    "chars": 313,
    "preview": "[\n    {\n        \"desc\"    : \"Deepin\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux x86_64; Deepin 15.5) AppleWebKit/537."
  },
  {
    "path": "test/data/ua/os/dragonfly.json",
    "chars": 264,
    "preview": "[\n    {\n        \"desc\"    : \"DragonFly\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; DragonFly i386; de; rv:1.9.1) Gecko/2"
  },
  {
    "path": "test/data/ua/os/elementary-os.json",
    "chars": 324,
    "preview": "[\n    {\n        \"desc\"    : \"elementary OS\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/604.1 (KHT"
  },
  {
    "path": "test/data/ua/os/fedora.json",
    "chars": 796,
    "preview": "[\n    {\n        \"desc\"    : \"Fedora\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:40.0) Gecko/201001"
  },
  {
    "path": "test/data/ua/os/firefox-os.json",
    "chars": 2284,
    "preview": "[\n    {\n        \"desc\"    : \"Firefox OS\",\n        \"ua\"      : \"Mozilla/5.0 (Mobile; rv:14.0) Gecko/14.0 Firefox/14.0\",\n "
  },
  {
    "path": "test/data/ua/os/freebsd.json",
    "chars": 604,
    "preview": "[\n    {\n        \"desc\"    : \"FreeBSD\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; FreeBSD x86_64; en-US) AppleWebKit/534."
  },
  {
    "path": "test/data/ua/os/fuchsia.json",
    "chars": 702,
    "preview": "[\n    {\n        \"desc\"    : \"Fuchsia\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Fuchsia x86_64) AppleWebKit/537.36 (KHTML,"
  },
  {
    "path": "test/data/ua/os/gentoo.json",
    "chars": 944,
    "preview": "[\n\n    {\n        \"desc\"    : \"Gentoo\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.16) Gecko/2"
  },
  {
    "path": "test/data/ua/os/ghostbsd.json",
    "chars": 259,
    "preview": "[\n    {\n        \"desc\"    : \"GhostBSD\",\n        \"ua\"      : \"Mozilla/5.0 (X11; GhostBSD/10.3; x86_64; rv:50.0.1) Gecko/2"
  },
  {
    "path": "test/data/ua/os/haiku.json",
    "chars": 1112,
    "preview": "[\n    {\n        \"desc\"    : \"Haiku\",\n        \"ua\"      : \"Mozilla/5.0 (Macintosh; Intel Haiku R1 x86) AppleWebKit/602.1."
  },
  {
    "path": "test/data/ua/os/harmonyos.json",
    "chars": 2292,
    "preview": "[\n    {\n        \"desc\"    : \"HarmonyOS\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; Android 10; HarmonyOS; YAL-AL10; HMSCo"
  },
  {
    "path": "test/data/ua/os/hp-ux.json",
    "chars": 258,
    "preview": "[\n    {\n        \"desc\"    : \"HP-UX\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; HP-UX 9000/785; es-ES; rv:1.0.1) Gecko/20"
  },
  {
    "path": "test/data/ua/os/hurd.json",
    "chars": 263,
    "preview": "[\n    {\n        \"desc\"    : \"Hurd\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Hurd 0.9 i386; en-US) libwww-FM/2.14 SSL-MM/1"
  },
  {
    "path": "test/data/ua/os/ios.json",
    "chars": 5384,
    "preview": "[\n    {\n        \"desc\"    : \"iOS 18.6\",\n        \"ua\"      : \"Mozilla/5.0 (iPhone; CPU iPhone OS 18_6 like Mac OS X) Appl"
  },
  {
    "path": "test/data/ua/os/joli.json",
    "chars": 311,
    "preview": "[\n    {\n        \"desc\"    : \"Joli\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Jolicloud Linux i686) AppleWebKit/537.6 (KHTM"
  },
  {
    "path": "test/data/ua/os/kaios.json",
    "chars": 249,
    "preview": "[\n    {\n        \"desc\"    : \"KaiOS\",\n        \"ua\"      : \"Mozilla/5.0 (Mobile; Nokia_8110_4G; rv:48.0) Gecko/48.0 Firefo"
  },
  {
    "path": "test/data/ua/os/knoppix.json",
    "chars": 285,
    "preview": "[\n    {\n        \"desc\"    : \"Knoppix\",\n        \"ua\"      : \"Mozilla/5.0 (Knoppix; Linux x86_64) AppleWebKit/537.36 (KHTM"
  },
  {
    "path": "test/data/ua/os/kubuntu.json",
    "chars": 543,
    "preview": "[\n    {\n        \"desc\"    : \"Kubuntu\",\n        \"ua\"      : \"Mozilla/5.0 (compatible; Konqueror/4.4; Linux 2.6.32-22-gene"
  },
  {
    "path": "test/data/ua/os/linpus.json",
    "chars": 263,
    "preview": "[\n    {\n        \"desc\"    : \"Linpus\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9b5pre) Gecko/20"
  },
  {
    "path": "test/data/ua/os/linspire.json",
    "chars": 280,
    "preview": "[\n    {\n        \"desc\"    : \"Linspire\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/2"
  },
  {
    "path": "test/data/ua/os/linux.json",
    "chars": 541,
    "preview": "[\n    {\n        \"desc\"    : \"Linux\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, lik"
  },
  {
    "path": "test/data/ua/os/macos.json",
    "chars": 1098,
    "preview": "[\n    {\n        \"desc\"    : \"Mac OS on PowerPC\",\n        \"ua\"      : \"Mozilla/4.0 (compatible; MSIE 5.0b1; Mac_PowerPC)\""
  },
  {
    "path": "test/data/ua/os/maemo.json",
    "chars": 967,
    "preview": "[\n    {\n        \"desc\"    : \"Nokia N900 Linux mobile, on the Fennec browser\",\n        \"ua\"      : \"Mozilla/5.0 (Maemo; L"
  },
  {
    "path": "test/data/ua/os/mandriva.json",
    "chars": 323,
    "preview": "[\n    {\n        \"desc\"    : \"Mandriva\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.22) Gecko/"
  },
  {
    "path": "test/data/ua/os/manjaro.json",
    "chars": 259,
    "preview": "[\n    {\n        \"desc\"    : \"Manjaro\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Manjaro 19.0.2; Arch; x64; rv:84.0) Gecko/"
  },
  {
    "path": "test/data/ua/os/meego.json",
    "chars": 284,
    "preview": "[\n    {\n        \"desc\"    : \"MeeGo\",\n        \"ua\"      : \"Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 (KHTML, like G"
  },
  {
    "path": "test/data/ua/os/minix.json",
    "chars": 219,
    "preview": "[\n    {\n        \"desc\"    : \"Minix\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Original ; Minix 3.3 ; rv:3.0)\",\n        \"ex"
  },
  {
    "path": "test/data/ua/os/mint.json",
    "chars": 3654,
    "preview": "[\n    {\n        \"desc\"    : \"Mint\",\n        \"ua\"      : \"Opera/9.80 (X11; Linux x86_64; Edition Linux Mint) Presto/2.12."
  },
  {
    "path": "test/data/ua/os/morphos.json",
    "chars": 1069,
    "preview": "[\n    {\n        \"desc\"    : \"MorphOS\",\n        \"ua\"      : \"AmigaVoyager/3.4.4 (MorphOS/PPC native)\",\n        \"expect\"  "
  },
  {
    "path": "test/data/ua/os/netbsd.json",
    "chars": 229,
    "preview": "[\n    {\n        \"desc\"    : \"NetBSD\",\n        \"ua\"      : \"ELinks (0.4.3; NetBSD 3.0.2PATCH sparc64; 141x19)\",\n        \""
  },
  {
    "path": "test/data/ua/os/netrange.json",
    "chars": 438,
    "preview": "[\n    {\n        \"desc\"    : \"Netrange Smart TV\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; U) AppleWebKit/537.36 (KHTML, "
  },
  {
    "path": "test/data/ua/os/nettv.json",
    "chars": 295,
    "preview": "[\n    {\n        \"desc\"    : \"NetTV 3.2.1\",\n        \"ua\"      : \"Opera/9.80 (Linux mips ; U; HbbTV/1.1.1 (; Philips; ; ; "
  },
  {
    "path": "test/data/ua/os/nintendo.json",
    "chars": 315,
    "preview": "[\n    {\n        \"desc\"    : \"Nintendo Switch\",\n        \"ua\"      : \"Mozilla/5.0 (Nintendo Switch; WifiWebAuthApplet) App"
  },
  {
    "path": "test/data/ua/os/openbsd.json",
    "chars": 259,
    "preview": "[\n    {\n        \"desc\"    : \"OpenBSD\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; OpenBSD i386; en-US; rv:1.9.1) Gecko/20"
  },
  {
    "path": "test/data/ua/os/openharmony.json",
    "chars": 311,
    "preview": "[\n    {\n        \"desc\"    : \"OpenHarmony\",\n        \"ua\"      : \"Mozilla/5.0 (Phone; OpenHarmony 4.1) AppleWebKit/537.36 "
  },
  {
    "path": "test/data/ua/os/os2.json",
    "chars": 730,
    "preview": "[\n    {\n        \"desc\"    : \"OS/2\",\n        \"ua\"      : \"Links (2.1pre14; OS/2 1 i386; 80x33)\",\n        \"expect\"  :\n    "
  },
  {
    "path": "test/data/ua/os/palm.json",
    "chars": 229,
    "preview": "[\n    {\n        \"desc\"    : \"Palm OS\",\n        \"ua\"      : \"Mozilla/4.76 [en] (PalmOS; U; WebPro3.0; Palm-Arz1)\",\n      "
  },
  {
    "path": "test/data/ua/os/pclinuxos.json",
    "chars": 314,
    "preview": "[\n    {\n        \"desc\"    : \"PCLinuxOS\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko"
  },
  {
    "path": "test/data/ua/os/pico.json",
    "chars": 955,
    "preview": "[\n    {\n        \"desc\": \"Pico 4\",\n        \"ua\": \"Mozilla/5.0 (X11; Linux x86_64; PICO 4 OS5.8.2 like Quest) AppleWebKit/"
  },
  {
    "path": "test/data/ua/os/plan9.json",
    "chars": 204,
    "preview": "[\n    {\n        \"desc\"    : \"Plan9\",\n        \"ua\"      : \"NCSA_Mosaic/5.0 (X11;Plan 9 4.0)\",\n        \"expect\"  :\n       "
  },
  {
    "path": "test/data/ua/os/playstation.json",
    "chars": 511,
    "preview": "[\n    {\n        \"desc\"    : \"PlayStation 4\",\n        \"ua\"      : \"Mozilla/5.0 (PlayStation 4 3.00) AppleWebKit/537.73 (K"
  },
  {
    "path": "test/data/ua/os/qnx.json",
    "chars": 259,
    "preview": "[\n    {\n        \"desc\"    : \"QNX\",\n        \"ua\"      : \"Mozilla/5.0 (Photon; U; QNX x86pc; en-US; rv:1.8.1.20) Gecko/200"
  },
  {
    "path": "test/data/ua/os/raspbian.json",
    "chars": 646,
    "preview": "[\n    {\n        \"desc\"    : \"Raspbian\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux armv7l) AppleWebKit/537.36 (KHTML, "
  },
  {
    "path": "test/data/ua/os/redhat.json",
    "chars": 1161,
    "preview": "[\n    {\n        \"desc\"    : \"RedHat\",\n        \"ua\"      : \"Mozilla/5.0 (compatible; Konqueror/4.3; Linux) KHTML/4.3.4 (l"
  },
  {
    "path": "test/data/ua/os/rim-tablet-os.json",
    "chars": 310,
    "preview": "[\n    {\n        \"desc\"    : \"RIM Tablet OS\",\n        \"ua\"      : \"Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.1.0; en-US) "
  },
  {
    "path": "test/data/ua/os/risc-os.json",
    "chars": 234,
    "preview": "[\n    {\n        \"desc\"    : \"RISC OS\",\n        \"ua\"      : \"Mozilla/1.10 [en] (Compatible; RISC OS 3.70; Oregano 1.10)\","
  },
  {
    "path": "test/data/ua/os/sabayon.json",
    "chars": 291,
    "preview": "[\n    {\n        \"desc\"    : \"Sabayon\",\n        \"ua\"      : \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, li"
  },
  {
    "path": "test/data/ua/os/sailfish.json",
    "chars": 274,
    "preview": "[\n    {\n        \"desc\"    : \"Sailfish\",\n        \"ua\"      : \"Mozilla/5.0 (Linux; U; Sailfish 3.0; Mobile; rv:45.0) Gecko"
  },
  {
    "path": "test/data/ua/os/serenityos.json",
    "chars": 259,
    "preview": "[\n    {\n        \"desc\"    : \"SerenityOS\",\n        \"ua\"      : \"Mozilla/4.0 (SerenityOS; x86) LibWeb+LibJS (Not KHTML, no"
  },
  {
    "path": "test/data/ua/os/series40.json",
    "chars": 303,
    "preview": "[\n    {\n        \"desc\"    : \"Series40\",\n        \"ua\"      : \"Mozilla/5.0 (Series40; Nokia2055/03.20; Profile/MIDP-2.1 Co"
  },
  {
    "path": "test/data/ua/os/slackware.json",
    "chars": 295,
    "preview": "[\n    {\n        \"desc\"    : \"Slackware\",\n        \"ua\"      : \"Mozilla/5.0 Slackware/13.37 (X11; U; Linux x86_64; en-US) "
  },
  {
    "path": "test/data/ua/os/solaris.json",
    "chars": 1204,
    "preview": "[\n    {\n        \"desc\"    : \"Solaris\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.7) Gecko/20070"
  },
  {
    "path": "test/data/ua/os/suse.json",
    "chars": 530,
    "preview": "[\n    {\n        \"desc\"    : \"OpenSUSE\",\n        \"ua\"      : \"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Geck"
  },
  {
    "path": "test/data/ua/os/symbian.json",
    "chars": 2301,
    "preview": "[\n    {\n        \"desc\"    : \"Nokia 5250\",\n        \"ua\"      : \"Nokia5250/10.0.011 (SymbianOS/9.4; U; Series60/5.0 Mozill"
  }
]

// ... and 31 more files (download for full content)

About this extraction

This page contains the full source code of the faisalman/ua-parser-js GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 231 files (1.2 MB), approximately 398.1k tokens, and a symbol index with 80 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!