{
  "bomFormat": "CycloneDX",
  "specVersion": "1.6",
  "serialNumber": "urn:uuid:89e558b9-37d4-4974-b111-2dbd7baf12e7",
  "version": 1,
  "metadata": {
    "timestamp": "2026-02-13T12:32:21.1221Z",
    "component": {
      "type": "firmware",
      "supplier": {
        "name": "Hanwha Vision Co., Ltd.",
        "url": [
          "https://www.hanwhavision.com"
        ]
      },
      "author": "Hanwha Vision Co., Ltd.",
      "name": "Wisenet Platform",
      "publisher": "Hanwha Vision Co., Ltd.",
      "copyright": "Hanwha Vision Co., Ltd."
    },
    "manufacture": {
      "name": "Hanwha Vision Co., Ltd.",
      "url": [
        "https://www.hanwhavision.com"
      ]
    },
    "supplier": {
      "name": "Hanwha Vision Co., Ltd.",
      "url": [
        "https://www.hanwhavision.com"
      ]
    }
  },
  "components": [
    {
      "name": "FlatBuffers",
      "bom-ref": "FlatBuffers",
      "type": "library",
      "version": "23.5.26",
      "copyright": "Copyright (c) 2014-2015, 2017, 2021-2023 Google Inc.",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/flatbuffers-devel@23.5.26-6.fc40?arch=aarch64",
      "description": "Efficient cross platform serialization library originally created at Google for game development and other performance-critical applications.",
      "supplier": {
        "url": [
          "http://google.github.io/flatbuffers/"
        ]
      }
    },
    {
      "name": "goToMain/c-utils",
      "bom-ref": "goToMain/c-utils",
      "type": "library",
      "version": "20240309-snapshot-d295048d",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:github/gotomain/c-utils@d295048d0362674e2a4b489b689d029b8f1f3d01",
      "supplier": {
        "url": [
          "https://github.com/goToMain/c-utils"
        ]
      }
    },
    {
      "name": "libosdp",
      "bom-ref": "libosdp",
      "type": "library",
      "version": "3.0.0",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "description": "# Python3 Bindings for LibOSDP\r\n\r\nThis is an initial effort at enabling python3 support for LibOSDP. This document\r\nassumes that you are already familiar with [LibOSDP API][1] and device life\r\ncycle management.\r\n\r\n## Build/Install\r\n\r\nA python module `osdp` and classes `ControlPanel` and `PeripheralDevice` are\r\nmade available when the sources of this directory is built and installed.\r\n\r\nAfter cloning this repo (with `--recurse-submodules`), you can do the following\r\n(from the repo root) to build the python module.\r\n\r\n```bash\r\nmkdir build && cd build\r\ncmake ..\r\nmake python\r\nmake python_install\r\n```\r\n\r\nIf you want to undo this install, you can run `make python_uninstall`.\r\n\r\n## How to use this module?\r\n\r\n### Control Panel Mode\r\n\r\n```python\r\nimport osdp\r\n\r\n## Master key for secure channel\r\nkey = '01020304050607080910111213141516'\r\n\r\n## populate osdp_pd_info_t from python\r\npd_info = [\r\n    {\r\n        \"address\": 101,\r\n        \"channel_type\": \"uart\",\r\n        \"channel_speed\": 115200,\r\n        \"channel_device\": '/dev/ttyUSB0',\r\n    },\r\n    {\r\n        \"address\": 102,\r\n        \"channel_type\": \"uart\",\r\n        \"channel_speed\": 115200,\r\n        \"channel_device\": '/dev/ttyUSB1',\r\n    }\r\n]\r\n\r\n## Setup OSDP device in Control Panel mode\r\ncp = osdp.ControlPanel(pd_info, master_key=key)\r\n\r\n## call this refresh method once every 50ms\r\ncp.refresh()\r\n\r\n## create and output command\r\noutput_cmd = {\r\n    \"command\": osdp.CMD_OUTPUT,\r\n    \"output_no\": 0,\r\n    \"control_code\": 1,\r\n    \"timer_count\": 10\r\n}\r\n\r\n## send a output command to PD-1\r\ncp.send_command(1, output_cmd)\r\n```\r\n\r\nsee [samples/cp_app.py][2] for more details.\r\n\r\n### Peripheral Device mode:\r\n\r\n```python\r\n## Describe the PD\r\npd_info = {\r\n    \"address\": 101,\r\n    \"channel_type\": \"uart\",\r\n    \"channel_speed\": 115200,\r\n    \"channel_device\": '/dev/ttyUSB0',\r\n\r\n    \"version\": 1,\r\n    \"model\": 1,\r\n    \"vendor_code\": 0xCAFEBABE,\r\n    \"serial_number\": 0xDEADBEAF,\r\n    \"firmware_version\": 0x0000F00D\r\n}\r\n\r\n## Indicate the PD's capabilities to LibOSDP.\r\npd_cap = [\r\n    {\r\n        # PD is capable of handling output commands\r\n        \"function_code\": osdp.CAP_OUTPUT_CONTROL,\r\n        \"compliance_level\": 1,\r\n        \"num_items\": 1\r\n    },\r\n]\r\n\r\n## Setup OSDP device in Peripheral Device mode\r\npd = osdp.PeripheralDevice(pd_info, capabilities=pd_cap)\r\n\r\n## call this refresh method periodically (at lease once every 50ms)\r\npd.refresh()\r\n\r\n## Define a callback handler. Must return 0 on success, -ve on failures.\r\ndef handle_command(address, command):\r\n    if address != pd_info['address']:\r\n        return { \"return_code\": -1 }\r\n    print(\"PD received command: \", command)\r\n    return { \"return_code\": 0 }\r\n\r\n## Set a handler for incoming commands from CP\r\npd.set_command_callback(handle_command)\r\n```\r\n\r\nsee [samples/pd_app.py][3] for more details.\r\n\r\n[1]: https://libosdp.sidcha.dev/api/\r\n[2]: https://github.com/goToMain/libosdp/blob/master/samples/python/cp_app.py\r\n[3]: https://github.com/goToMain/libosdp/blob/master/samples/python/pd_app.py\r\n",
      "supplier": {
        "url": [
          "https://github.com/goToMain/libosdp"
        ]
      }
    },
    {
      "name": "clipper",
      "bom-ref": "clipper",
      "type": "library",
      "version": "6.4.2",
      "copyright": "Copyright (c) 2010-2017 Angus Johnson\nCopyright (c) 2004-2010 Alex Gorbatchev.\nCopyright (c) 2006 Shin, YoungJin",
      "licenses": [
        {
          "license": {
            "name": "Boost Software License 1.0"
          }
        }
      ],
      "description": "Clipper performs boolean clipping (intersection, union, difference &amp; xor) on 2D polygons. There's no restriction on either the number nor the types of polygon that can be clipped. They can be self-intersecting and even have coincident edges.",
      "supplier": {
        "url": [
          "http://www.angusj.com/delphi/clipper.php"
        ]
      }
    },
    {
      "name": "nginx",
      "bom-ref": "nginx",
      "type": "library",
      "version": "1.28.1",
      "copyright": "Copyright (c) 2011-2022 Nginx, Inc.\nCopyright (c) 2002-2021 Igor Sysoev \nCopyright (C) 2008 Manlio Perillo (manlio.perillo@gmail.com) \nCopyright (c) 2015 Vlad Krasno\nCopyright (c) Austin Applebyv\nCopyright (c) Maxim Dounin\nCopyright (c) Pavel Pautov \nCopyright (c) Roman Arutyunyan\nCopyright (c) Ruslan Ermilov \nCopyright (c) Unbit S.a.s. 2009-2010\nCopyright (c) Valentin V. Bartenev ",
      "licenses": [
        {
          "license": {
            "name": "BSD 2-Clause"
          }
        }
      ],
      "description": "NGINX [Engine-X] is an HTTP(S) server, HTTP(S) reverse proxy and IMAP/POP3 proxy server written by Igor Sysoev. It has been running on many heavily loaded sites, including Facebook, Zappos, Groupon, LivingSocial, Hulu, TechCrunch, Dropbox, Tumblr and WordPress.",
      "supplier": {
        "url": [
          "http://nginx.org/"
        ]
      }
    },
    {
      "name": "russross-meddler",
      "bom-ref": "russross-meddler",
      "type": "library",
      "version": "v1.0.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "BSD 2-Clause"
          }
        }
      ],
      "purl": "pkg:github/russross/meddler@v1.0.1",
      "description": "conversion between sql and structs in go",
      "supplier": {
        "url": [
          "http://github.com/russross/meddler/"
        ]
      }
    },
    {
      "name": "pugixml",
      "bom-ref": "pugixml",
      "type": "library",
      "version": "1.14",
      "copyright": "Copyright (c) 2006-2023, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) ",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "description": "PugiXML is a heavily refactored/reworked version of PugXML (basically, what is left is general idea of in-situ parsing, class naming schemes and parts of inner parsing loop). It is meant to be used for loading XML files where speed is important. \r\r\n\r\r\nCurrent version: 1.2 (May 1, 2012)",
      "supplier": {
        "url": [
          "http://pugixml.org/"
        ]
      }
    },
    {
      "name": "libfcgi-dev",
      "bom-ref": "libfcgi-dev",
      "type": "library",
      "version": "2.4.2",
      "copyright": "Copyright (c) 1995-1996 Open Market, Inc.",
      "licenses": [
        {
          "license": {
            "name": "Open Market License"
          }
        }
      ],
      "description": "Header files of FastCGI\r\nFastCGI is a language independent, scalable, open extension\r\nto CGI that provides high performance without the limitations\r\nof server specific APIs.",
      "supplier": {
        "url": [
          "https://github.com/FastCGI-Archives"
        ]
      }
    },
    {
      "name": "SQLite",
      "bom-ref": "SQLite",
      "type": "library",
      "version": "3.51.0",
      "licenses": [
        {
          "license": {
            "name": "Public Domain"
          }
        }
      ],
      "purl": "pkg:github/sqlite/sqlite@version-3.51.0",
      "description": "SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.",
      "supplier": {
        "url": [
          "http://sqlite.org/"
        ]
      }
    },
    {
      "name": "SQLite",
      "bom-ref": "SQLite",
      "type": "library",
      "version": "3.5.2",
      "licenses": [
        {
          "license": {
            "name": "Public Domain"
          }
        }
      ],
      "description": "SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.",
      "supplier": {
        "url": [
          "http://sqlite.org/"
        ]
      }
    },
    {
      "name": "SQLite",
      "bom-ref": "SQLite",
      "type": "library",
      "version": "3.51.2",
      "licenses": [
        {
          "license": {
            "name": "Public Domain"
          }
        }
      ],
      "description": "SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.",
      "supplier": {
        "url": [
          "http://sqlite.org/"
        ]
      }
    },
    {
      "name": "gSOAP",
      "bom-ref": "gSOAP",
      "type": "library",
      "version": "2.8.111",
      "licenses": [
        {
          "license": {
            "name": "Genivia gSOAP Commercial License"
          }
        }
      ],
      "description": "The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. Easy-to-use code-generator tools allow you to directly integrate XML data in C and C++ (and C++11/C++14). Serializes native application data in XML. Includes WSDL/XSD schema binding and auto-coding tools, stub/skeleton compiler, Web server integration with Apache module and IIS extension, high-performance XML processing with schema validation, fast MIME/MTOM streaming, SOAP and REST (WCF compatible), WS-* protocols (WS-Security, WS-Policy, WS-ReliableMessaging, etc), XML-RPC and JSON.",
      "supplier": {
        "url": [
          "http://sourceforge.net/projects/gsoap2"
        ]
      }
    },
    {
      "name": "danvk/source-map-explorer",
      "bom-ref": "danvk/source-map-explorer",
      "type": "library",
      "version": "2.5.2",
      "copyright": "Copyright (c) 2013 Google Inc.",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:npm/source-map-explorer@2.5.2",
      "supplier": {
        "url": [
          "https://github.com/danvk/source-map-explorer#readme"
        ]
      }
    },
    {
      "name": "js2xmlparser",
      "bom-ref": "js2xmlparser",
      "type": "library",
      "version": "5.0.0",
      "copyright": "Copyright (c) 2012 Matthew Eernisse (mde@fleegix.org)",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:npm/js2xmlparser@5.0.0",
      "description": "Parses JavaScript objects into XML",
      "supplier": {
        "url": [
          "http://www.kourlas.net"
        ]
      }
    },
    {
      "name": "staylor/react-helmet-async",
      "bom-ref": "staylor/react-helmet-async",
      "type": "library",
      "version": "1.3.0",
      "copyright": "Copyright (c) 2016-2017 Sebastian Software GmbH",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:npm/react-helmet-async@1.3.0",
      "supplier": {
        "url": [
          "https://github.com/staylor/react-helmet-async#readme"
        ]
      }
    },
    {
      "name": "@typescript-eslint/parser",
      "bom-ref": "@typescript-eslint/parser",
      "type": "library",
      "version": "7.9.0",
      "copyright": "Copyright (c) JS Foundation and other contributors, https://js.foundation",
      "licenses": [
        {
          "license": {
            "name": "BSD 2-Clause"
          }
        }
      ],
      "purl": "pkg:npm/%40typescript-eslint/parser@7.9.0",
      "description": "An ESLint custom parser which leverages TypeScript ESTree",
      "supplier": {
        "url": [
          "https://github.com/typescript-eslint/typescript-eslint#readme"
        ]
      }
    },
    {
      "name": "react-intl",
      "bom-ref": "react-intl",
      "type": "library",
      "version": "6.8.7",
      "copyright": "Copyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2015, Yahoo Inc.\nCopyright (c) 2019 Oath Inc.",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:npm/react-intl@6.8.7",
      "description": "Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.",
      "supplier": {
        "url": [
          "https://github.com/caridy/react-intl"
        ]
      }
    },
    {
      "name": "rrule",
      "bom-ref": "rrule",
      "type": "library",
      "version": "2.8.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:npm/rrule@2.8.1",
      "description": "JavaScript library for working with recurrence rules for calendar dates.",
      "supplier": {
        "url": [
          "http://jkbr.github.io/rrule/"
        ]
      }
    },
    {
      "name": "eslint-import-resolver-typescript",
      "bom-ref": "eslint-import-resolver-typescript",
      "type": "library",
      "version": "3.6.1",
      "copyright": "Copyright (c) 2021 Alex Gorbatchev <alex.gorbatchev@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "ISC License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-import-resolver-typescript@3.6.1",
      "description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
      "supplier": {
        "url": [
          "https://github.com/alexgorbatchev/eslint-import-resolver-typescript#readme"
        ]
      }
    },
    {
      "name": "knip",
      "bom-ref": "knip",
      "type": "library",
      "version": "5.37.2",
      "copyright": "Copyright (c) 2014-2017, Jon Schlinkert.\nCopyright (c) 2022-2024 Lars Kappert",
      "licenses": [
        {
          "license": {
            "name": "ISC License"
          }
        }
      ],
      "purl": "pkg:npm/knip@5.37.2",
      "description": "Find unused files and exports in your TypeScript project",
      "supplier": {
        "url": [
          "https://github.com/webpro/knip"
        ]
      }
    },
    {
      "name": "cqfill",
      "bom-ref": "cqfill",
      "type": "library",
      "version": "0.6.1",
      "licenses": [
        {
          "license": {
            "name": "Creative Commons Zero v1.0 Universal"
          }
        }
      ],
      "purl": "pkg:npm/cqfill@0.6.1",
      "description": "Polyfill for CSS Container Queries",
      "supplier": {
        "url": [
          "https://github.com/jsxtools/cqfill#readme"
        ]
      }
    },
    {
      "name": "@csstools/postcss-light-dark-function",
      "bom-ref": "@csstools/postcss-light-dark-function",
      "type": "library",
      "version": "2.0.2",
      "copyright": "Copyright (c) CSSTools Contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40csstools/postcss-light-dark-function@2.0.2",
      "description": "Use the light-dark() color function in CSS",
      "supplier": {
        "url": [
          "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function#readme"
        ]
      }
    },
    {
      "name": "@csstools/postcss-light-dark-function",
      "bom-ref": "@csstools/postcss-light-dark-function",
      "type": "library",
      "version": "2.0.7",
      "copyright": "Copyright (c) CSSTools Contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40csstools/postcss-light-dark-function@2.0.7",
      "description": "Use the light-dark() color function in CSS",
      "supplier": {
        "url": [
          "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function#readme"
        ]
      }
    },
    {
      "name": "@emotion/react",
      "bom-ref": "@emotion/react",
      "type": "library",
      "version": "11.11.4",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40emotion/react@11.11.4",
      "description": "> Simple styling in React.",
      "supplier": {
        "url": [
          "https://github.com/emotion-js/emotion/tree/main#readme"
        ]
      }
    },
    {
      "name": "@emotion/react",
      "bom-ref": "@emotion/react",
      "type": "library",
      "version": "11.9.0",
      "copyright": "Copyright (c) Emotion team and other contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40emotion/react@11.9.0",
      "description": "> Simple styling in React.",
      "supplier": {
        "url": [
          "https://github.com/emotion-js/emotion/tree/main#readme"
        ]
      }
    },
    {
      "name": "@emotion/styled",
      "bom-ref": "@emotion/styled",
      "type": "library",
      "version": "11.11.5",
      "copyright": "Copyright (c) Emotion team and other contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40emotion/styled@11.11.5",
      "description": "styled API for emotion",
      "supplier": {
        "url": [
          "https://github.com/emotion-js/emotion/tree/main#readme"
        ]
      }
    },
    {
      "name": "@emotion/styled",
      "bom-ref": "@emotion/styled",
      "type": "library",
      "version": "11.8.1",
      "copyright": "Copyright (c) Emotion team and other contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40emotion/styled@11.8.1",
      "description": "styled API for emotion",
      "supplier": {
        "url": [
          "https://github.com/emotion-js/emotion/tree/main#readme"
        ]
      }
    },
    {
      "name": "@faker-js/faker",
      "bom-ref": "@faker-js/faker",
      "type": "library",
      "version": "9.2.0",
      "copyright": "Copyright (c) 2007-2010 Benjamin Curtis\nCopyright (c) 2020 Marak Squires\nCopyright (c) 2004-2005 by Jason Kohles",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40faker-js/faker@9.2.0",
      "description": "Generate massive amounts of fake contextual data",
      "supplier": {
        "url": [
          "https://github.com/Marak/Faker.js#readme"
        ]
      }
    },
    {
      "name": "@fullcalendar/core",
      "bom-ref": "@fullcalendar/core",
      "type": "library",
      "version": "5.11.0",
      "copyright": "Copyright (c) 2021 Adam Shaw\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/core@5.11.0",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/core",
      "bom-ref": "@fullcalendar/core",
      "type": "library",
      "version": "6.1.14",
      "copyright": "Copyright (c) 2021, 2024 Adam Shaw",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/core@6.1.14",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/daygrid",
      "bom-ref": "@fullcalendar/daygrid",
      "type": "library",
      "version": "6.1.14",
      "copyright": "Copyright (c) 2021, 2024 Adam Shaw",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/daygrid@6.1.14",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/interaction",
      "bom-ref": "@fullcalendar/interaction",
      "type": "library",
      "version": "5.11.0",
      "copyright": "Copyright (c) 2021 Adam Shaw\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/interaction@5.11.0",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/react",
      "bom-ref": "@fullcalendar/react",
      "type": "library",
      "version": "5.11.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/react@5.11.1",
      "description": "An official FullCalendar component for React",
      "supplier": {
        "url": [
          "https://github.com/fullcalendar/fullcalendar-react#readme"
        ]
      }
    },
    {
      "name": "@fullcalendar/react",
      "bom-ref": "@fullcalendar/react",
      "type": "library",
      "version": "6.1.14",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/react@6.1.14",
      "description": "An official FullCalendar component for React",
      "supplier": {
        "url": [
          "https://github.com/fullcalendar/fullcalendar-react#readme"
        ]
      }
    },
    {
      "name": "@fullcalendar/rrule",
      "bom-ref": "@fullcalendar/rrule",
      "type": "library",
      "version": "6.1.14",
      "copyright": "Copyright (c) 2021, 2024 Adam Shaw",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/rrule@6.1.14",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/timegrid",
      "bom-ref": "@fullcalendar/timegrid",
      "type": "library",
      "version": "5.11.0",
      "copyright": "Copyright (c) 2021 Adam Shaw\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/timegrid@5.11.0",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@fullcalendar/timegrid",
      "bom-ref": "@fullcalendar/timegrid",
      "type": "library",
      "version": "6.1.14",
      "copyright": "Copyright (c) 2021, 2024 Adam Shaw",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40fullcalendar/timegrid@6.1.14",
      "description": "Full-sized drag & drop event calendar",
      "supplier": {
        "url": [
          "https://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "@mui/icons-material",
      "bom-ref": "@mui/icons-material",
      "type": "library",
      "version": "5.10.6",
      "copyright": "Copyright (c) 2014 Call-Em-All",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/icons-material@5.10.6",
      "description": "Material Design icons distributed as SVG React components.",
      "supplier": {
        "url": [
          "https://next.material-ui.com/components/material-icons/"
        ]
      }
    },
    {
      "name": "@mui/material",
      "bom-ref": "@mui/material",
      "type": "library",
      "version": "5.15.19",
      "copyright": "Copyright (c) Sindre Sorhus\nCopyright (c) 2013-present, Facebook, Inc.\nCopyright (c) 2014 Call-Em-All\nCopyright (c) Facebook, Inc. and its affiliates.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/material@5.15.19",
      "description": "Quickly build beautiful React apps. Material-UI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.",
      "supplier": {
        "url": [
          "https://material-ui.com/"
        ]
      }
    },
    {
      "name": "@mui/material",
      "bom-ref": "@mui/material",
      "type": "library",
      "version": "5.6.2",
      "copyright": "Copyright (c) Sindre Sorhus\nCopyright (c) 2013-present, Facebook, Inc.\nCopyright (c) 2014 Call-Em-All\nCopyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2015, Yahoo",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/material@5.6.2",
      "description": "Quickly build beautiful React apps. Material-UI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.",
      "supplier": {
        "url": [
          "https://material-ui.com/"
        ]
      }
    },
    {
      "name": "@mui/styled-engine",
      "bom-ref": "@mui/styled-engine",
      "type": "library",
      "version": "5.6.1",
      "copyright": "Copyright (c) 2014 Call-Em-All",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/styled-engine@5.6.1",
      "description": "styled() API wrapper package for emotion.",
      "supplier": {
        "url": [
          "https://next.material-ui.com/guides/styled-engine/"
        ]
      }
    },
    {
      "name": "@mui/styles",
      "bom-ref": "@mui/styles",
      "type": "library",
      "version": "5.8.0",
      "copyright": "Copyright (c) 2014 Call-Em-All",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/styles@5.8.0",
      "description": "Material-UI Styles - The styling solution of Material-UI.",
      "supplier": {
        "url": [
          "https://next.material-ui.com/styles/basics/"
        ]
      }
    },
    {
      "name": "@mui/x-data-grid",
      "bom-ref": "@mui/x-data-grid",
      "type": "library",
      "version": "5.9.0",
      "copyright": "Copyright (c) 2017 Evgeny Poberezkin\nCopyright (c) 2020 Material-UI SAS",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/x-data-grid@5.9.0",
      "description": "The community edition of the data grid component (Material-UI X).",
      "supplier": {
        "url": [
          "https://material-ui.com/components/data-grid/"
        ]
      }
    },
    {
      "name": "@mui/x-date-pickers",
      "bom-ref": "@mui/x-date-pickers",
      "type": "library",
      "version": "6.0.1",
      "copyright": "Copyright (c) 2020 Material-UI SAS",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40mui/x-date-pickers@6.0.1",
      "description": "The community edition of the date picker components (MUI X).",
      "supplier": {
        "url": [
          "https://mui.com/components/x/react-date-pickers/date-picker/"
        ]
      }
    },
    {
      "name": "@reduxjs/toolkit",
      "bom-ref": "@reduxjs/toolkit",
      "type": "library",
      "version": "1.8.1",
      "copyright": "Copyright (c) Sindre Sorhus\nCopyright (c) 2018 Mark Erikson\nCopyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2018-2021 the Deno authors.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40reduxjs/toolkit@1.8.1",
      "description": "The official, opinionated, batteries-included toolset for efficient Redux development",
      "supplier": {
        "url": [
          "https://github.com/reduxjs/redux-toolkit#readme"
        ]
      }
    },
    {
      "name": "@rollup/plugin-image",
      "bom-ref": "@rollup/plugin-image",
      "type": "library",
      "version": "2.1.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40rollup/plugin-image@2.1.1",
      "description": "Import JPG, PNG, GIF, SVG, and WebP files",
      "supplier": {
        "url": [
          "https://github.com/rollup/plugins/packages/image/#readme"
        ]
      }
    },
    {
      "name": "@testing-library/jest-dom",
      "bom-ref": "@testing-library/jest-dom",
      "type": "library",
      "version": "6.6.2",
      "copyright": "Copyright (c) 2017 Kent C. Dodds",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40testing-library/jest-dom@6.6.2",
      "description": "Custom jest matchers to test the state of the DOM",
      "supplier": {
        "url": [
          "https://github.com/testing-library/jest-dom#readme"
        ]
      }
    },
    {
      "name": "@testing-library/user-event",
      "bom-ref": "@testing-library/user-event",
      "type": "library",
      "version": "14.5.2",
      "copyright": "Copyright (c) 2020 Giorgio Polvara",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40testing-library/user-event@14.5.2",
      "description": "Simulate user events for react-testing-library",
      "supplier": {
        "url": [
          "https://github.com/testing-library/user-event#readme"
        ]
      }
    },
    {
      "name": "@types/crypto-js",
      "bom-ref": "@types/crypto-js",
      "type": "library",
      "version": "4.2.2",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/crypto-js@4.2.2",
      "description": "TypeScript definitions for crypto-js",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/crypto-js"
        ]
      }
    },
    {
      "name": "@types/file-saver",
      "bom-ref": "@types/file-saver",
      "type": "library",
      "version": "2.0.5",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/file-saver@2.0.5",
      "description": "TypeScript definitions for FileSaver.js",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/file-saver"
        ]
      }
    },
    {
      "name": "@types/jest",
      "bom-ref": "@types/jest",
      "type": "library",
      "version": "27.4.1",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/jest@27.4.1",
      "description": "TypeScript definitions for Jest",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest"
        ]
      }
    },
    {
      "name": "@types/lodash",
      "bom-ref": "@types/lodash",
      "type": "library",
      "version": "4.17.7",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/lodash@4.17.7",
      "description": "TypeScript definitions for Lo-Dash",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash"
        ]
      }
    },
    {
      "name": "@types/node",
      "bom-ref": "@types/node",
      "type": "library",
      "version": "18.0.0",
      "copyright": "Copyright (c) Microsoft Corporation.\nCopyright (c) Node.js contributors.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/node@18.0.0",
      "description": "TypeScript definitions for Node.js",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node"
        ]
      }
    },
    {
      "name": "@types/qs",
      "bom-ref": "@types/qs",
      "type": "library",
      "version": "6.9.7",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/qs@6.9.7",
      "description": "TypeScript definitions for qs",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs"
        ]
      }
    },
    {
      "name": "@types/react",
      "bom-ref": "@types/react",
      "type": "library",
      "version": "18.0.27",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react@18.0.27",
      "description": "TypeScript definitions for React",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react"
        ]
      }
    },
    {
      "name": "@types/react-color",
      "bom-ref": "@types/react-color",
      "type": "library",
      "version": "3.0.6",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-color@3.0.6",
      "description": "TypeScript definitions for react-color",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-color"
        ]
      }
    },
    {
      "name": "@types/react-dom",
      "bom-ref": "@types/react-dom",
      "type": "library",
      "version": "18.0.10",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-dom@18.0.10",
      "description": "TypeScript definitions for React (react-dom)",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom"
        ]
      }
    },
    {
      "name": "@types/react-helmet",
      "bom-ref": "@types/react-helmet",
      "type": "library",
      "version": "6.1.6",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-helmet@6.1.6",
      "description": "TypeScript definitions for react-helmet",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-helmet"
        ]
      }
    },
    {
      "name": "@types/react-resizable",
      "bom-ref": "@types/react-resizable",
      "type": "library",
      "version": "3.0.4",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-resizable@3.0.4",
      "description": "TypeScript definitions for react-resizable",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-resizable"
        ]
      }
    },
    {
      "name": "@types/react-router-dom",
      "bom-ref": "@types/react-router-dom",
      "type": "library",
      "version": "5.3.3",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-router-dom@5.3.3",
      "description": "TypeScript definitions for React Router",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-dom"
        ]
      }
    },
    {
      "name": "@types/react-router-hash-link",
      "bom-ref": "@types/react-router-hash-link",
      "type": "library",
      "version": "2.4.5",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/react-router-hash-link@2.4.5",
      "description": "TypeScript definitions for react-router-hash-link",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-hash-link"
        ]
      }
    },
    {
      "name": "@types/redux-logger",
      "bom-ref": "@types/redux-logger",
      "type": "library",
      "version": "3.0.9",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/redux-logger@3.0.9",
      "description": "TypeScript definitions for redux-logger",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-logger"
        ]
      }
    },
    {
      "name": "@types/styled-components",
      "bom-ref": "@types/styled-components",
      "type": "library",
      "version": "5.1.25",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/styled-components@5.1.25",
      "description": "TypeScript definitions for styled-components",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/styled-components"
        ]
      }
    },
    {
      "name": "@types/vis",
      "bom-ref": "@types/vis",
      "type": "library",
      "version": "4.21.24",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/vis@4.21.24",
      "description": "TypeScript definitions for vis.js",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vis"
        ]
      }
    },
    {
      "name": "@types/webrtc",
      "bom-ref": "@types/webrtc",
      "type": "library",
      "version": "0.0.33",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/webrtc@0.0.33",
      "description": "TypeScript definitions for webrtc",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webrtc"
        ]
      }
    },
    {
      "name": "@types/xml2js",
      "bom-ref": "@types/xml2js",
      "type": "library",
      "version": "0.4.11",
      "copyright": "Copyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40types/xml2js@0.4.11",
      "description": "TypeScript definitions for node-xml2js",
      "supplier": {
        "url": [
          "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/xml2js"
        ]
      }
    },
    {
      "name": "@typescript-eslint/eslint-plugin",
      "bom-ref": "@typescript-eslint/eslint-plugin",
      "type": "library",
      "version": "7.9.0",
      "copyright": "Copyright (c) 2019 typescript-eslint and other contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40typescript-eslint/eslint-plugin@7.9.0",
      "description": "TypeScript plugin for ESLint",
      "supplier": {
        "url": [
          "https://github.com/typescript-eslint/typescript-eslint#readme"
        ]
      }
    },
    {
      "name": "@vitejs/plugin-react-swc",
      "bom-ref": "@vitejs/plugin-react-swc",
      "type": "library",
      "version": "4.2.1",
      "copyright": "Copyright (c) Arnaud Barr",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/%40vitejs/plugin-react-swc@4.2.1",
      "description": "Use the versatility of SWC for development and the maturity of esbuild for production",
      "supplier": {
        "url": [
          "https://github.com/vitejs/vite-plugin-react-swc#readme"
        ]
      }
    },
    {
      "name": "airbnb javascript",
      "bom-ref": "airbnb javascript",
      "type": "library",
      "version": "19.0.4",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-config-airbnb@19.0.4",
      "description": "JavaScript Style Guide",
      "supplier": {
        "url": [
          "https://www.npmjs.com/package/eslint-config-airbnb"
        ]
      }
    },
    {
      "name": "autobind-decorator",
      "bom-ref": "autobind-decorator",
      "type": "library",
      "version": "2.4.0",
      "copyright": "Copyright (c) Andrey Popp",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/autobind-decorator@2.4.0",
      "description": "Decorator for binding method to an object",
      "supplier": {
        "url": [
          "https://github.com/andreypopp/autobind-decorator#readme"
        ]
      }
    },
    {
      "name": "brix/crypto-js",
      "bom-ref": "brix/crypto-js",
      "type": "library",
      "version": "4.2.0",
      "copyright": "Copyright (c) 2009-2013 Jeff Mott\nCopyright (c) 2013-2016 Evan Vosberg",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/crypto-js@4.2.0",
      "description": "JavaScript library of crypto standards.",
      "supplier": {
        "url": [
          "https://github.com/brix/crypto-js"
        ]
      }
    },
    {
      "name": "classnames",
      "bom-ref": "classnames",
      "type": "library",
      "version": "2.5.1",
      "copyright": "Copyright (c) 2018 Dave Keen <http://www.keendevelopment.ch>, Adi Dahiya <https://github.com/adidahiya>, Jason Killian <https://github.com/JKillian>, Sean Kelley <https://github.com/s\nCopyright (c) 2018 Jed Watson",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/classnames@2.5.1",
      "description": "A simple utility for conditionally joining classNames together",
      "supplier": {
        "url": [
          "https://github.com/JedWatson/classnames"
        ]
      }
    },
    {
      "name": "Commitizen CLI",
      "bom-ref": "Commitizen CLI",
      "type": "library",
      "version": "4.2.4",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/commitizen@4.2.4",
      "description": "Zen-like commit messages for internet citizens. (The commitizen command line utility.)",
      "supplier": {
        "url": [
          "http://commitizen.github.io/cz-cli/"
        ]
      }
    },
    {
      "name": "cross-env",
      "bom-ref": "cross-env",
      "type": "library",
      "version": "7.0.3",
      "copyright": "Copyright (c) 2017 Kent C. Dodds",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/cross-env@7.0.3",
      "description": "Run scripts that set and use environment variables across platforms",
      "supplier": {
        "url": [
          "https://github.com/kentcdodds/cross-env#readme"
        ]
      }
    },
    {
      "name": "crypto-browserify",
      "bom-ref": "crypto-browserify",
      "type": "library",
      "version": "3.12.0",
      "copyright": "Copyright (c) 2013 Dominic Tarr\nCopyright (c) Paul Johnston 2000 - 2002.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/crypto-browserify@3.12.0",
      "description": "implementation of crypto for the browser",
      "supplier": {
        "url": [
          "https://github.com/dominictarr/crypto-browserify"
        ]
      }
    },
    {
      "name": "date-fns/date-fns",
      "bom-ref": "date-fns/date-fns",
      "type": "library",
      "version": "2.29.2",
      "copyright": "Copyright (c) 2021 Sasha Koss and Lesha Koss",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/date-fns@2.29.2",
      "description": "\u23F3 Modern JavaScript date utility library \u231B\uFE0F",
      "supplier": {
        "url": [
          "https://github.com/date-fns/date-fns"
        ]
      }
    },
    {
      "name": "dayjs",
      "bom-ref": "dayjs",
      "type": "library",
      "version": "1.11.11",
      "copyright": "Copyright (c) 2018-present, iamkun",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/dayjs@1.11.11",
      "supplier": {
        "url": [
          "https://github.com/xx45/dayjs#readme"
        ]
      }
    },
    {
      "name": "env-cmd",
      "bom-ref": "env-cmd",
      "type": "library",
      "version": "10.1.0",
      "copyright": "Copyright (c) 2019 Todd Bluhm",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/env-cmd@10.1.0",
      "description": "Executes a command using the envs in the provided env file",
      "supplier": {
        "url": [
          "https://github.com/toddbluhm/env-cmd#readme"
        ]
      }
    },
    {
      "name": "ESLint",
      "bom-ref": "ESLint",
      "type": "library",
      "version": "8.53.0",
      "copyright": "Copyright (c) 2013-2016 Dulin Marat and other contributors\nCopyright (c) OpenJS Foundation and other contributors, <www.openjsf.org>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint@8.53.0",
      "description": "A tool for identifying and reporting on patterns in JavaScript.",
      "supplier": {
        "url": [
          "http://eslint.org/"
        ]
      }
    },
    {
      "name": "ESLint",
      "bom-ref": "ESLint",
      "type": "library",
      "version": "8.57.1",
      "copyright": "Copyright (c) 2013-2016 Dulin Marat and other contributors\nCopyright (c) OpenJS Foundation and other contributors, <www.openjsf.org>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint@8.57.1",
      "description": "A tool for identifying and reporting on patterns in JavaScript.",
      "supplier": {
        "url": [
          "http://eslint.org/"
        ]
      }
    },
    {
      "name": "eslint-config-prettier",
      "bom-ref": "eslint-config-prettier",
      "type": "library",
      "version": "9.1.0",
      "copyright": "Copyright (c) 2017-2023 Simon Lydell and contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-config-prettier@9.1.0",
      "description": "Turns all rules that are unnecessary or might conflict with prettier off.",
      "supplier": {
        "url": [
          "https://github.com/lydell/eslint-config-prettier#readme"
        ]
      }
    },
    {
      "name": "eslint-plugin-import",
      "bom-ref": "eslint-plugin-import",
      "type": "library",
      "version": "2.29.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-import@2.29.1",
      "description": "Import with sanity.",
      "supplier": {
        "url": [
          "https://github.com/benmosher/eslint-plugin-import"
        ]
      }
    },
    {
      "name": "eslint-plugin-no-only-tests",
      "bom-ref": "eslint-plugin-no-only-tests",
      "type": "library",
      "version": "3.1.0",
      "copyright": "Copyright (c) 2016 Levi Buzolic",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-no-only-tests@3.1.0",
      "description": "ESLint rule for describe.only/it.only in mocha tests",
      "supplier": {
        "url": [
          "https://github.com/levibuzolic/no-only-tests#readme"
        ]
      }
    },
    {
      "name": "eslint-plugin-prettier",
      "bom-ref": "eslint-plugin-prettier",
      "type": "library",
      "version": "5.2.1",
      "copyright": "Copyright (c) 2017 Andres Suarez and Teddy Katz",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-prettier@5.2.1",
      "description": "Runs prettier as an eslint rule",
      "supplier": {
        "url": [
          "https://github.com/not-an-aardvark/eslint-plugin-prettier#readme"
        ]
      }
    },
    {
      "name": "eslint-plugin-react-hooks",
      "bom-ref": "eslint-plugin-react-hooks",
      "type": "library",
      "version": "4.6.2",
      "copyright": "Copyright (c) Facebook, Inc. and its affiliates.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-react-hooks@4.6.2",
      "description": "ESLint rules for React Hooks",
      "supplier": {
        "url": [
          "https://reactjs.org/"
        ]
      }
    },
    {
      "name": "eslint-plugin-testing-library",
      "bom-ref": "eslint-plugin-testing-library",
      "type": "library",
      "version": "6.2.2",
      "copyright": "Copyright (c) 2019 Mario Beltr",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-testing-library@6.2.2",
      "description": "ESLint rules for Testing Library",
      "supplier": {
        "url": [
          "https://github.com/Belco90/eslint-plugin-testing-library"
        ]
      }
    },
    {
      "name": "eslint-plugin-unicorn",
      "bom-ref": "eslint-plugin-unicorn",
      "type": "library",
      "version": "53.0.0",
      "copyright": "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\nCopyright (c) Jeremy Ashkenas, DocumentCloud and Investigative Reporters\nCopyright (c) OpenJS Foundation and other contributors <https://openjsf.org/>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-unicorn@53.0.0",
      "description": "Various awesome ESLint rules",
      "supplier": {
        "url": [
          "https://github.com/sindresorhus/eslint-plugin-unicorn#readme"
        ]
      }
    },
    {
      "name": "FileSaver.js",
      "bom-ref": "FileSaver.js",
      "type": "library",
      "version": "2.0.5",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/file-saver@2.0.5",
      "description": "An HTML5 saveAs() FileSaver implementation",
      "supplier": {
        "url": [
          "https://github.com/eligrey/FileSaver.js"
        ]
      }
    },
    {
      "name": "FullCalendar",
      "bom-ref": "FullCalendar",
      "type": "library",
      "version": "5.11.0",
      "copyright": "Copyright (c) 2021 Adam Shaw\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/fullcalendar@5.11.0",
      "description": "FullCalendar is a jQuery plugin that provides a full-sized, drag & drop calendar. It uses AJAX to fetch events on-the-fly for each month and is easily configured to use your own feed format (an extension is provided for Google Calendar). It is visually customizable and exposes hooks for user-triggered events (like clicking or dragging an event). \r\r\n\r\r\nSource code and development has been moved to GitHub: http://github.com/arshaw/fullcalendar. However, the issues page is staying where it is for the time being. \r\r\n\r\r\nProject homepage: http://fullcalendar.io/",
      "supplier": {
        "url": [
          "http://fullcalendar.io/"
        ]
      }
    },
    {
      "name": "immer",
      "bom-ref": "immer",
      "type": "library",
      "version": "9.0.15",
      "copyright": "Copyright (c) 2017 Michel Weststrate",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/immer@9.0.15",
      "description": "Create the next immutable state by mutating the current one",
      "supplier": {
        "url": [
          "https://immerjs.github.io/immer/"
        ]
      }
    },
    {
      "name": "jsencrypt",
      "bom-ref": "jsencrypt",
      "type": "library",
      "version": "3.2.1",
      "copyright": "Copyright (c) 2003-2005 Tom Wu\nCopyright (c) 2008-2014 Lapo Luchini <lapo@lapo.it>\nCopyright (c) 2010-2017 Kenji Urushima (kenji.urushima@gmail.com)\nCopyright (c) 2011, Yahoo\nCopyright (c) 2015 Form.io",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/jsencrypt@3.2.1",
      "description": "Provides a simple wrapper around the fantastic work done by Tom Wu for RSA Encryption for JavaScript.  http://travistidwell.com/jsencrypt",
      "supplier": {
        "url": [
          "https://github.com/travist/jsencrypt"
        ]
      }
    },
    {
      "name": "lint-staged",
      "bom-ref": "lint-staged",
      "type": "library",
      "version": "15.2.2",
      "copyright": "Copyright (c) 2014-2018, Jon Schlinkert.\nCopyright (c) 2016 Andrey Okonetchnikov",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/lint-staged@15.2.2",
      "description": "Lint JS and CSS files staged by git",
      "supplier": {
        "url": [
          "https://github.com/okonet/lint-staged#readme"
        ]
      }
    },
    {
      "name": "Lodash",
      "bom-ref": "Lodash",
      "type": "library",
      "version": "4.17.21",
      "copyright": "Copyright (c) OpenJS Foundation and other contributors <https://openjsf.org/>\nCopyright (c) Jeremy Ashkenas, DocumentCloud and Investigative Reporters",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/lodash@4.17.21",
      "supplier": {
        "url": [
          "https://lodash.com/"
        ]
      }
    },
    {
      "name": "mjeanroy/rollup-plugin-license",
      "bom-ref": "mjeanroy/rollup-plugin-license",
      "type": "library",
      "version": "3.5.3",
      "copyright": "Copyright (c) 2016-2024 Mickael Jeanroy",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/rollup-plugin-license@3.5.3",
      "supplier": {
        "url": [
          "https://github.com/mjeanroy/rollup-plugin-license"
        ]
      }
    },
    {
      "name": "Mock Service Writer (MSW)",
      "bom-ref": "Mock Service Writer (MSW)",
      "type": "library",
      "version": "0.39.2",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/msw@0.39.2",
      "description": "Seamless REST/GraphQL API mocking library for browser and Node.",
      "supplier": {
        "url": [
          "https://mswjs.io"
        ]
      }
    },
    {
      "name": "moment/moment",
      "bom-ref": "moment/moment",
      "type": "library",
      "version": "2.30.1",
      "copyright": "Copyright (c) JS Foundation and other contributors",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/moment@2.30.1",
      "description": "Parse, validate, manipulate, and display dates in javascript.",
      "supplier": {
        "url": [
          "http://momentjs.com"
        ]
      }
    },
    {
      "name": "ncp",
      "bom-ref": "ncp",
      "type": "library",
      "version": "2.0.0",
      "copyright": "Copyright (c) 2011 by Charlie McConnell",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/ncp@2.0.0",
      "description": "Asynchronous recursive file copy utility.",
      "supplier": {
        "url": [
          "https://github.com/AvianFlu/ncp"
        ]
      }
    },
    {
      "name": "node-process",
      "bom-ref": "node-process",
      "type": "library",
      "version": "0.11.10",
      "copyright": "Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/process@0.11.10",
      "description": "process information for node.js and browsers",
      "supplier": {
        "url": [
          "https://github.com/defunctzombie/node-process"
        ]
      }
    },
    {
      "name": "node-xml2js",
      "bom-ref": "node-xml2js",
      "type": "library",
      "version": "0.6.2",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/xml2js@0.6.2",
      "description": "Simple XML to JavaScript object converter.\r\r\n\r\r\nEver had the urge to parse XML? And wanted to access the data in some sane, easy way? Don't want to compile a C parser, for whatever reason? Then xml2js is what you're looking for!\r\r\n\r\r\nSimple XML to JavaScript object converter. It supports bi-directional conversion. Uses sax-js and xmlbuilder-js.",
      "supplier": {
        "url": [
          "https://github.com/Leonidas-from-XIV/node-xml2js"
        ]
      }
    },
    {
      "name": "PostCSS",
      "bom-ref": "PostCSS",
      "type": "library",
      "version": "8.4.49",
      "copyright": "Copyright (c) 2013 Andrey Sitnik <andrey@sitnik.ru>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/postcss@8.4.49",
      "description": "Transforming styles with JS plugins\r\r\nPostCSS is a tool for transforming styles with JS plugins. These plugins can lint your CSS, support variables and mixins, transpile future CSS syntax, inline images, and more.",
      "supplier": {
        "url": [
          "http://postcss.org/"
        ]
      }
    },
    {
      "name": "Prettier IO",
      "bom-ref": "Prettier IO",
      "type": "library",
      "version": "2.6.2",
      "copyright": "Copyright (c) 2012-2014 Raynos.\nCopyright (c) 2014 Dave Justice\nCopyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>\nCopyright (c) 2013 Mikola Lysenko\nCopyright (c) Open JS Foundation\nCopyright (c) OpenJS Foundation and other contributors <https://openjsf.org/>>\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\nCopyright (c) 2016 Pat Sissons <patricksissons@gmail.com>\nCopyright (c) 2017 Kat March\nCopyright (c) 2015 Elijah Insua\nCopyright (c) 2014 Stefan Thomas\nCopyright (c) 2013 Andrey Sitnik <andrey@sitnik.ru>\nCopyright (c) 2014-present, Jon Schlinkert.\nCopyright (c) 2016 Joshua Holbrook\nCopyright (c) 2012-2013 James Halliday\nCopyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell\nCopyright (c) npm, Inc.\nCopyright (c) 2017 Andrew Powell <andrew@shellscape.org>\nCopyright (c) 2016, Rebecca Turner <me@re-becca.org>\nCopyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>\nCopyright (c) Joyent, Inc. and other Node contributors.\nCopyright (c) James Long and contributors\nCopyright (c) 2016 Denys Kniazevych <webschik@gmail.com>\nCopyright (c) Kevin M\nCopyright (c) 2013 Liucw\nCopyright (c) 2012 by Jun Woong.\nCopyright (c) Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren)\nCopyright (c) 2015 Brian Donovan\nCopyright (c) 2016-2021 Thomas Watson Steen\nCopyright (c) 2012 EditorConfig Team\nCopyright (c) 2015-2017, 2020 Titus Wormer <tituswormer@gmail.com>\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\nCopyright (c) 2013 Dominic Tarr\nCopyright (c) 2012-2020 by various contributors (see AUTHORS)\nCopyright (c) 2016 Andrew Bradley\nCopyright (c) Stephen Sugden <me@stephensugden.com> (stephensugden.com)\nCopyright (c) 2015 Dmitry Ivanov\nCopyright (c) 2013 Thiago de Arruda\nCopyright (c) 2015 David Clark\nCopyright (c) 2019 TypeScript ESLint and other contributors\nCopyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors\nCopyright (c) Isaac Z. Schlueter and Contributors\nCopyright (c) Isaac Z. Schlueter\nCopyright (c) 2017 Martin Mu\nCopyright (c) Mathias Bynens <https://mathiasbynens.be/>\nCopyright (c) JS Foundation and other contributors, https://js.foundation\nCopyright (c) 2013 Kael Zhang <i@kael.me>, contributors\nCopyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2017 Evgeny Poberezkin\nCopyright (c) 2014-2020 Teambition\nCopyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>\nCopyright (c) Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>\nCopyright (c) 2012-2017 by Ingvar Stepanyan\nCopyright (c) 2015, 2019 Elan Shanker\nCopyright (c) 2014 Alex Bell\nCopyright (c) 2021 ehmicky <ehmicky@gmail.com>\nCopyright (c) 2015 JD Ballard\nCopyright (c) Feross Aboukhadijeh\nCopyright (c) GraphQL Contributors\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\nCopyright (c) 2011-2015 Paul Vorbach <paul@vorba.ch>\nCopyright (c) 2012-2018 Aseem Kishore, and\nCopyright (c) 2019 and later, KFlash and others.\nCopyright (c) 2015 Tilde, Inc.\nCopyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)\nCopyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\nCopyright (c) 2012-2014 by various contributors (see AUTHORS)\nCopyright (c) Denis Malinochkin\nCopyright (c) 2014 Yehuda Katz and contributors\nCopyright (c) 2015 Javier Blanco\nCopyright (c) Microsoft Corporation.\nCopyright (c) 2018 Eemeli Aro <eemeli@gmail.com>\nCopyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)\nCopyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>\nCopyright (c) 2017 Klaus Meinhardt\nCopyright (c) 2013 Thorsten Lorenz.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/prettier@2.6.2",
      "description": "Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.",
      "supplier": {
        "url": [
          "https://prettier.io"
        ]
      }
    },
    {
      "name": "Prettier IO",
      "bom-ref": "Prettier IO",
      "type": "library",
      "version": "3.2.5",
      "copyright": "Copyright (c) 2012-2014 Raynos.\nCopyright (c) 2014 Dave Justice\nCopyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>\nCopyright (c) 2013 Mikola Lysenko\nCopyright (c) Open JS Foundation\nCopyright (c) OpenJS Foundation and other contributors <https://openjsf.org/>>\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\nCopyright (c) 2016 Pat Sissons <patricksissons@gmail.com>\nCopyright (c) 2017 Kat March\nCopyright (c) 2015 Elijah Insua\nCopyright (c) 2014 Stefan Thomas\nCopyright (c) 2013 Andrey Sitnik <andrey@sitnik.ru>\nCopyright (c) 2014-present, Jon Schlinkert.\nCopyright (c) 2016 Joshua Holbrook\nCopyright (c) 2012-2013 James Halliday\nCopyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell\nCopyright (c) npm, Inc.\nCopyright (c) 2017 Andrew Powell <andrew@shellscape.org>\nCopyright (c) 2016, Rebecca Turner <me@re-becca.org>\nCopyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>\nCopyright (c) Joyent, Inc. and other Node contributors.\nCopyright (c) James Long and contributors\nCopyright (c) 2016 Denys Kniazevych <webschik@gmail.com>\nCopyright (c) Kevin M\nCopyright (c) 2013 Liucw\nCopyright (c) 2012 by Jun Woong.\nCopyright (c) Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren)\nCopyright (c) 2015 Brian Donovan\nCopyright (c) 2016-2021 Thomas Watson Steen\nCopyright (c) 2012 EditorConfig Team\nCopyright (c) 2015-2017, 2020 Titus Wormer <tituswormer@gmail.com>\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\nCopyright (c) 2013 Dominic Tarr\nCopyright (c) 2012-2020 by various contributors (see AUTHORS)\nCopyright (c) 2016 Andrew Bradley\nCopyright (c) Stephen Sugden <me@stephensugden.com> (stephensugden.com)\nCopyright (c) 2015 Dmitry Ivanov\nCopyright (c) 2013 Thiago de Arruda\nCopyright (c) 2015 David Clark\nCopyright (c) 2019 TypeScript ESLint and other contributors\nCopyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors\nCopyright (c) Isaac Z. Schlueter and Contributors\nCopyright (c) Isaac Z. Schlueter\nCopyright (c) 2017 Martin Mu\nCopyright (c) Mathias Bynens <https://mathiasbynens.be/>\nCopyright (c) JS Foundation and other contributors, https://js.foundation\nCopyright (c) 2013 Kael Zhang <i@kael.me>, contributors\nCopyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2017 Evgeny Poberezkin\nCopyright (c) 2014-2020 Teambition\nCopyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>\nCopyright (c) Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>\nCopyright (c) 2012-2017 by Ingvar Stepanyan\nCopyright (c) 2015, 2019 Elan Shanker\nCopyright (c) 2014 Alex Bell\nCopyright (c) 2021 ehmicky <ehmicky@gmail.com>\nCopyright (c) 2015 JD Ballard\nCopyright (c) Feross Aboukhadijeh\nCopyright (c) GraphQL Contributors\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\nCopyright (c) 2011-2015 Paul Vorbach <paul@vorba.ch>\nCopyright (c) 2012-2018 Aseem Kishore, and\nCopyright (c) 2019 and later, KFlash and others.\nCopyright (c) 2015 Tilde, Inc.\nCopyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)\nCopyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\nCopyright (c) 2012-2014 by various contributors (see AUTHORS)\nCopyright (c) Denis Malinochkin\nCopyright (c) 2014 Yehuda Katz and contributors\nCopyright (c) 2015 Javier Blanco\nCopyright (c) Microsoft Corporation.\nCopyright (c) 2018 Eemeli Aro <eemeli@gmail.com>\nCopyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)\nCopyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>\nCopyright (c) 2017 Klaus Meinhardt\nCopyright (c) 2013 Thorsten Lorenz.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/prettier@3.2.5",
      "description": "Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.",
      "supplier": {
        "url": [
          "https://prettier.io"
        ]
      }
    },
    {
      "name": "prettymuchbryce/http-status-codes",
      "bom-ref": "prettymuchbryce/http-status-codes",
      "type": "library",
      "version": "2.2.0",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/http-status-codes@2.2.0",
      "supplier": {
        "url": [
          "https://github.com/prettymuchbryce/node-http-status"
        ]
      }
    },
    {
      "name": "React from Facebook",
      "bom-ref": "React from Facebook",
      "type": "library",
      "version": "18.1.0",
      "copyright": "Copyright (c) Facebook, Inc. and its affiliates.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react@18.1.0",
      "supplier": {
        "url": [
          "https://react.dev"
        ]
      }
    },
    {
      "name": "React Helmet",
      "bom-ref": "React Helmet",
      "type": "library",
      "version": "6.1.0",
      "copyright": "Copyright (c) 2015 NFL",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-helmet@6.1.0",
      "description": "A document head manager for React\r\r\nThis reusable React component will manage all of your changes to the document head with support for document title, meta, link, script, and base tags.",
      "supplier": {
        "url": [
          "https://github.com/nfl/react-helmet"
        ]
      }
    },
    {
      "name": "react-color",
      "bom-ref": "react-color",
      "type": "library",
      "version": "2.19.3",
      "copyright": "Copyright (c) 2015 Case Sandberg",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-color@2.19.3",
      "description": "A Collection of Color Pickers from Sketch, Photoshop, Chrome & more",
      "supplier": {
        "url": [
          "http://casesandberg.github.io/react-color/"
        ]
      }
    },
    {
      "name": "react-dom",
      "bom-ref": "react-dom",
      "type": "library",
      "version": "18.1.0",
      "copyright": "Copyright (c) Facebook, Inc. and its affiliates.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-dom@18.1.0",
      "description": "React package for working with the DOM.",
      "supplier": {
        "url": [
          "https://www.npmjs.com/package/react-dom"
        ]
      }
    },
    {
      "name": "react-draggable",
      "bom-ref": "react-draggable",
      "type": "library",
      "version": "4.4.5",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-draggable@4.4.5",
      "description": "React draggable component",
      "supplier": {
        "url": [
          "https://github.com/mzabriskie/react-draggable"
        ]
      }
    },
    {
      "name": "react-resizable",
      "bom-ref": "react-resizable",
      "type": "library",
      "version": "3.0.5",
      "copyright": "Copyright (c) 2016-2018 Samuel Reed\nCopyright (c) 2017 Jed Watson.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-resizable@3.0.5",
      "description": "A component that is resizable with handles.",
      "supplier": {
        "url": [
          "https://github.com/STRML/react-resizable"
        ]
      }
    },
    {
      "name": "react-router-dom",
      "bom-ref": "react-router-dom",
      "type": "library",
      "version": "6.11.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-router-dom@6.11.1",
      "description": "placeholder",
      "supplier": {
        "url": [
          "https://github.com/reacttraining/react-router#readme"
        ]
      }
    },
    {
      "name": "react-router-hash-link",
      "bom-ref": "react-router-hash-link",
      "type": "library",
      "version": "2.4.3",
      "copyright": "Copyright (c) 2017 Rafael Pedicini\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-router-hash-link@2.4.3",
      "description": "Hash link scroll functionality for React Router v4",
      "supplier": {
        "url": [
          "https://github.com/rafrex/react-router-hash-link#readme"
        ]
      }
    },
    {
      "name": "react-toastify",
      "bom-ref": "react-toastify",
      "type": "library",
      "version": "9.1.3",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-toastify@9.1.3",
      "description": "React notification made easy",
      "supplier": {
        "url": [
          "https://github.com/sniphpet/react-toastify#readme"
        ]
      }
    },
    {
      "name": "react-use-previous",
      "bom-ref": "react-use-previous",
      "type": "library",
      "version": "2.0.0",
      "copyright": "Copyright (c) 2019-present Fabio Spampinato",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-use-previous@2.0.0",
      "description": "React hook for remembering a previous value.",
      "supplier": {
        "url": [
          "https://github.com/fabiospampinato/react-use-previous#readme"
        ]
      }
    },
    {
      "name": "react-zoom-pan-pinch",
      "bom-ref": "react-zoom-pan-pinch",
      "type": "library",
      "version": "2.1.3",
      "copyright": "Copyright (c) 2019 prc5\nCopyright (c) Microsoft Corporation.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-zoom-pan-pinch@2.1.3",
      "description": "Zoom and pan html elements in easy way",
      "supplier": {
        "url": [
          "https://github.com/prc5/react-zoom-pan-pinch#readme"
        ]
      }
    },
    {
      "name": "reactredux",
      "bom-ref": "reactredux",
      "type": "library",
      "version": "7.2.8",
      "copyright": "Copyright (c) 2015, Yahoo\nCopyright (c) 2013-present, Facebook, Inc.\nCopyright (c) Facebook, Inc. and its affiliates.\nCopyright (c) 2015-present Dan Abramov",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/react-redux@7.2.8",
      "description": "Official React bindings for Redux",
      "supplier": {
        "url": [
          "https://react-redux.js.org"
        ]
      }
    },
    {
      "name": "redux-logger",
      "bom-ref": "redux-logger",
      "type": "library",
      "version": "3.0.6",
      "copyright": "Copyright (c) 2016 Eugene Rodionov",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/redux-logger@3.0.6",
      "description": "Logger for redux",
      "supplier": {
        "url": [
          "https://github.com/fcomb/redux-logger"
        ]
      }
    },
    {
      "name": "redux-mock-store",
      "bom-ref": "redux-mock-store",
      "type": "library",
      "version": "1.5.5",
      "copyright": "Copyright (c) 2017 Arnaud Benard\nCopyright (c) Jeremy Ashkenas, DocumentCloud and Investigative Reporters\nCopyright (c) jQuery Foundation and other contributors <https://jquery.org/>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/redux-mock-store@1.5.5",
      "description": "[![Circle CI](https://circleci.com/gh/arnaudbenard/redux-mock-store/tree/master.svg?style=svg)](https://circleci.com/gh/arnaudbenard/redux-mock-store/tree/master)",
      "supplier": {
        "url": [
          "https://github.com/arnaudbenard/redux-mock-store#readme"
        ]
      }
    },
    {
      "name": "redux-persist",
      "bom-ref": "redux-persist",
      "type": "library",
      "version": "6.0.0",
      "copyright": "Copyright (c) 2017 Zack Story",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/redux-persist@6.0.0",
      "description": "persist and rehydrate redux stores",
      "supplier": {
        "url": [
          "https://github.com/rt2zz/redux-persist"
        ]
      }
    },
    {
      "name": "run-script-os",
      "bom-ref": "run-script-os",
      "type": "library",
      "version": "1.1.6",
      "copyright": "Copyright (c) 2017 Charlie Guse",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/run-script-os@1.1.6",
      "description": "run-script-os is a tool that will let you use generic npm script commands that will pass through to os specific commands.",
      "supplier": {
        "url": [
          "https://github.com/charlesguse/run-script-os#readme"
        ]
      }
    },
    {
      "name": "stream",
      "bom-ref": "stream",
      "type": "library",
      "version": "0.0.2",
      "copyright": "Copyright (c) Joyent, Inc. and other Node contributors.\nCopyright (c) 2012 Julian Gruber",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/stream@0.0.2",
      "description": "Node.js streams in the browser",
      "supplier": {
        "url": [
          "https://github.com/juliangruber/stream"
        ]
      }
    },
    {
      "name": "Timers",
      "bom-ref": "Timers",
      "type": "library",
      "version": "0.1.1",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/timers@0.1.1",
      "description": "Up to 8 independent Timers. Count up or down, play sound or start application when finished.",
      "supplier": {
        "url": [
          "https://sourceforge.net/projects/timers-ao4b"
        ]
      }
    },
    {
      "name": "typicode/husky",
      "bom-ref": "typicode/husky",
      "type": "library",
      "version": "9.0.11",
      "copyright": "Copyright (c) 2021 typicode",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/husky@9.0.11",
      "description": "Prevents bad commit or push (git hooks, pre-commit, pre-push and all that stuff...)",
      "supplier": {
        "url": [
          "https://github.com/typicode/husky"
        ]
      }
    },
    {
      "name": "use-previous",
      "bom-ref": "use-previous",
      "type": "library",
      "version": "1.1.0",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/use-previous@1.1.0",
      "description": "React hook for remembering previous value.",
      "supplier": {
        "url": [
          "https://github.com/Andarist/use-previous#readme"
        ]
      }
    },
    {
      "name": "vis-data",
      "bom-ref": "vis-data",
      "type": "library",
      "version": "7.1.4",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vis-data@7.1.4",
      "description": "Manage unstructured data using DataSet. Add, update, and remove data, and listen for changes in the data.",
      "supplier": {
        "url": [
          "http://visjs.org/"
        ]
      }
    },
    {
      "name": "vis-timeline",
      "bom-ref": "vis-timeline",
      "type": "library",
      "version": "7.7.0",
      "copyright": "Copyright (c) 2011 Andrei Mackenzie\ncopyright (c) 2011-2017 Almende B.V, http://almende.com\nCopyright (c) 2014-present, Facebook, Inc.\ncopyright (c) 2017-2019 visjs contributors, https://github.com/visjs\nCopyright (c) hammerjs\nCopyright (c) Paul Johnston 1999 - 2009\nCopyright (c) 2011, Sebastian Tschan\nCopyright (c) 2014-2022 Denis Pushkarev (zloirock.ru)",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vis-timeline@7.7.0",
      "description": "Create a fully customizable, interactive timeline with items and ranges.",
      "supplier": {
        "url": [
          "https://github.com/visjs/vis-timeline"
        ]
      }
    },
    {
      "name": "vite-plugin-babel-macros",
      "bom-ref": "vite-plugin-babel-macros",
      "type": "library",
      "version": "1.0.6",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vite-plugin-babel-macros@1.0.6",
      "description": "Use babel macros with vite",
      "supplier": {
        "url": [
          "https://github.com/itsMapleLeaf/vite-plugin-babel-macros#readme"
        ]
      }
    },
    {
      "name": "vite-plugin-node-polyfills",
      "bom-ref": "vite-plugin-node-polyfills",
      "type": "library",
      "version": "0.22.0",
      "copyright": "Copyright (c) 2022 David R. Myers",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vite-plugin-node-polyfills@0.22.0",
      "description": "A Vite plugin to polyfill native Node modules for the browser",
      "supplier": {
        "url": [
          "https://github.com/voracious/vite-plugin-node-polyfills"
        ]
      }
    },
    {
      "name": "vite-plugin-svgr",
      "bom-ref": "vite-plugin-svgr",
      "type": "library",
      "version": "4.3.0",
      "copyright": "Copyright (c) 2021 Rongjian Zhang",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vite-plugin-svgr@4.3.0",
      "description": "Vite plugin to transform SVGs into React components",
      "supplier": {
        "url": [
          "https://github.com/pd4d10/vite-plugin-svgr#readme"
        ]
      }
    },
    {
      "name": "vite-tsconfig-paths",
      "bom-ref": "vite-tsconfig-paths",
      "type": "library",
      "version": "5.1.0",
      "copyright": "Copyright (c) Alec Larson\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https:// sindresorhus.com)",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vite-tsconfig-paths@5.1.0",
      "description": "Vite resolver for TypeScript compilerOptions.paths",
      "supplier": {
        "url": [
          "https://github.com/aleclarson/vite-tsconfig-paths#readme"
        ]
      }
    },
    {
      "name": "vitejs",
      "bom-ref": "vitejs",
      "type": "library",
      "version": "7.2.2",
      "copyright": "Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors\nCopyright (c) 2010 Sencha Inc.\nCopyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger\nCopyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>\nCopyright (c) 2011 LearnBoost\nCopyright (c) 2011-2017 TJ Holowaychuk <tj@vision-media.ca>\nCopyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker\nCopyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)\nCopyright (c) 2013 Arnout Kazemier and contributors\nCopyright (c) 2013 James Halliday (mail@substack.net)\nCopyright (c) 2013 Jonathan Ong <me@jongleberry.com>\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\nCopyright (c) 2013 Troy Goode <troygoode@gmail.com>\nCopyright (c) 2013-2017 Jared Hanson\nCopyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)\nCopyright (c) 2014 Arnout Kazemier\nCopyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>\nCopyright (c) 2014 Jonathan Ong <me@jongleberry.com>\nCopyright (c) 2014 Maxime Thirouin, Jason Campbell\nCopyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>\nCopyright (c) 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Simon Lydell\nCopyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>\nCopyright (c) 2014-2020 Teambition\nCopyright (c) 2014-present, Jon Schlinkert.\nCopyright (c) 2015 Alexey Litvinov\nCopyright (c) 2015 Andreas Lubbe\nCopyright (c) 2015, 2018, 2019 Rich Harris\nCopyright (c) 2015 Tiancheng \"Timothy\" Gu\nCopyright (c) 2015 Unshift.io, Arnout Kazemier,  the Contributors.\nCopyright (c) 2015, 2019 Elan Shanker\nCopyright (c) 2015, David Bonnet <david@bonnet.cc>\nCopyright (c) 2015, 2018 Glen Maddern\nCopyright (c) 2015, Scott Motte\nCopyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>\nCopyright (c) 2015-present, Facebook, Inc.\nCopyright (c) 2016 Luigi Pinca and contributors\nCopyright (c) 2016 Zeit, Inc.\nCopyright (c) 2016, Scott Motte\nCopyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors\nCopyright (c) 2017-present, Yuxi (Evan) You\nCopyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>\nCopyright (c) 2018-2021 Josh Junon\nCopyright (C) 2018-2022 Guy Bedford\nCopyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)\nCopyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)\nCopyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)\nCopyright (c) 2019-present, VoidZero Inc. and Vite contributors\nCopyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\nCopyright (c) 2021-present dominikg and\nCopyright (c) 2022 Anthony Fu <https://github.com/antfu>\nCopyright (c) 2022 Anton Kastritskiy\nCopyright (c) 2023-present, sapphi-red\nCopyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)\nCopyright (c) Bogdan Chadkin <trysound@yandex.ru>\nCopyright (c) Denis Malinochkin\nCopyright (c) EGOIST <0x142857@gmail.com> (https://github.com/egoist)\nCopyright (c) Felix B\nCopyright (c) Feross Aboukhadijeh\nCopyright (c) Kevin M\nCopyright (c) Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)\nCopyright (c) Pooya Parsa <pooya@pi0.io>\nCopyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\nCopyright (c) 2013 Thorsten Lorenz.\nCopyright (c) 2015 Mark Dalgleish <mark.john.dalgleish@gmail.com>\nCopyright (c) 2015-present Alexander Madyankin <alexander@madyankin.name>\nCopyright (c) 2016 Bogdan Chadkin <trysound@yandex.ru>\nCopyright (c) 2019, 2022 Justin Ridgewell <jridgewell@google.com>\nCopyright (c) Eemeli Aro <eemeli@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vite@7.2.2",
      "description": "Next generation frontend tooling. It's fast!",
      "supplier": {
        "url": [
          "http://vitejs.dev/"
        ]
      }
    },
    {
      "name": "vm-browserify",
      "bom-ref": "vm-browserify",
      "type": "library",
      "version": "1.1.2",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/vm-browserify@1.1.2",
      "description": "require('vm') like in node but for the browser",
      "supplier": {
        "url": [
          "https://github.com/substack/vm-browserify"
        ]
      }
    },
    {
      "name": "whitequark/ipaddr.js",
      "bom-ref": "whitequark/ipaddr.js",
      "type": "library",
      "version": "2.1.0",
      "copyright": "Copyright (c) 2011-2017 whitequark <whitequark@whitequark.org>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/ipaddr.js@2.1.0",
      "description": "IP address manipulation library in JavaScript (CoffeeScript, actually)\r\r\n\r\r\nipaddr.js is a small (1.9K minified and gzipped) library for manipulating IP addresses in JavaScript environments. It runs on both CommonJS runtimes (e.g. nodejs) and in a web browser.\r\r\n\r\r\nipaddr.js allows you to verify and parse string representation of an IP address, match it against a CIDR range or range list, determine if it falls into some reserved ranges (examples include loopback and private ranges), and convert between IPv4 and IPv4-mapped IPv6 addresses.",
      "supplier": {
        "url": [
          "https://github.com/whitequark/ipaddr.js"
        ]
      }
    },
    {
      "name": "yannickcr/eslint-plugin-react",
      "bom-ref": "yannickcr/eslint-plugin-react",
      "type": "library",
      "version": "7.34.1",
      "copyright": "Copyright (c) 2014-2015 by Vitaly Puzrin\nCopyright (c) 2014 Yannick Croissant\nCopyright (c) 2015 Alberto Rodr\nCopyright (c) 2015 Gyandeep Singh.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:npm/eslint-plugin-react@7.34.1",
      "description": "React specific linting rules for ESLint",
      "supplier": {
        "url": [
          "https://github.com/yannickcr/eslint-plugin-react"
        ]
      }
    },
    {
      "name": "apple-oss-distributions/mDNSResponder\n",
      "bom-ref": "apple-oss-distributions/mDNSResponder\n",
      "type": "library",
      "version": "mDNSResponder-2559.60.39.0.1",
      "copyright": "Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) \nCopyright (c) 1991, 1993 The Regents of the University of California. \nCopyright (c) 1997 - 1999 Hewlett-Packard Company.\nCopyright (c) 1997 - 1999 Microsoft Corporation\nCopyright (c) 1997-2024 Apple Computer, Inc. \nCopyright (c) 1999-2002 The OpenSSL Project. \nCopyright (c) 2004 National ICT Australia Ltd \nCopyright (c) 2009 Porchdog Software, Inc. ",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ]
    },
    {
      "name": "avahi",
      "bom-ref": "avahi",
      "type": "library",
      "version": "0.8",
      "copyright": "Copyright (c) 2003-2004, Apple Computer, Inc.\nCopyright (c) 2003, 2004 Porchdog Software.\nCopyright (c) 2004-2009 by the Avahi developers.\nCopyright (c) Sandino Flores Moreno \nCopyright (c) Steven G. Johnson <stevenj@alum.mit.edu> \nCopyright (c) 2004 Oren Ben-Kiki \n",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "cpe": "cpe:2.3:a:avahi:avahi:0.8:*:*:*:*:*:*:*",
      "purl": "pkg:deb/debian/avahi@0.8-5%2Bdeb11u2",
      "description": "Avahi is an Implementation the DNS Service Discovery and Multicast DNS specifications for Zeroconf Computing. It uses D-Bus for communication between user applications and a system daemon. The daemon is used to coordinate application efforts in caching replies, necessary to minimize the traffic imposed on networks.",
      "supplier": {
        "url": [
          "https://avahi.org/"
        ]
      },
      "pedigree": {
        "patches": [
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2021-3468",
                "name": "CVE-2021-3468",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3468"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2021-3502",
                "name": "CVE-2021-3502",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3502"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2021-26720",
                "name": "CVE-2021-26720",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-26720"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-1981",
                "name": "CVE-2023-1981",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-1981"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-38469",
                "name": "CVE-2023-38469",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-38469"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-38470",
                "name": "CVE-2023-38470",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-38470"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-38471",
                "name": "CVE-2023-38471",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-38471"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-38472",
                "name": "CVE-2023-38472",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-38472"
                }
              }
            ]
          },
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2023-38473",
                "name": "CVE-2023-38473",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-38473"
                }
              }
            ]
          }
        ]
      }
    },
    {
      "name": "Bash",
      "bom-ref": "Bash",
      "type": "library",
      "version": "5.2.15",
      "copyright": "Copyright (c) 1984-2019 Free Software Foundation, Inc.",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "description": "Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file.  Bash also incorporates useful features from the Korn and C shells (ksh and csh).\r\r\n\r\r\nBash is ultimately intended to be a conformant implementation of the IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2).",
      "supplier": {
        "url": [
          "http://www.gnu.org/software/bash/"
        ]
      }
    },
    {
      "name": "busybox",
      "bom-ref": "busybox",
      "type": "library",
      "version": "1_37_0",
      "copyright": "Copyright (c) 1991, 1992 Linus Torvalds.\nCopyright (c) 1988-2007 Free Software Foundation, Inc.\nCopyright (c) 2003-2006 Rob Landley <rob@landley.net>\nCopyright (c) 2005-2006 Bernhard Reutner-Fischer <rep.nop@aon.at>\nCopyright (c) 2006-2009 Bernhard Reutner-Fischer <busybox@busybox.net>\nCopyright (c) 2006-2018 by Denys Vlasenko <vda.linux@gmail.com>\nCopyright (c) 1996, 1997 Linux International.\nCopyright (c) 2003-2008, 2010 Rob Landley <rob@landley.net>\nCopyright (c) 2008, BusyBox Team\nCopyright (c) 2001-2006 Vladimir Oleynik  <dzo@simtreas.ru>\nCopyright (c) 1999-2005 by Erik Andersen <andersen@codepoet.org>\nCopyright (c) 1997-2002 Richard Gooch\nCopyright (c) 1999-2000 by Randolph Chung <tausq@debian.org>\nCopyright (c) 1996-2008 Markus Franz Xaver Johannes Oberhumer\nCopyright (c) 2016-2018 Kaarle Ritvanen\nCopyright (c) 2000-2002 Matt Kraai <kraai@alumni.carnegiemellon.edu>\nCopyright (c) 2006-2007 Gabriel Somlo <somlo at cmu.edu>\nCopyright (c) 2003, 2005-2008, 2014 by Tito Ragusa <farmatito@tiscali.it>\nCopyright (c) 2005 by Tito Ragusa <tito-wolit@tiscali.it> \nCopyright (c) 2009 Stefan Seyfried <seife@sphairon.com>\nCopyright (c) 2000, Axis Communications AB\nCopyright (c) Eero Tamminen <oak at welho dot com>\nCopyright (c) Lauri Kasanen\nCopyright (c) 2001-2003, 2005 Manuel Novoa III (mjn3@codepoet.org)\nCopyright (c) 2002 by Kai Germaschewski <kai.germaschewski@gmx.de>\nCopyright (c) 1991-2, RSA Data Security, Inc.\nCopyright (c) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)\nCopyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr)\nCopyright (c) 1992-1993 Jean-loup Gailly.\nCopyright (c) 1992-1998 Michael K. Johnson \nCopyright (c) 1993 Rick Sladkey <jrs@world.std.com> ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0 Only"
          }
        }
      ],
      "cpe": "cpe:2.3:a:busybox:busybox:1.37.0:*:*:*:*:*:*:*",
      "purl": "pkg:deb/debian/busybox@1.37.0-5?epoch=1",
      "description": "BusyBox",
      "supplier": {
        "url": [
          "https://busybox.net/"
        ]
      },
      "pedigree": {
        "patches": [
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2025-46394 ",
                "name": "CVE-2025-46394 ",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-46394"
                }
              }
            ]
          }
        ]
      }
    },
    {
      "name": "Bzip2",
      "bom-ref": "Bzip2",
      "type": "library",
      "version": "1.0.8",
      "copyright": "Copyright (c) 1996-2010 Julian Seward <jseward@bzip.org>\nCopyright (c) 1999, 2000, 2001, 2002 Philippe Troin \nCopyright (c) 2004-2007 Anibal Monsalve Salazar. ",
      "licenses": [
        {
          "license": {
            "name": "Bzip2 License"
          }
        }
      ],
      "purl": "pkg:deb/debian/bzip2@1.0.8-5.1",
      "description": "bzip2 is a freely available, patent free (see below), high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.",
      "supplier": {
        "url": [
          "http://www.bzip.org/"
        ]
      }
    },
    {
      "name": "cifs-utils",
      "bom-ref": "cifs-utils",
      "type": "library",
      "version": "6.15",
      "copyright": "Copyright (c) 2003,2010 Steve French  (sfrench@us.ibm.com)\nCopyright (c) 2011 Shirish Pargaonkar (shirishp@us.ibm.com) \nCopyright (c) 2008 Jeremy Allison (jra@samba.org)\nCopyright (c) 2010 Igor Druzhinin (jaxbrigs@gmail.com)\nCopyright (c) 2024 David Voit (david.voit@gmail.com)\nCopyright (c) 1992-1998, 2001 Andrew Tridgell \nCopyright (c) 2002 Jim McDonough <jmcd@us.ibm.com> \nCopyright (c) 2003 Luke Howard \nCopyright (c) 2005-2008 Jelmer Vernooij \nCopyright (c) 2018-2019 Aurelien Aptel <aaptel@suse.com>\nCopyright (c) 2019 Ronnie Sahlberg <lsahlberg@redhat.com>\nCopyright (c) 2019 Kenneth D'souza (kdsouza@redhat.com)",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/cifs-utils@6.15-1.fc34?arch=armv7hl",
      "supplier": {
        "url": [
          "http://www.samba.org/~jlayton/cifs-utils/"
        ]
      }
    },
    {
      "name": "curl",
      "bom-ref": "curl",
      "type": "library",
      "version": "8.18.0",
      "copyright": "Copyright (c) 1996 - 2022, Daniel Stenberg, <daniel@haxx.se>\nCopyright (c) 1998 - 2018, Florin Petriuc, <petriuc.florin@gmail.com>\nCopyright (c) 2012 - 2016, Linus Nielsen Feltzing, <linus@haxx.se>\nCopyright (c) 2014 - 2019, Steve Holme, <steve_holme@hotmail.com>\nCopyright (c) 2014, Bill Nagel <wnagel@tycoint.com>, Exacq Technologies\nCopyright (c) 2001 Alexander Peslyak",
      "licenses": [
        {
          "license": {
            "name": "curl License"
          }
        }
      ],
      "description": "Curl is a tool and libcurl is a library for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TFTP, SCP, SFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3, RTSP and RTMP. libcurl offers a myriad of powerful features",
      "supplier": {
        "url": [
          "https://curl.se/"
        ]
      }
    },
    {
      "name": "D-Bus",
      "bom-ref": "D-Bus",
      "type": "library",
      "version": "1.14.10",
      "copyright": "Copyright (c) 1989, 1991, 1996-2018 Free Software Foundation, Inc. \nCopyright (c) 1994 X Consortium\nCopyright (c) 2002-2007 Red Hat Inc. \nCopyright (c) 2002, 2003 CodeFactory AB \nCopyright (c) 2003-2004 Lawrence E. Rosen.\nCopyright (c) 2010 \"Cowboy\" Ben Alman \nCopyright (c) 2013, 2018 Steven Benner (http://stevenbenner.com/)\nCopyright (c) 2011, John Resig\nCopyright (c) 2011, The Dojo Foundation \nCopyright (c) Vasil Dinkov, Vadikom Web Ltd. \nCopyright (c) 1991-1993 The Regents of the University of California \nCopyright (c) 1994-1995 A.M. Kuchling\nCopyright (c) 2002 Michael Meeks\nCopyright (c) 2008 Laurent Montel, <montel@kde.org> \nCopyright (c) 2005 g10 Code GmbH\nCopyright (c) 1997-2019 by Dimitri van Heesch\nCopyright (c) 2007 Ariel Flesler - aflesler\nCopyright (c) 2003-2005 Thomas Vander Stichele <thomas at apestaart dot org>\nCopyright (c) 2005 Lennart Poettering\nCopyright (c) 2005 Novell, Inc. \nCopyright (c) 2006 Christian Ehrlicher <ch.ehrlicher@gmx.de> \nCopyright (c) 2006 Peter K \nCopyright (c) 2006-2013, 2015 Ralf Habacker <ralf.habacker@freenet.de>\nCopyright (c) 2006 Thiago Macieira <thiago@kde.org>\nCopyright (c) 2007, Tanner Lovelace <lovelace@wayfarer.org> \nCopyright (c) 2008, Benjamin Reed <rangerrick@befunk.com> \nCopyright (c) 2008-2009, Colin Walters <walters@verbum.org>\nCopyright (c) 2009 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.net \nCopyright (c) 2009, Jonas B\nCopyright (c) 1994 Sun Microsystems, Inc.\nCopyright (c) 2006, Tim Beaulen <tbscope@gmail.com>\nCopyright (c) 2008 Guido U. Draheim <guidod@gmx.de>\nCopyright (c) 2008 John Darrington <j.darrington@elvis.murdoch.edu.au>\nCopyright (c) 2008-2009 Tom Howard <tomhoward@users.sf.net>\nCopyright (c) 2009 Allan Caffee <allan.caffee@gmail.com>\nCopyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>\nCopyright (c) 2011 Rhys Ulerich <rhys.ulerich@gmail.com>\nCopyright (c) 2011, Raphael Kubo da Costa <kubito@gmail.com>\nCopyright (c) 2012 Christian Persch\nCopyright (c) 2012 Dan Winship\nCopyright (c) 2012 Paolo Borelli \nCopyright (c) 2012 Xan Lopez \nCopyright (c) 2014 Mike Frysinger <vapier@gentoo.org>\nCopyright (c) 2012, 2014, 2015-2016 Philip Withnall <philip@tecnocode.co.uk>\nCopyright (c) 2015 David King <amigadave@amigadave.com>\nCopyright (c) 2015 Enrico M. Crisostomo <enrico.m.crisostomo@gmail.com>\nCopyright (c) 2015,2018 Bastien ROUCARIES \nCopyright (c) 2017, 2018 Reini Urban <rurban@cpan.org>\nCopyright (c) 2004 Eric Poech \nCopyright (c) 2004 Robert Shearman\nCopyright (c) 2003 Philip Blundell <philb@gnu.org>\nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2010-2012 Nokia Corporation\nCopyright (c) 2012-2018 Collabora Ltd. \nCopyright (c) 2013 Intel Corporation\nCopyright (c) 2017 Shin-ichi MORITA <shin1morita@gmail.com>\nCopyright (c) 2018 KPIT Technologies Ltd. \nCopyright (c) 2018 Manish Narang <manrock007@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "Academic Free License 2.1"
          }
        }
      ],
      "purl": "pkg:deb/debian/dbus@1.14.10-1",
      "description": "D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a \"single instance\" application or daemon, and to launch applications and daemons on demand when their services are needed.",
      "supplier": {
        "url": [
          "http://www.freedesktop.org/wiki/Software/dbus"
        ]
      }
    },
    {
      "name": "Dnsmasq",
      "bom-ref": "Dnsmasq",
      "type": "library",
      "version": "2.9",
      "copyright": "Copyright (c) 1989, 1991, 2007 Free Software Foundation, Inc. \nCopyright (c) 2004 Thomas Tuttle\nCopyright (c) 2006 by Neil Fisher \nCopyright (c) 2000-2018 Simon Kelley \nCopyright (c) 2012 Giovanni Bajo <rasky@develer.com> \nCopyright (c) 2013 Jason A. Donenfeld <Jason@zx2c4.com>\nCopyright (c) 2014 Sven Falempin",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ]
    },
    {
      "name": "docker",
      "bom-ref": "docker",
      "type": "library",
      "version": "v28.3.2",
      "copyright": "Copyright (c) 2012-2021 Docker, Inc.\nCopyright (c) 2020 Docker Compose CLI authors\nCopyright (c) 2020 Docker Compose authors\nCopyright (c) 2009-2023 The Go Authors.\nCopyright (c) 2013-2018 The GoGo Authors.\nCopyright (c) 2011-2016 The Snappy-Go Authors. \nCopyright (c) 2014-2022 gRPC authors.\nCopyright (c) 2012-2022 The Prometheus Authors\nCopyright (c) 2014, 2017 Prometheus Team\nCopyright (c) 2008-2021 Google Inc.\nCopyright (c) 2015-2022 Google LLC\nCopyright (c) 2015 Microsoft Corporation\nCopyright (c) 2014-2022 The Kubernetes Authors.\nCopyright (c) 2016-2022 The Linux Foundation\nCopyright (c) 2004, 2006 The Linux Foundation and its contributors.\nCopyright (c) 2012-2018 The Gorilla Authors. \nCopyright (c) 2012-2016 Dave Collins <dave@davec.name>\nCopyright (c) 2011-2019, 2023 Canonical Ltd.\nCopyright (c) 2013-2023 The Cobra Authors\nCopyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors\nCopyright (c) 2013-2021 Thomas Pelletier, Eric Anderton\nCopyright (c) 2015-2020, Tim Heckman\nCopyright (c) 2014-2019 Matt Butcher and Matt Farina",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:github/dotcloud/docker@v28.3.2",
      "description": "Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications. Consisting of Docker Engine, a portable, lightweight runtime and packaging tool, and Docker Hub, a cloud service for sharing applications and automating workflows, Docker enables apps to be quickly assembled from components and eliminates the friction between development, QA, and production environments. As a result, IT can ship faster and run the same app, unchanged, on laptops, data center VMs, and any cloud.",
      "supplier": {
        "url": [
          "https://github.com/docker/swarm"
        ]
      }
    },
    {
      "name": "docker-cli",
      "bom-ref": "docker-cli",
      "type": "library",
      "version": "v28.3.2",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "description": "The Docker CLI",
      "supplier": {
        "url": [
          "https://github.com/docker/cli"
        ]
      }
    },
    {
      "name": "docker-compose",
      "bom-ref": "docker-compose",
      "type": "library",
      "version": "1.24.1",
      "copyright": "Copyright (c) 2020 Docker Compose CLI authors\nCopyright (c) 2020 Docker Compose authors",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:pypi/docker-compose@1.24.1",
      "description": "Define and run complex applications using Docker",
      "supplier": {
        "url": [
          "https://docs.docker.com/compose/"
        ]
      }
    },
    {
      "name": "dosfstools",
      "bom-ref": "dosfstools",
      "type": "library",
      "version": "v4.2",
      "copyright": "Copyright (c) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch>\nCopyright (c) 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>\nCopyright (c) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch>",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/dosfstools@4.2-1.1",
      "description": "dosfstools consists of the programs mkfs.fat, fsck.fat and fatlabel to create, check and label file systems of the FAT family. The dosfstools are licensed under the GNU GPL version 3 or later. See the file COPYING for details.",
      "supplier": {
        "url": [
          "http://www.daniel-baumann.ch/software/dosfstools/"
        ]
      }
    },
    {
      "name": "e2fsprogs",
      "bom-ref": "e2fsprogs",
      "type": "library",
      "version": "v1.47.0",
      "copyright": "Copyright (c) 1995-1996 Michael Nonweiler <mrn20@cam.ac.uk>\nCopyright (c) 1997 Klee Dienes \nCopyright (c) 1997-2003 Yann Dirson <dirson@debian.org> \nCopyright (c) 2001 Alcove <http://www.alcove.com/> \nCopyright (c) 1993-1996, 2003-2007 Theodore Ts \nCopyright (c) 1987 by the Student Information Processing Board of the Massachusetts Institute of Technology\nCopyright (c) 2000 Andreas Gruenbacher, <a.gruenbacher@computer.org> */ \nCopyright (c) 1991, 1992 Linus Torvalds\nCopyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr)\nCopyright (c) 2010 Red Hat, Inc., Lukas Czerner <lczerner@redhat.com> \nCopyright (c) Andrew Tridgell 1999-2004 \nCopyright (c) 2003,2004 Cluster File Systems, Inc, info@clusterfs.com ",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.0+"
          }
        }
      ],
      "description": "The e2fsprogs package contains the utilities for handling the ext2 file system. It also supports the ext3 and ext4 journaling file systems.",
      "supplier": {
        "url": [
          "http://ext4.wiki.kernel.org/"
        ]
      }
    },
    {
      "name": "eclipse/paho.mqtt.cpp",
      "bom-ref": "eclipse/paho.mqtt.cpp",
      "type": "library",
      "version": "v1.2.0 ",
      "copyright": "Copyright (c) 2013-2020 Frank Pagliughi <fpagliughi@mindspring.com>\nCopyright (c) 2016 Guilherme Ferreira <guilherme.maciel.ferreira@gmail.com>\nCopyright (c) 2016-2017 Guilherme M. Ferreira <guilherme.maciel.ferreira@gmail.com>\nCopyright (c) 2009-2020, IBM Corp.\nCopyright (c) 2020 Matthias Klein <matthias@extraklein.de>\nCopyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>\nCopyright (c) 2012 Zack Weinberg <zackw@panix.com>\nCopyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>\nCopyright (c) 2014, 2015 Google Inc. (contributed by Alexey Sokolov <sokolov@google.com>)\nCopyright (c) 2015 Moritz Klammler <moritz@klammler.eu>\nCopyright (c) 2015 Paul Norman <penorman@mac.com>",
      "licenses": [
        {
          "license": {
            "name": "Eclipse Distribution License 1.0"
          }
        }
      ]
    },
    {
      "name": "fcgiwrap",
      "bom-ref": "fcgiwrap",
      "type": "library",
      "version": "20150419-snapshot-99c942c9",
      "copyright": "Copyright (c) 2007-2013 Grzegorz Nosek ",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:github/gnosek/fcgiwrap@99c942c90063c73734e56bacaa65f947772d9186",
      "description": "fcgiwrap is a simple server for running CGI applications over FastCGI. It hopes to provide clean CGI support to Nginx (and other web servers that may need it).",
      "supplier": {
        "url": [
          "http://nginx.localdomain.pl/wiki/FcgiWrap"
        ]
      }
    },
    {
      "name": "gkernel: rng-tools / ethtool",
      "bom-ref": "gkernel: rng-tools / ethtool",
      "type": "library",
      "version": "v5.18",
      "copyright": "Copyright (c) 1994 X Consortium \nCopyright (c) 1998, 1999 David S. Miller (davem@dm.cobaltmicro.com) \nCopyright (c) 1998, 1999 David S. Miller (davem@redhat.com) \nCopyright (c) 2001, 2005 Jeff Garzik <jgarzik@mandrakesoft.com>\nCopyright (c) 2001, 2005 Jeff Garzik <jgarzik@pobox.com> \nCopyright (c) 2003 Advanced Micro Devices Inc. \nCopyright (c) 2004 Intracom S.A., Pantelis Antoniou <panto@intracom.gr>\nCopyright (c) 2004, 2005 Zultys Technologies\n                 Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>\nCopyright (c) 2004 IBM Corporation (jklewis@us.ibm.com)\nCopyright (c) 2006 Fabric7 Systems, Inc \nCopyright (c) 2004, 2006 Stephen Hemminger <shemminger@osdl.org>\nCopyright (c) 2001, 2008 Sun Microsystems, Inc. (thockin@sun.com) \nCopyright (c) 2007-2009 STMicroelectronics Ltd\nCopyright (c) 2009-2013 Solarflare Communications Inc.\nCopyright (c) 2002, 2006-2013 Intel Corporation  \n                 (eli.kupermann@intel.com, christopher.leech@intel.com, scott.feldman@intel.com) \nCopyright (c) 2014 Altera Corporation\nCopyright (c) 2014 Cumulus networks Inc.\nCopyright (c) 2015 VMware Inc.\nCopyright (c) 2016 FUJITSU LIMITED\nCopyright (c) 2008-2010, 2013-2016 Ben Hutchings\nCopyright (c) 1989, 1991, 1994-2017 Free Software Foundation, Inc.\nCopyright (c) 2001, 2008, Sun Microsystems \nCopyright (c) 2001-2005, Eric Delaunay <delaunay@debian.org> \nCopyright (c) 2009, John W. Linville \nCopyright (c) 2012, 2013, Mark Einon\nCopyright (c) 2012, Aurelien Guillaume ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/ethtool@5.18-1?epoch=1",
      "description": "This utility allows querying and changing settings such as speed,\r\nport, auto-negotiation, PCI locations and checksum offload on many\r\nnetwork devices, especially of Ethernet devices.",
      "supplier": {
        "url": [
          "http://www.kernel.org/pub/software/network/ethtool/"
        ]
      }
    },
    {
      "name": "Glib",
      "bom-ref": "Glib",
      "type": "library",
      "version": "2.86.1",
      "copyright": "Copyright (c) 1995-1998 Peter Mattis, Spencer Kimball and Josh MacDonald\nCopyright (c) 1995-1997, 1999, 2002 Peter Mattis, Red Hat, Inc.\nCopyright (c) 1991-2013 Free Software Foundation, Inc. \nCopyright (c) 1997-2001 Tim Janik and Red Hat, Inc. \nCopyright (c) 1997, 1998, 2000-2003, 2005, 2007 Tim Janik \nCopyright (c) 1998-2018 Red Hat, Inc. \nCopyright (c) 1999, 2000 Scott Wimer \nCopyright (c) 1999, 2000 Tom Tromey \nCopyright (c) 2001 Hans Breuer \nCopyright (c) 2000, 2004 Tor Lillqvist \nCopyright (c) 2004 Anders Carlsson <andersca@gnome.org> \nCopyright (c) 2001 Matthias Clasen <matthiasc@poet.de>\nCopyright (c) 2004-2005 Matthias Clasen <mclasen@redhat.com> \nCopyright (c) 2005-2006 Alexander Larsson <alexl@redhat.com> \nCopyright (c) 2005-2007, Marco Barisione <marco@barisione.org>\nCopyright (c) 2005-2008 Imendio AB \nCopyright (c) 2005 Tim Janik \nCopyright (c) 2005-2007 Emmanuele Bassi <ebassi@gnome.org>\nCopyright (c) 2010 Emmanuele Bassi <ebassi@linux.intel.com>\nCopyright (c) 2008 Christian Kellner, Samuel Cormier-Iijima\nCopyright (c) 2008 Clemens N. Buss <cebuzz@gmail.com>\nCopyright (c) 2008-2010 Codethink Limited \nCopyright (c) 2009-2010 Christian Hergert <chris@dronelabs.com> \nCopyright (c) 2010 Intel Corp. \nCopyright (c) 2010 Christian Kellner \nCopyright (c) 2008-2013, 2015 Collabora Ltd. <http://www.collabora.co.uk/> \nCopyright (c) 2017 Collabora Inc. \nCopyright (c) 2011-2015 Canonical Limited \nCopyright (c) 2011 Canonical Ltd. \nCopyright (c) 2011 Stef Walter <stefw@collabora.co.uk> \nCopyright (c) 2012-2013 Colin Walters <walters@verbum.org>\nCopyright (c) 2013, 2015 Lars Uebernickel \nCopyright (c) 2014 NICE s.r.l. \nCopyright (c) 2007-2009, 2011, 2015 Ryan Lortie <desrt@desrt.ca>\nCopyright (c) 1995, A.M. Kuchling \nCopyright (c) 1999, 2003 Red Hat Software \nCopyright (c) 2000 Eazel, Inc. \nCopyright (c) 1998, 2000, 2003 Sebastian Wilhelmi\nCopyright (c) 2000-2003 Ximian Inc. \nCopyright (c) 2000-2013 Julian Seward\nCopyright (c) 2001, James Henstridge\nCopyright (c) 2003 Noah Levitt \nCopyright (c) 2003, 2004 Jonathan Blandford <jrb@alum.mit.edu> \nCopyright (c) 2006 Behdad Esfahbod \nCopyright (c) 2006 Dave Benson\nCopyright (c) 2005-2007 John McCutchan <john@johnmccutchan.com> \nCopyright (c) 2006 Stefan Westerfeld \nCopyright (c) 2007 Openismus GmbH\nCopyright (c) 2007 Patrick Hulin\nCopyright (c) 2008, 2009, 2011 Nokia Corporation\nCopyright (c) 2007 Sebastian Dr \nCopyright (c) 2007, 2010 Sven Herzberg\nCopyright (c) 2008 by Claus Tondering.\nCopyright (c) 2009 Benjamin Otte <otte@gnome.org> \nCopyright (c) 2010 Christian Persch\nCopyright (c) 2010 Mikhail Zabaluev <mikhail.zabaluev@gmail.com>\nCopyright (c) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk> \nCopyright (c) 2011 Google, Inc\nCopyright (c) 1998 Owen Taylor \nCopyright (c) 2016 Endless Mobile, Inc. \nCopyright (c) 2010 Novell, Inc. ",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ]
    },
    {
      "name": "GNU Libtool",
      "bom-ref": "GNU Libtool",
      "type": "library",
      "version": "2.4.6",
      "copyright": "Copyright (c) 1989, 1991, 1996-201 Free Software Foundation, Inc. \nCopyright (c) 1994 X Consortium ",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "description": "GNU Libtool hides the complexity of using shared libraries behind a consistent, portable interface.   GNU Libtool ships with GNU libltdl, which hides the complexity of loading dynamic runtime libraries (modules) behind a consistent, portable interface.",
      "supplier": {
        "url": [
          "http://www.gnu.org/software/libtool/"
        ]
      }
    },
    {
      "name": "GNU tar",
      "bom-ref": "GNU tar",
      "type": "library",
      "version": "v1.35",
      "copyright": "Copyright (c) 1984-1985. 1987-2016 Free Software Foundation, Inc.",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "purl": "pkg:rpm/redhat/tar@1.35-7.el10_0.2?arch=aarch64&epoch=2",
      "description": "The Tar program provides the ability to create tar archives, as well as various other kinds of manipulation.",
      "supplier": {
        "url": [
          "http://savannah.gnu.org/projects/tar/"
        ]
      }
    },
    {
      "name": "i2c-tools",
      "bom-ref": "i2c-tools",
      "type": "library",
      "version": "4.3",
      "copyright": "Copyright (c) 1989, 1991, 1999 Free Software Foundation, Inc. \nCopyright (c) 1998, 1999 Philip Edelbrock <phil@netroedge.com> \nCopyright (c) 1998-2004 Mark D. Studebaker <mdsxyz123@yahoo.com>\nCopyright (c) 1998-2004 Frodo Looijaard <frodol@dds.nl>\nCopyright (c) 2002 James Simmons <jsimmons@users.sf.net>\nCopyright (c) 2002-2017 Jean Delvare <jdelvare@suse.de>\nCopyright (c) 2005-2007 Mark M. Hoffman <mhoffman@lightlink.com> \nCopyright (c) 2009 Mike Frysinger <vapier@gentoo.org>\nCopyright (c) 2013 Jaromir Capik\nCopyright (c) 2015-17 Renesas Electronics Corporation\nCopyright (c) 2015-17 Wolfram Sang <wsa@sang-engineering.com>\nCopyright (c) 2002-2003 Stefano Barbato \nCopyright (c) 1995-1997 Simon G. Vogl ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/i2c-tools@4.3-1",
      "description": "heterogeneous set of I2C tools for Linux\r\nThis package contains a heterogeneous set of I2C tools for Linux: a bus\r\nprobing tool, a chip dumper, register-level access helpers, EEPROM\r\ndecoding scripts, and more.",
      "supplier": {
        "url": [
          "http://www.lm-sensors.org"
        ]
      }
    },
    {
      "name": "iproute2",
      "bom-ref": "iproute2",
      "type": "library",
      "version": "5.18.0",
      "copyright": "Copyright (c) 2012 Florian Westphal <fw@strlen.de>\nCopyright (c) 2018 Eyal Birger <eyal.birger@gmail.com> \nCopyright (c) IBM Corp. 2001, 2004 \nCopyright (c) 1995 Simon \"Guru Aleph-Null\" Janes, NCM: Network and Communications Management, Inc. \nCopyright (c) 1999, Thomas Davis, tadavis@lbl.gov\nCopyright (c) 1989, 1991 Free Software Foundation, Inc. \nCopyright (c) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>\nCopyright (c) 2001 by Robert Olsson <robert.olsson@its.uu.se> \nCopyright (c) 2000-2002 Joakim Axelsson <gozem@linux.nu>, Patrick Schaaf <bof@bof.de>, Martin Josefsson <gandalf@wlug.westbo.se> \nCopyright (c) 2003-2011 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> \nCopyright (c) 2004 by Harald Welte <laforge@gnumonks.org>\nCopyright (c) 2011-2012 Kathleen Nichols <nichols@pollere.com>\nCopyright (c) 2011-2012 Van Jacobson <van@pollere.com> \nCopyright (c) 2012 Michael D. Taht <dave.taht@bufferbloat.net> \nCopyright (c) 2013 Cisco Systems, Inc.\nCopyright (c) 2013 Terry Lam <vtlam@google.com>\nCopyright (c) 2012-2015 Eric Dumazet <edumazet@google.com>\nCopyright (c) 2014-2018 Jonathan Morton <chromatix99@gmail.com>\nCopyright (c) 2017-2018 Toke H\nCopyright (c) 2004-2007 USAGI/WIDE Project\nCopyright (c) 1982, 1986, 1993 The Regents of the University of California.\nCopyright (c) 1999-2000 Cisco, Inc. \nCopyright (c) 1999-2001 Motorola, Inc. \nCopyright (c) 2002 Intel Corp. \nCopyright (c) 2002-2007 Volkswagen Group Electronic Research\nCopyright (c) 2003-2006, 2014-2016 Ericsson AB\nCopyright (c) 2005-2006, 2008, 2019 Intel Corporation. \nCopyright (c) 2005 PathScale, Inc.\nCopyright (c) 2005 Topspin Communications.\nCopyright (c) 2005, 2006 Cisco Systems.\nCopyright (c) 2005, 2010-2011, Wind River Systems\nCopyright (c) 2006, 2016-2017 Mellanox Technologies.\nCopyright (c) 2009 Wolfgang Grandegger <wg@grandegger.com>\nCopyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>\nCopyright (c) 2011 Felix Fietkau <nbd@openwrt.org>\nCopyright (c) 2011-2014 PLUMgrid\nCopyright (c) 2011 Czech Technical University in Prague\nCopyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>\nCopyright (c) 2016 Jiri Pirko <jiri@mellanox.com> \nCopyright (c) 2015 Sabrina Dubroca <sd@queasysnail.net> \nCopyright (c) 2016, Amir Vadai <amir@vadai.me>\nCopyright (c) 2016, Jamal Hadi Salim \nCopyright (c) 2018 Facebook\nCopyright (c) 2017-19 David Ahern <dsahern@gmail.com>\nCopyright (c) 2019 Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "description": "Iproute2 is a collection of utilities for controlling TCP / IP networking and traffic control in Linux.",
      "supplier": {
        "url": [
          "http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2"
        ]
      }
    },
    {
      "name": "IPTables",
      "bom-ref": "IPTables",
      "type": "library",
      "version": "1.8.8",
      "copyright": "Copyright (c) 1999 by Paul \nCopyright (c) 2000, 2003-2011 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>\nCopyright (c) 2000-2003 by Harald Welte <laforge@gnumonks.org>\nCopyright (c) 2000, 2002-2005 by Harald Welte <laforge@netfilter.org>\nCopyright (c) 2000-2002 by Matthew G. Marsh <mgm@paktronix.com>\nCopyright (c) 2000-2006 by the Netfilter Core Team <coreteam@netfilter.org>\nCopyright (c) 2001 Marc Boucher (marc@mbsi.ca)\nCopyright (c) 2002 by Don Cohen <don-netf@isis.cs3-inc.com>\nCopyright (c) 2002,2004 MARA Systems AB <http://www.marasystems.com>\nCopyright (c) 2006 Ufo Mechanic <azez@ufomechanic.net> \nCopyright (c) 2008 Adam Nielsen <a.nielsen@shikadi.net> \nCopyright (c) 2009, 2011-2014 by Pablo Neira Ayuso <pablo@netfilter.org>\nCopyright (c) 2006, 2010-2011 by Red Hat, Inc\nCopyright (c) 2010-2011 Thomas Graf <tgraf@redhat.com> \nCopyright (c) 2011 by Intra2Net AG <http://www.intra2net.com>\nCopyright (c) 2003-2013 by Patrick McHardy <kaber@trash.net>\nCopyright (c) 2012 by Hans Schillstrom <hans.schillstrom@ericsson.com> \nCopyright (c) 2000 Emmanuel Roger <winfield@freegates.be>\nCopyright (c) 2000-2002 Joakim Axelsson <gozem@linux.nu>, Patrick Schaaf <bof@bof.de>, Martin Josefsson <gandalf@wlug.westbo.se>\nCopyright (c) 2002-2008 BalaBit IT Ltd.\nCopyright (c) 2004, 2010 Nokia Corporation\nCopyright (c) 2006 USAGI/WIDE Project \nCopyright (c) 2000 Marc Boucher\nCopyright (c) 2007 Sven Schnelle <svens@bitebene.org> \nCopyright (c) Google, Inc. 2013 \nCopyright (c) CC Computer Consultants GmbH, 2007-2008\nCopyright (c) Jan Engelhardt, 2011 \nCopyright (c) Sebastian Cla \nCopyright (c) 2004, Bart De Schuymer <bdschuym@pandora.be> \nCopyright (c) 2013-2014 by Giuseppe Longo <giuseppelng@gmail.com> \nCopyright (c) 2013 by Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> \nCopyright (c) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation\nCopyright (c) 2005 Evgeniy Polyakov <johnpol@2ka.mxt.ru>",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/iptables@1.8.8-1",
      "description": "iptables is the userspace command line program used to configure the Linux 2.4.x and 2.6.x IPv4 packet filtering ruleset. It is targeted towards system administrators.",
      "supplier": {
        "url": [
          "http://www.netfilter.org/projects/iptables/index.html"
        ]
      }
    },
    {
      "name": "jirka-h/haveged",
      "bom-ref": "jirka-h/haveged",
      "type": "library",
      "version": "v1.9.15",
      "copyright": "Copyright (c) 2018-2024 Jirka Hladky hladky DOT jiri AT gmail DOT com\nCopyright (c) 2009-2014 Gary Wuertz gary@issiweb.com\nCopyright (c) 2011-2012 BenEleventh Consulting manolson@beneleventh.com\nCopyright (c) 2018 Werner Fink <werner@suse.de>",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "purl": "pkg:github/jirka-h/haveged@v1.9.15",
      "supplier": {
        "url": [
          "https://github.com/jirka-h/haveged"
        ]
      }
    },
    {
      "name": "json-c",
      "bom-ref": "json-c",
      "type": "library",
      "version": "0.16",
      "copyright": "Copyright (c) 2004-2005, 2013 Metaparadigm Pte. Ltd. \nCopyright (c) 2008-2009 Yahoo \nCopyright (c) 2009-2012 Hewlett-Packard Development Company, L.P.\nCopyright (c) 2009-2012, 2016-2017 Eric Haszlakiewicz \nCopyright (c) 2016 Alexandru Ardelean. \nCopyright (c) 1996-2013 Free Software Foundation, Inc.\nCopyright (c) 1994 X Consortium \nCopyright (c) 2008 Guido U. Draheim <guidod@gmx.de>\nCopyright (c) 2008 Kaveh Ghazi <ghazi@caip.rutgers.edu>\nCopyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>\nCopyright (c) 2014 Mike Frysinger <vapier@gentoo.org>\nCopyright (c) 2018 Google Inc. \nCopyright (c) 2009, Fabien Boucher <fabien.dot.boucher@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "description": "JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.",
      "supplier": {
        "url": [
          "https://github.com/json-c/json-c/wiki"
        ]
      }
    },
    {
      "name": "kmod",
      "bom-ref": "kmod",
      "type": "library",
      "version": "33",
      "copyright": "Copyright (c) 2012 W. Trevor King <wking@tremily.us>\nCopyright (c) 2013-2016 Intel Corporation.\nCopyright (c) 2003 James Henstridge \nCopyright (c) 2004-2012 Kay Sievers <kay@vrfy.org> \nCopyright (c) 2008 Alan Jenkins <alan-jenkins@tuffmail.co.uk>.\nCopyright (c) 2004-2019, 2021 Bootstrap Authors \nCopyright (c) 2011-2013 ProFUSION embedded systems \nCopyright (c) 2012-2013, 2015 Lucas De Marchi <lucas.de.marchi@gmail.com> \nCopyright (c) 2012 Pedro Pedruzzi \nCopyright (c) 2013 Michal Marek, SUSE \nCopyright (c) 2013 Tom Gundersen <teg@jklm.no> \nCopyright (c) 2019 Alexey Gladkov <gladkov.alexey@gmail.com> \nCopyright (c) 2006-2008 Diego Petten\nCopyright (c) 2006-2008 xine project \nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com> \t\nCopyright (c) 2014 Free Software Foundation, Inc. ",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/kmod@33-1.fc42?arch=i686",
      "description": "Library and programs to manage Linux Kernel Modules.\r\r\n\r\r\nThis project consists of a library (libkmod) that does the same work as traditional module-init-tools (m-i-t) but is easily usable by other programs that may need to check or load kernel modules, such as udev, systemd, iptables, ...\r\r\n\r\r\nThe provided programs try to mimic m-i-t equivalents 1-to-1 and could be used as drop-in replacements in most cases.",
      "supplier": {
        "url": [
          "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/about/"
        ]
      }
    },
    {
      "name": "libaio",
      "bom-ref": "libaio",
      "type": "library",
      "version": "0.3.113",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:deb/debian/libaio@0.3.113-3",
      "description": "The Linux-native asynchronous I/O facility (\"async I/O\", or \"aio\") has a\r\nricher API and capability set than the simple POSIX async I/O facility.\r\nThis library, libaio, provides the Linux-native API for async I/O.\r\nThe POSIX async I/O facility requires this library in order to provide\r\nkernel-accelerated async I/O capabilities, as do applications which\r\nrequire the Linux-native async I/O API.",
      "supplier": {
        "url": [
          "https://pagure.io/libaio"
        ]
      }
    },
    {
      "name": "libdaemon",
      "bom-ref": "libdaemon",
      "type": "library",
      "version": "0.14",
      "copyright": "Copyright (c) 2003-2009 Lennart Poettering <mzqnrzba@0pointer.de>",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:deb/debian/libdaemon@0.14-7.1",
      "description": "Utility library for writing daemons",
      "supplier": {
        "url": [
          "http://0pointer.de/lennart/projects/libdaemon/"
        ]
      }
    },
    {
      "name": "libevent",
      "bom-ref": "libevent",
      "type": "library",
      "version": "2.1.12-stable",
      "copyright": "Copyright (c) 1993 The Regents of the University of California.\nCopyright (c) 2000 Dug Song <dugsong@monkey.org>\nCopyright (c) 2005 Nick Mathewson <nickm@freehaven.net>\nCopyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>\nCopyright (c) 2007-2012 Niels Provos, Nick Mathewson ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:deb/debian/libevent@2.1.12-stable-10",
      "description": "The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. It is meant to replace the asynchronous event loop found in event-driven network servers.",
      "supplier": {
        "url": [
          "http://libevent.org/"
        ]
      }
    },
    {
      "name": "libexpat",
      "bom-ref": "libexpat",
      "type": "library",
      "version": "2.7.3",
      "copyright": "Copyright (c) 1994 X Consortium\nCopyright (c) 1996-2018 Free Software Foundation, Inc.\nCopyright (c) 2016 - 2017, Steve Holme, <steve_holme@hotmail.com>\nCopyright (c) 2000-2017 Expat development team\nCopyright (c) 2018 The Expat Authors.\nCopyright (c) 1997-2000 Thai Open Source Software Center Ltd\nCopyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper\nCopyright (c) 2008 Guido U. Draheim <guidod@gmx.de> \nCopyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>\nCopyright (c) 2014 Mike Frysinger <vapier@gentoo.org>\nCopyright (c) 2000 Clark Cooper",
      "licenses": [
        {
          "license": {
            "name": "Expat License"
          }
        }
      ],
      "purl": "pkg:rpm/opensuse/expat@2.7.3-1.2?arch=armv7hl",
      "description": "Expat is a C library for parsing XML",
      "supplier": {
        "url": [
          "http://www.libexpat.org/"
        ]
      }
    },
    {
      "name": "libfcgi-dev",
      "bom-ref": "libfcgi-dev",
      "type": "library",
      "version": "2.4.2",
      "copyright": "Copyright (c) 1995-1996 Open Market, Inc.",
      "licenses": [
        {
          "license": {
            "name": "Open Market License"
          }
        }
      ],
      "description": "Header files of FastCGI\r\nFastCGI is a language independent, scalable, open extension\r\nto CGI that provides high performance without the limitations\r\nof server specific APIs.",
      "supplier": {
        "url": [
          "https://github.com/FastCGI-Archives"
        ]
      }
    },
    {
      "name": "libffi",
      "bom-ref": "libffi",
      "type": "library",
      "version": "3.4.2",
      "copyright": "Copyright (c) 2007, 2009-2011 Free Software Foundation, Inc\nCopyright (c) 2011-2014 Anthony Green \nCopyright (c) 1996-2003, 2007-2011 Red Hat, Inc. \nCopyright (c) 2010 CodeSourcery \nCopyright (c) 2011 Plausible Labs Cooperative, Inc. \nCopyright (c) 2011 Timothy Wall \nCopyright (c) 2001 John Beniton \nCopyright (c) 2002-2007 Bo Thorsen <bo@suse.de>\nCopyright (c) 2002 Ranjit Mathew \nCopyright (c) 2002 Roger Sayle\nCopyright (c) 2009 Daniel Witte\nCopyright (c) 2013 The Written Word, Inc. ",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:deb/debian/libffi@3.4.2-3",
      "description": "Compilers for high level languages generate code that follows certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the \"calling convention\". The \"calling convention\" is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A \"calling convention\" also specifies where the return value for a function is found.\r\r\n\r\r\nThe libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time.",
      "supplier": {
        "url": [
          "http://sourceware.org/libffi"
        ]
      }
    },
    {
      "name": "libgpg-error",
      "bom-ref": "libgpg-error",
      "type": "library",
      "version": "1.45",
      "copyright": "Copyright (c) 1989, 1991, 1994-2014 Free Software Foundation, Inc. \nCopyright (c) 1994 X Consortium \nCopyright (c) 1997-2017 Werner Koch (dd9jn) \nCopyright (c) 2001-2019, g10 Code GmbH\nCopyright (c) 2004 Simon Josefsson\nCopyright (c) 1999 Richard Henderson <rth@redhat.com>  \nCopyright (c) 2000, Dimitrios Souflis\nCopyright (c) 2010 Reuben Thomas <rrt@sc3d.org> \nCopyright (c) 1988 by Eric S. Tiedemann",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:deb/debian/libgpg-error@1.45-2",
      "description": "This is a library that defines common error values for all GnuPG components.  Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, Libksba, DirMngr, Pinentry, SmartCard Daemon and more.",
      "supplier": {
        "url": [
          "http://www.gnupg.org/related_software/libgpg-error/"
        ]
      }
    },
    {
      "name": "libjpeg-turbo",
      "bom-ref": "libjpeg-turbo",
      "type": "library",
      "version": "3.1.0",
      "copyright": "Copyright (c) 1991-2010, Thomas G. Lane, Guido Vollbeding.\nCopyright (c) CompuServe Incorporated. \nCopyright (c) by X Consortium\nCopyright (c) by the Free Software Foundation",
      "licenses": [
        {
          "license": {
            "name": "zlib/libpng License"
          }
        }
      ],
      "supplier": {
        "url": [
          "http://libjpeg-turbo.virtualgl.org/"
        ]
      }
    },
    {
      "name": "libnfnetlink",
      "bom-ref": "libnfnetlink",
      "type": "library",
      "version": "1.0.2",
      "copyright": "Copyright (c) 2001-2005 Netfilter Core Team <coreteam@netfilter.org>\nCopyright (c) 2002-2006 by Harald Welte <laforge@gnumonks.org>\nCopyright (c) 2006-2011 by Pablo Neira Ayuso <pablo@netfilter.org>",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ]
    },
    {
      "name": "libpcap",
      "bom-ref": "libpcap",
      "type": "library",
      "version": "1.10.5",
      "copyright": "Copyright (c) 1982, 1986-2008 The Regents of the University of California. \nCopyright (c) 1999-2005 NetGroup, Politecnico di Torino (Italy)\nCopyright (c) 2005-2010 CACE Technologies, Inc. Davis (California)\nCopyright (c) 2006 Paolo Abeni (Italy)\nCopyright (c) 2013, Petar Alilovic, Faculty of Electrical Engineering and Computing, University of Zagreb\nCopyright (c) 2014 Luigi Rizzo. All rights reserved\nCopyright (c) 2016 Julian Andres Klode <jak@debian.org>.\nCopyright (c) 2017 Ali Abdulkadir <autostart.ini@gmail.com>.\nCopyright (c) 2018 jingle YANG. All rights reserved\nCopyright (c) 1996 Juniper Networks, Inc.\nCopyright (c) 1997 Yen Yen Lim and North Dakota State University\nCopyright (c) 1998 Softweyr LLC. \nCopyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>\nCopyright (c) 2000 Torsten Landschoff <torsten@debian.org>\nCopyright (c) 2001 Atsushi Onoe\nCopyright (c) 2002-2005 Sam Leffler, Errno Consulting\nCopyright (c) 2007 Andy Lutomirski\nCopyright (c) 2007 Mike Kershaw\nCopyright (c) 2007 Fulko Hew, SITA INC Canada, Inc <fulko.hew@sita.aero>\nCopyright (c) 2007, 2008 Johannes Berg\nCopyright (c) 2008 G\nCopyright (c) 2011, 2012 Jakub Zawadzki\nCopyright (c) 2014 Michal Labedzki for Tieto Corporation\nCopyright (c) 2017 Pure Storage, Inc.\nCopyright (c) 1989 by Carnegie Mellon. \nCopyright (c) 1991 by the Massachusetts Institute of Technology\nCopyright (c) 2006-2010, Haiku, Inc.\nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:deb/debian/libpcap@1.10.5-1",
      "description": "The Packet Capture library provides a high level interface to packet capture systems. All packets on the network, even those destined for other hosts, are accessible through this mechanism.",
      "supplier": {
        "url": [
          "http://www.tcpdump.org"
        ]
      }
    },
    {
      "name": "libtirpc",
      "bom-ref": "libtirpc",
      "type": "library",
      "version": "1.3.3",
      "copyright": "Copyright (c) Bull S.A.  2005",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "description": "Libtirpc is a port of Suns Transport-Independent RPC library to Linux. It's being developed by the Bull GNU/Linux NFSv4 project. Note: The SVN Repository on this site is *not* used. Use the git://git.infradead.org/~steved/libtirpc.git GIT tree",
      "supplier": {
        "url": [
          "http://sourceforge.net/projects/libtirpc"
        ]
      }
    },
    {
      "name": "libupnp",
      "bom-ref": "libupnp",
      "type": "library",
      "version": "1.14.13",
      "copyright": "Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. \nCopyright (c) 1990-1993, 1996 Open Software Foundation, Inc. \ncopyright (c) 1998 Rick Jelliffe and Computing Center, Academia Sinica.\nCopyright (c) 1998 Microsoft.\nCopyright (c) 1994 X Consortium\nCopyright (c) 1996-1999 by Internet Software Consortium.\nCopyright (c) 2000-2003 Intel Corporation\nCopyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org ) \nCopyright (c) 2005 Remi Turboult <r3mi@users.sourceforge.net>\nCopyright (c) 2006 Alexander Chemeris\nCopyright (c) 2006 Guido U. Draheim <guidod@gmx.de>\nCopyright (c) 2006 Steven G. Johnson <stevenj@alum.mit.edu> \nCopyright (c) 2007 Marcelo Roberto Jimenez <mroberto@users.sourceforge.net>\nCopyright (c) 2011-2012 France Telecom\nCopyright (c) 1996-2017 Free Software Foundation, Inc.",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/libupnp@1.14.13-1.fc36?arch=armv7hl",
      "description": "The Universal Plug and Play (UPnP) SDK for Linux provides\r\nsupport for building UPnP-compliant control points, devices,\r\nand bridges on Linux.",
      "supplier": {
        "url": [
          "http://www.libupnp.org/"
        ]
      }
    },
    {
      "name": "libxml2",
      "bom-ref": "libxml2",
      "type": "library",
      "version": "2.15.1",
      "copyright": "Copyright (c) 1998-2017 Daniel Veillard. \nCopyright (c) 1998, 2000 Bjorn Reese and Daniel Stenberg.\nCopyright (c) 2000 Gary Pennington and Daniel Veillard.\nCopyright (c) 1998-2001 Bjorn Reese <breese@users.sourceforge.net>\nCopyright (c) 1998-1999 Vincent Renardias <vincent@waw.com>\nCopyright (c) 2010-2017 Christopher Swenson ",
      "licenses": [
        {
          "license": {
            "name": "libxml2 License"
          }
        }
      ],
      "purl": "pkg:github/GNOME/libxml2@v2.15.1",
      "description": "Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform).\r\r\n\r\r\nIncludes the xmllint tool for checking documents for well-formedness, validating documents against a DTD or XML Schema, and pretty printing XML input.",
      "supplier": {
        "url": [
          "https://github.com/GNOME/libxml2"
        ]
      }
    },
    {
      "name": "LibYAML",
      "bom-ref": "LibYAML",
      "type": "library",
      "version": "0.2.5",
      "copyright": "Copyright (c) 2017-2020 Ingy d\u00F6t Net\nCopyright (c) 2006-2016 Kirill Simonov",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:github/yaml/libyaml@0.2.5",
      "description": "YAML 1.1 parser and emitter written in C.",
      "supplier": {
        "url": [
          "http://pyyaml.org/wiki/LibYAML"
        ]
      }
    },
    {
      "name": "Linux Unified Key Setup",
      "bom-ref": "Linux Unified Key Setup",
      "type": "library",
      "version": "2.5.0",
      "copyright": "Copyright (c) 1986 Gary S. Brown.\nCopyright (c) 1999-2001, 2004-2006, 2009-2018 Free Software Foundation, Inc. \nCopyright (c) 2002, 2004 Phil Karn, KA9Q\nCopyright (c) 2004-2007, Clemens Fruhwirth <clemens@endorphin.org> \nCopyright (c) 2004, Jana Saout <jana@saout.de> \nCopyright (c) 2009-2018, Milan Broz\nCopyright (c) 2009-2018, Red Hat, Inc.\nCopyright (c) 2015, Google, Inc.\nCopyright (c) 2015-2018, Ondrej Kozina.\nCopyright (c) 2016-2018, Ondrej Mosnacek \nCopyright (c) 2004 Christophe Saout <christophe@saout.de>\nCopyright (c) 2004-2005 Wesley W. Terpstra <terpstra@debian.org>\nCopyright (c) 2005 Canonical Ltd. \nCopyright (c) 2005-2015 Jonas Meurer <jonas@freesources.org> \nCopyright (c) 2007 Jon Dowland <jon@alcopop.org> \nCopyright (c) 2008 Benjamin Kiessling <benjaminkiessling@bttec.org>\nCopyright (c) 2008 David H \nCopyright (c) 2015 Daniel Dinu \nCopyright (c) 2015 Thomas Pornin <pornin@bolet.org> \nCopyright (c) 2015-2018 Guilhem Moulin <guilhem@debian.org> \nCopyright (c) 2002,2003 Simon Josefsson \nCopyright (c) 2012, Arno Wagner <arno@wagner.name>",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "description": "LUKS is the upcoming standard for Linux hard disk encryption. By providing a standard on-disk-format, it does not only facilitate compatibility among distributions, but also provide secure management of multiple user passwords. In contrast to existing solution, LUKS stores all setup necessary setup information in the partition header, enabling the user to transport or migrate his data seamlessly.",
      "supplier": {
        "url": [
          "https://gitlab.com/cryptsetup/cryptsetup/wikis/home"
        ]
      }
    },
    {
      "name": "lldpd",
      "bom-ref": "lldpd",
      "type": "library",
      "version": "1.0.20",
      "copyright": "Copyright (c) 1982, 1986, 1990, 1993 The Regents of the University of California \nCopyright (c) 1996, David Mazieres <dm@uun.org>\nCopyright (c) 1997-1998 Todd C. Miller <Todd.Miller@courtesan.com> \nCopyright (c) 2002 Matthieu Herrb \nCopyright (c) 2003 Anil Madhavapeddy <anil@recoil.org> \nCopyright (c) 2003 Can Erkin Acar \nCopyright (c) 2003-2010 Apple Computer, Inc \nCopyright (c) 2004 Darren Tucker \nCopyright (c) 2004 Ted Unangst and Todd Miller \nCopyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu> \nCopyright (c) 2008, Damien Miller <djm@openbsd.org> \nCopyright (c) 2008 Francesco Salvestrini <salvestrini@users.sourceforge.net> \nCopyright (c) 2008 Guido U. Draheim <guidod@gmx.de> \nCopyright (c) 2008 Ville Laurikari <vl@iki.fi> \nCopyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org> \nCopyright (c) 2009 The NetBSD Foundation, Inc \nCopyright (c) 2010 Chris Davis, Niels Provos, and Nick Mathewson \nCopyright (c) 2007-2012 Niels Provos and Nick Mathewson\nCopyright (c) 1991-2012 Linus Torvalds \nCopyright (c) 2008-2013, 2016-2017 Vincent Bernat <bernat@luffy.cx>\nCopyright (c) 2015 Vincent Bernat <vincent@bernat.im> \nCopyright (c) 2008 Vincent Bernat <bernat@debian.org> \nCopyright (c) 2011 Joseph A. Adams (joeyadams3.14159@gmail.com) \nCopyright (c) 1998 David S. Miller (davem@redhat.com)\nCopyright (c) Sun Microsystems 2008\nCopyright (c) 2001 Sun Microsystems (thockin@sun.com)\nCopyright (c) 1997-2007 Jean Tourrilhes\nCopyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>\nCopyright (c) 2010 Andreas Hofmeister <andi@collax.com>\nCopyright (c) 2010 Andreas Hofmeister <andi@collax.com> 2010 Vincent Bernat <bernat@luffy.cx>\nCopyright (c) 2014 Michael Chapman\nCopyright (c) 2015 Alexandru Ardelean <ardeleanalex@gmail.com>\nCopyright (c) 2001 Jeff Garzik <jgarzik@pobox.com> \nCopyright (c) 2002 Intel (eli.kupermann@intel.com, christopher.leech@intel.com, scott.feldman@intel.com)",
      "licenses": [
        {
          "license": {
            "name": "ISC License"
          }
        }
      ],
      "description": "LLDP is an industry standard protocol designed to supplant proprietary link-Layer protocols such as Extreme's EDP (Extreme Discovery Protocol) and CDP (Cisco Discovery Protocol). The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver Link-Layer notifications to adjacent network devices.\r\r\n\r\r\nThis implementation provides LLDP sending and reception, supports VLAN and includes an SNMP subagent that can interface to an SNMP agent through AgentX protocol.\r\r\n\r\r\nThis daemon is also able to deal with CDP, SONMP and EDP protocol.",
      "supplier": {
        "url": [
          "https://github.com/lldpd/lldpd"
        ]
      }
    },
    {
      "name": "lvm2",
      "bom-ref": "lvm2",
      "type": "library",
      "version": "2.03.14",
      "copyright": "Copyright (c) 2004-2018 Red Hat, Inc.\nCopyright (c) 1989, 1991, 1996-2014 Free Software Foundation, Inc. \nCopyright (c) 2000-2004 Sistina Software, Inc.\nCopyright (c) 2001 - 2003 Sistina Software (UK) Limited. \nCopyright (c) 1994 X Consortium \nCopyright (c) 2004 Luca Berra \nCopyright (c) 2005 Zak Kipling.\nCopyright (c) 2005-2008 NEC Corporation\nCopyright (c) 2006 Rackable Systems\nCopyright (c) 2009 Chris Procter\nCopyright (c) 2008 Andrew Collier\nCopyright (c) 2013 Gabriele Svelto <gabriele.svelto@gmail.com>\nCopyright (c) 2003 by Theodore Ts\nCopyright (c) EMC Corporation, 2008 (Nigel Hislop <hislop_nigel@emc.com>)\nCopyright (c) IBM Corp. 1999, 2000 \nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:rpm/redhat/lvm2@2.03.14-3.el8?arch=aarch64&epoch=8",
      "description": "LVM2 refers to the userspace toolset that provide logical volume management facilities on linux. It is reasonably backwards-compatible with the original LVM toolset.\r\r\n\r\r\nTo use LVM2 you need 3 things: device-mapper in your kernel, the userspace device-mapper support library (libdevmapper) and the userspace LVM2 tools. Please look at http://sources.redhat.com/dm/ for information about the device-mapper kernel and userspace components.",
      "supplier": {
        "url": [
          "https://sourceware.org/lvm2/"
        ]
      }
    },
    {
      "name": "mdio-tool",
      "bom-ref": "mdio-tool",
      "type": "library",
      "version": "Unknown",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ]
    },
    {
      "name": "mii-diag",
      "bom-ref": "mii-diag",
      "type": "library",
      "version": "2.11",
      "copyright": "Copyright (c) 1997-2003 by Donald Becker <becker@scyld.com> ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/mii-diag@2.11-3",
      "description": "A little tool to manipulate network cards\r\nExamines and sets the MII registers of network cards.\r\n\r\nThis is a general program. You can find specialized programs for\r\nseveral network cards in the nictools-pci and nictools-nopci packages.",
      "supplier": {
        "url": [
          "http://tracker.debian.org/pkg/mii-diag"
        ]
      }
    },
    {
      "name": "miniupnpc",
      "bom-ref": "miniupnpc",
      "type": "library",
      "version": "2.3.3",
      "copyright": "Copyright (c) Grahame Bowland <grahame.angrygoats.net> \nCopyright (c) Tom St Denis \nCopyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>\nCopyright (c) 1995,1999 Theo de Raadt \nCopyright (c) 2002-2015 Matt Johnston <matt@ucc.asn.au> ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:deb/debian/miniupnpc@2.3.3-1",
      "description": "UPnP IGD client lightweight library client\r\nThe UPnP protocol is supported by most home adsl/cable routers and Microsoft\r\nWindows 2K/XP. The aim of the MiniUPnP project is to bring a free software\r\nsolution to support the \"Internet Gateway Device\" part of the protocol. The\r\nMediaServer/MediaRenderer UPnP protocol is also becoming very popular.\r\n\r\nMiniupnpc aims at the simplest library possible, with the smallest footprint\r\nand no dependencies to other libraries such as XML parsers or HTTP\r\nimplementations. All the code is pure ANSI C. Compiled on a x86 PC, the\r\nminiupnp client library have less than 15KB code size. For instance, the upnpc\r\nsample program is around 20KB. The miniupnp daemon is much smaller than any\r\nother IGD daemon and is ideal for using on low memory device for this reason.\r\n\r\nThis package is an example client for the library.",
      "supplier": {
        "url": [
          "https://miniupnp.tuxfamily.org/"
        ]
      }
    },
    {
      "name": "miniupnpd",
      "bom-ref": "miniupnpd",
      "type": "library",
      "version": "2.3.6",
      "copyright": "Copyright (c) 2005-2018, Thomas BERNARD <miniupnp@free.fr> \nCopyright (c) 2013 by Cisco Systems, Inc.\nCopyright (c) 1991-1993 The Regents of the University of California\nCopyright (c) 2007 Darren Reed \nCopyright (c) 2007-2012 Thomas Goirand <zigo@debian.org>\nCopyright (c) 2009 Jardel Weyrich\nCopyright (c) 2011 Alexey Osipov <simba@lerlan.ru> ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/miniupnpd@2.3.6-1.fc40?arch=i686",
      "description": "UPnP and NAT-PMP daemon for gateway routers\r\nMiniUPnPd is a small daemon which can be installed on a NAT router to\r\nprovide UPnP Internet Gateway Device and Port Mapping Protocol services,\r\nenabling clients on the LAN to ask for port redirections. It is\r\ncompatible with peer-to-peer software, messaging applications, and games\r\nconsoles that connect to online services (including Xbox LIVE and the\r\nPlayStation Network).",
      "supplier": {
        "url": [
          "http://miniupnp.free.fr/"
        ]
      }
    },
    {
      "name": "mmc-utils",
      "bom-ref": "mmc-utils",
      "type": "library",
      "version": "0.1+git.20190808",
      "copyright": "Copyright (c) 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>\nCopyright (c) ST-Ericsson SA 2010-2011 (Author: Sebastian Rasmussen <sebastian.rasmussen@stericsson.com>)\nCopyright (c) 2016 SanDisk Corp.",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:rpm/opensuse/mmc-utils@0.1%2Bgit.20190808-1.1?arch=aarch64",
      "description": "Userspace tools for MMC/SD devices\r\nmmc-utils is a tool that supports the MMC device development of linux kernel.\r\n\r\nThe mmc-utils tools can do the following:\r\n - Print and parse extcsd data.\r\n - Determine the eMMC writeprotect status.\r\n - Set the eMMC writeprotect status.\r\n - Set the eMMC data sector size to 4KB by disabling emulation.\r\n - Create general purpose partition.\r\n - Enable the enhanced user area.\r\n - Enable write reliability per partition.\r\n - Print the response to STATUS_SEND (CMD13).\r\n - Enable the boot partition.\r\n - Set Boot Bus Conditions.\r\n - Enable the eMMC BKOPS feature.\r\n - Permanently enable the eMMC H/W Reset feature.\r\n - Permanently disable the eMMC H/W Reset feature.\r\n - Send Sanitize command.\r\n - Program authentication key for the device.\r\n - Counter value for the rpmb device will be read to stdout.\r\n - Read from rpmb device to output.\r\n - Write to rpmb device from data file.\r\n - Enable the eMMC cache feature.\r\n - Disable the eMMC cache feature.\r\n - Print and parse CID data.\r\n - Print and parse CSD data.\r\n - Print and parse SCR data.",
      "supplier": {
        "url": [
          "http://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git"
        ]
      }
    },
    {
      "name": "mtd-utils",
      "bom-ref": "mtd-utils",
      "type": "library",
      "version": "v2.1.3",
      "copyright": "Copyright (c) 2006-2008 Artem Bityutskiy \nCopyright (c) International Business Machines Corp., 2006\nCopyright (c) 1999-2010 David Woodhouse <dwmw2@infradead.org>\nCopyright (c) 2006-2009 Nokia Corporation.\nCopyright (c) 2001-2003 Red Hat, Inc.\nCopyright (c) Ezequiel Garcia, 2014\nCopyright (c) 1997-98 Luigi Rizzo (luigi@iet.unipi.it)\nCopyright (c) 1999 Andrea Arcangeli <andrea@suse.de> \nCopyright (c) 1986 Gary S. Brown.\nCopyright (c) 1989, 1991, 2008-2011 Free Software Foundation, Inc. \nCopyright (c) 1999 David A. Hinds. \nCopyright (c) 2000 Arcom Control System Ltd\nCopyright (c) 2000 Arcom Control Systems Ltd\nCopyright (c) 2000 Steven J. Hill (sjhill@realitydiluted.com)\nCopyright (c) 2001, 2002 Erik Andersen <andersen@codepoet.org>\nCopyright (c) 2002, 2004 Christopher Clark <firstname.lastname@cl.cam.ac.uk>\nCopyright (c) 2003, 2005 Thomas Gleixner (tglx@linutronix.de) \nCopyright (c) 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>\nCopyright (c) 2004 Zoltan Sogor <weth@inf.u-szeged.hu>\nCopyright (c) 2005 Sean Young <sean@mess.org>\nCopyright (c) 2006-2008 Adrian Hunter \nCopyright (c) 2006-2008 Jarkko Lavinen\nCopyright (c) 2008 Logitech. \nCopyright (c) 2008 University of Szeged, Hungary \nCopyright (c) 2010 Mike Frysinger <vapier@gentoo.org> \nCopyright (c) 2015-2017 sigma star gmbh\nCopyright (c) 2017 David Oberhollenzer - sigma star gmbh\nCopyright (c) 2001 Jari Kirma <Jari.Kirma@hut.fi> \nCopyright (c) 2001, Daniel Industries, Inc.\nCopyright (c) 2005 Ben Gardner <bgardner@wabtec.com> \nCopyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>\nCopyright (c) 2011 Daniel Richard G. <skunk@iSKUNK.ORG>\nCopyright (c) 2d3D, Inc.\nCopyright (c) 2015 The Chromium OS Authors. \nCopyright (c) 2012 NetCommWireless\nCopyright (c) Daniel Measurement and Control, Inc.\nCopyright (c) 2018 Pengutronix \nCopyright (c) 2000-2007 by Nicolas Devillard. ",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/mtd-utils@2.1.3-1.fc35?arch=armv7hl",
      "description": "Userspace utilities for Memory Technology Devices (MTD)",
      "supplier": {
        "url": [
          "http://linux-mtd.infradead.org"
        ]
      }
    },
    {
      "name": "ncurses",
      "bom-ref": "ncurses",
      "type": "library",
      "version": "6.4+20230603",
      "copyright": "Copyright (c) 1998-2017,2018 Free Software Foundation, Inc.",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "description": "The ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses.\r\r\n\r\r\nThe ncurses distribution is available via anonymous FTP at the homepage (invisible-island.net) as well as the GNU distribution site",
      "supplier": {
        "url": [
          "http://www.gnu.org/software/ncurses/"
        ]
      }
    },
    {
      "name": "Neon",
      "bom-ref": "Neon",
      "type": "library",
      "version": "0.32.2",
      "copyright": "Copyright (c) 1989, 1991-1992, 1995-2015 Free Software Foundation, Inc. \nCopyright (c) 1994 X Consortium \nCopyright (c) 1998-2012, Joe Orton <joe@manyfish.co.uk> \nCopyright (c) 2001, Arun Garg <arung@pspl.co.in> \nCopyright (c) 2007 Henrik Holst <henrik.holst2@gmail.com> \nCopyright (c) 1999 Eric S. Raymond \nCopyright (c) 1999-2000 Tommi Komulainen <Tommi.Komulainen@iki.fi> \nCopyright (c) 2004 Aleix Conchillo Flaque <aleix@member.fsf.org>\nCopyright (c) Arfrever Frehtes Taifersar Arahesis\nCopyright (c) 2003 Daniel Stenberg <daniel@haxx.se>\nCopyright (c) 2004 Jiang Lei <tristone@deluxe.ocn.ne.jp>\nCopyright (c) 2009 Kai Sommerfeld <kso@openoffice.org>\nCopyright (c) Karl Ove Hufthammer\nCopyright (c) Michael Sobolev \nCopyright (c) Nobuyuki Tsuchimura <tutimura@nn.iij4u.or.jp>\nCopyright (c) Sylvain Glaize <mokona@puupuu.org>\nCopyright (c) Thomas Schultz <tststs@gmx.de>\nCopyright (c) 2004-2005 Vladimir Berezniker\nCopyright (c) 2007 Yves Martin <ymartin59@free.fr>",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.0+"
          }
        }
      ],
      "description": "neon is an HTTP and WebDAV client library, with a C interface. Features:\r\r\n\r\r\n    * High-level wrappers for common HTTP and WebDAV operations (GET, MOVE, DELETE, etc)\r\r\n    * Low-level interface to the HTTP request/response engine, allowing the use of arbitrary HTTP methods, headers, etc.\r\r\n    * Authentication support including Basic and Digest support, along with GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32\r\r\n    * SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer for verifying server certificates, handling client certificates, and examining certificate properties. Smartcard-based client certificates are also supported via a PKCS#11 wrapper interface.\r\r\n    * Abstract interface to parsing XML using libxml2 or expat, and wrappers for simplifying handling XML HTTP response bodies\r\r\n    * WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify property manipulation.",
      "supplier": {
        "url": [
          "https://notroj.github.io/neon/"
        ]
      }
    },
    {
      "name": "Net-SNMP",
      "bom-ref": "Net-SNMP",
      "type": "library",
      "version": "5.9.4",
      "copyright": "Copyright (c) 2003 Sun Microsystems, Inc.",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/net-snmp@5.9.4-18.fc44?arch=i686&epoch=1",
      "description": "The NET-SNMP (formerly UCD-SNMP) package contains various tools relating to the Simple Network Management Protocol including an extensible agent, an SNMP library, tools to request or set information from SNMP agents, tools to generate and handle SNMP traps, a version of the unix 'netstat' command using SNMP and a Tk/perl mib browser. It was originally based on the Carnegie Mellon University SNMP implementation (version 2.1.2.1), but has been greatly enhanced, ported and fixed and barely resembles the original package anymore.",
      "supplier": {
        "url": [
          "http://www.net-snmp.org"
        ]
      }
    },
    {
      "name": "Netlink Protocol Library Suite (libnl)",
      "bom-ref": "Netlink Protocol Library Suite (libnl)",
      "type": "library",
      "version": "3.6.0",
      "copyright": "Copyright (c) 1991, 1999, 2007 Free Software Foundation, Inc. \nCopyright (c) 2004, 2005 Einar Lueck <elueck@de.ibm.com> \nCopyright (c) 2005 David S. Miller <davem@davemloft.net>\nCopyright (c) 2012 Texas Instruments Incorporated - http://www.ti.com/\nCopyright (c) 2003-2006 Baruch Even <baruch@ev-en.org>\nCopyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>\nCopyright (c) 2005-2006 Petr Gotthard <petr.gotthard@siemens.com> \nCopyright (c) 2005-2006 Siemens AG Oesterreich\nCopyright (c) 2005-2010 W3C (MIT, ERCIM, Keio)\nCopyright (c) 2007 Philip Craig <philipc@snapgear.com> \nCopyright (c) 2007 Secure Computing Corporation \nCopyright (c) 2007, 2008 Patrick McHardy <kaber@trash.net>\nCopyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>\nCopyright (c) 2009 Wolfgang Grandegger <wg@grandegger.com> \nCopyright (c) 2010 Karl Hiramoto <karl@hiramoto.org>\nCopyright (c) 2011 Adrian Ban <adrian.ban@mantech.ro>\nCopyright (c) 2012 Benedikt Spranger <b.spranger@linutronix.de>\nCopyright (c) 2012 Cumulus Networks, Inc \nCopyright (c) 2012 Rich Fought <rich.fought@watchguard.com>\nCopyright (c) 2012 Shriram Rajagopalan <rshriram@cs.ubc.ca>\nCopyright (c) 2013-2015 Cong Wang <xiyou.wangcong@gmail.com>\nCopyright (c) 2013 Michael Braun <michael-dev@fami-braun.de>\nCopyright (c) 2013 Nicolas PLANEL <nicolas.planel@enovance.com>\nCopyright (c) 2013 Sassano Systems LLC <joe@sassanosystems.com>\nCopyright (c) 2013 Yasunobu Chiba <yasu@dsl.gr.jp>\nCopyright (c) 2014 Dan Williams <dcbw@redhat.com>\nCopyright (c) 2014 Susant Sahani <susant@redhat.com>\nCopyright (c) 2015 Beniamino Galvani <bgalvani@redhat.com>\nCopyright (c) 2015 Cumulus Networks.\nCopyright (c) 2015-2016 Sabrina Dubroca <sd@queasysnail.net> \nCopyright (c) 2008, 2016 Intel Corporation. \nCopyright (c) 2016 Jef Oliver <jef.oliver@intel.com>\nCopyright (c) 2016 Jonas Johansson <jonasj76@gmail.com>\nCopyright (c) 2016 Sushma Sitaram <sushma.sitaram@intel.com>\nCopyright (c) 2015, 2017 David Ahern <dsa@cumulusnetworks.com>",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:github/thom311/libnl@libnl3_6_0",
      "description": "The libnl suite is a collection of libraries providing APIs to netlink protocol based Linux kernel interfaces.\r\r\n\r\r\nNetlink is a IPC mechanism primarly between the kernel and user space processes. It was designed to be a more flexible successor to ioctl to provide mainly networking related kernel configuration and monitoring interfaces.",
      "supplier": {
        "url": [
          "http://www.infradead.org/~tgr/libnl/"
        ]
      }
    },
    {
      "name": "OpenSSL",
      "bom-ref": "OpenSSL",
      "type": "library",
      "version": "3.6.0",
      "copyright": "Copyright (c) 1998-2008 The OpenSSL Project. ",
      "licenses": [
        {
          "license": {
            "name": "OpenSSL Combined License"
          }
        }
      ],
      "description": "OpenSSL is a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols. It is also a general-purpose cryptography library.\r\r\n\r\r\nOpenSSL is licensed under an Apache-style license, which basically means that you are free to get and use it for commercial and non-commercial purposes subject to some simple license conditions.",
      "supplier": {
        "url": [
          "https://www.openssl.org"
        ]
      }
    },
    {
      "name": "paho-mqtt-c",
      "bom-ref": "paho-mqtt-c",
      "type": "library",
      "version": "v1.3.11",
      "copyright": "Unknown",
      "licenses": [
        {
          "license": {
            "name": "Eclipse Distribution License 1.0"
          }
        }
      ]
    },
    {
      "name": "PCRE",
      "bom-ref": "PCRE",
      "type": "library",
      "version": "8.45",
      "copyright": "Copyright (c) 1997-2020 University of Cambridge\nCopyright (c) 2005-2012 Google Inc.\nCopyright (c) 2009-2020 Zoltan Herczeg (hzmester@freemail.hu).\nCopyright (c) 1994 X Consortium\nCopyright (c) 1994-2018 Free Software Foundation, Inc.\nCopyright (c) 2004-2018 Bootstrap Authors \nCopyright (c) 2001, Alexander Tokarev\nCopyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>\nCopyright (c) 2011 Daniel Richard G. <skunk@iSKUNK.ORG>\nCopyright (c) 2013-2013 Tilera Corporation(jiwang@tilera.com)\nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "PCRE 5 License"
          }
        }
      ],
      "description": "The PCRE (Perl Compatible Regular Expressions) library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. PCRE has its own native API, as well as a set of wrapper functions that correspond to the POSIX regular expression API. The PCRE library is free, even for building commercial software.",
      "supplier": {
        "url": [
          "http://www.pcre.org/"
        ]
      }
    },
    {
      "name": "PCRE2",
      "bom-ref": "PCRE2",
      "type": "library",
      "version": "10.47",
      "copyright": "Copyright (c) 1997-2020 University of Cambridge\nCopyright (c) 2005-2012 Google Inc.\nCopyright (c) 2009-2020 Zoltan Herczeg (hzmester@freemail.hu).\nCopyright (c) 1994 X Consortium\nCopyright (c) 1994-2018 Free Software Foundation, Inc.\nCopyright (c) 2004-2018 Bootstrap Authors \nCopyright (c) 2001, Alexander Tokarev\nCopyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>\nCopyright (c) 2011 Daniel Richard G. <skunk@iSKUNK.ORG>\nCopyright (c) 2013-2013 Tilera Corporation(jiwang@tilera.com)\nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "PCRE 5 License"
          }
        }
      ],
      "purl": "pkg:deb/debian/pcre2@10.47-1",
      "description": "PCRE2 is the name used for a revised API for the PCRE library, which is a set of functions, written in C, that implement regular expression pattern matching using the same syntax and semantics as Perl, with just a few differences. Some features that appeared in Python and the original PCRE before they appeared in Perl are also available using the Python syntax. There is also some support for one or two .NET and Oniguruma syntax items, and there are options for requesting some minor changes that give better ECMAScript (aka JavaScript) compatibility.",
      "supplier": {
        "url": [
          "https://github.com/PCRE2Project/pcre2"
        ]
      }
    },
    {
      "name": "popt",
      "bom-ref": "popt",
      "type": "library",
      "version": "1.18",
      "copyright": "Copyright (c) 1998-2002 Red Hat, Inc. \nCopyright (c) 1998 Red Hat Software \nCopyright (c) 1997 to 1999 by Joey Hess \nCopyright (c) 1994 X Consortium \nCopyright (c) 1999 US Interactive, Inc.\nCopyright (c) 1995-2009 Free Software Foundation, Inc. ",
      "licenses": [
        {
          "license": {
            "name": "MIT License"
          }
        }
      ],
      "purl": "pkg:deb/debian/popt@1.18-3",
      "description": "popt is a command line option parsing library. While it is similiar\r\r\nto getopt, it contains a number of enhancements, including:\r\r\n\r\r\n1) popt is fully reentrant\r\r\n2) popt can parse arbitrary argv[] style arrays while getopt(3) makes this quite difficult\r\r\n3) popt allows users to alias command line arguments\r\r\n4) popt provides convience functions for parsing strings into argv[] style arrays",
      "supplier": {
        "url": [
          "http://rpm5.org"
        ]
      }
    },
    {
      "name": "Python programming language",
      "bom-ref": "Python programming language",
      "type": "library",
      "version": "3.13.11",
      "copyright": "Copyright (c) 2001 Python Software Foundation.\nCopyright (c) 2000 BeOpen.com.\nCopyright (c) 1995-2001 Corporation for National Research Initiatives.\nCopyright (c) 1991-1995 Stichting Mathematisch Centrum.",
      "licenses": [
        {
          "license": {
            "name": "Python Software Foundation License 2.0"
          }
        }
      ],
      "purl": "pkg:deb/debian/python3.13@3.13.11-1",
      "description": "Python is a dynamic, object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. Many Python programmers report substantial productivity gains and feel the language encourages the development of better code.",
      "supplier": {
        "url": [
          "https://www.python.org/"
        ]
      }
    },
    {
      "name": "qrencode",
      "bom-ref": "qrencode",
      "type": "library",
      "version": "4.1.1",
      "copyright": "Copyright (c) 1994 X Consortium\nCopyright (c) 2006-2017 Kentaro Fukuchi <kentaro@fukuchi.org> \nCopyright (c) 1996-2015 Free Software Foundation, Inc.\nCopyright (c) 2002-2004, 2006 Phil Karn, KA9Q \nCopyright (c) 2004 Scott James Remnant <scott@netsplit.com>\nCopyright (c) 2012-2015 Dan Nicholson <dbn.lists@gmail.com>",
      "licenses": [
        {
          "license": {
            "name": "LGPL 2.1+"
          }
        }
      ],
      "purl": "pkg:deb/ubuntu/qrencode@4.1.1-1build2",
      "description": "QR Code encoder into PNG image\r\nQrencode is a utility software using libqrencode to encode string data in\r\na QR Code and save as a PNG or an EPS image.",
      "supplier": {
        "url": [
          "https://fukuchi.org/works/qrencode/index.html.en"
        ]
      }
    },
    {
      "name": "QtExcel/QSimpleXlsxWriter",
      "bom-ref": "QtExcel/QSimpleXlsxWriter",
      "type": "library",
      "version": "Unknown",
      "copyright": "Copyright (c) 2012-2021 Pavel Akimov <oxod.pavel@gmail.com>, Alexandr Belyak <programmeralex@bk.ru>",
      "licenses": [
        {
          "license": {
            "name": "zlib/libpng License"
          }
        }
      ]
    },
    {
      "name": "Readline",
      "bom-ref": "Readline",
      "type": "library",
      "version": "8.2",
      "copyright": "Copyright (c) 1985-2020 Free Software Foundation, Inc.\nCopyright (c) 1987 Oliver Laumann (examples/rlfe) \nCopyright (c) 1993-2002 Juergen Weigert (examples/rlfe)\nCopyright (c) 1993-2002 Michael Schroeder (examples/rlfe) \nCopyright (c) 1999 Jeff Solomon (examples/excallback.c) \nCopyright (c) 1999-2009 Matthias Klose <doko@debian.org>\nCopyright (c) 2003-2004 Harold Levy (examples/rl-fgets.c) \nCopyright (c) 2000-2007 Hans Lub hlub@knoware.nl \nCopyright (c) 1999, 2004 Per Bothner \nCopyright (c) Damian Ivereigh 2000 \nCopyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>) by Hans Lub <hlub@knoware.nl>\nCopyright (c) 1991 by the Massachusetts Institute of Technology",
      "licenses": [
        {
          "license": {
            "name": "GPL 3.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/readline@8.2-1.3",
      "description": "The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.\r\r\n\r\r\nThe history facilites are also placed into a separate library, the History library, as part of the build process. The History library may be used without Readline in applications which desire its capabilities.",
      "supplier": {
        "url": [
          "http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
        ]
      }
    },
    {
      "name": "RPCBind",
      "bom-ref": "RPCBind",
      "type": "library",
      "version": "1.2.6",
      "copyright": "Copyright (c) Bull S.A.  2005",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:deb/debian/rpcbind@1.2.6-5",
      "description": "The rpcbind utility is a server that converts RPC program numbers into universal addresses. Note: The SVN Repository on this site is *not* used. Use the git://git.infradead.org/~steved/rpcbind.git GIT tree",
      "supplier": {
        "url": [
          "http://sourceforge.net/projects/rpcbind"
        ]
      }
    },
    {
      "name": "runc",
      "bom-ref": "runc",
      "type": "library",
      "version": "1.4.0",
      "copyright": "Copyright (c) 2004, 2006 The Linux Foundation and its contributors. \nCopyright (c) 2019-2020 Aleksa Sarai <cyphar@cyphar.com> \nCopyright (c) 2017-2023 Open Containers Authors \nCopyright (c) 2012 Miki Tebeka <miki.tebeka@gmail.com>\nCopyright (c) 2013, Georg Reinke (<guelfey at gmail dot com>), Google\nCopyright (c) 2013, Suryandaru Triandana <syndtr@gmail.com> \nCopyright (c) 2014 Brian Goff \t\nCopyright (c) 2014 Simon Eskildsen \nCopyright (c) 2015 Dmitri Shuralyov \nCopyright (c) 2015 Matthew Heon <mheon@redhat.com> \nCopyright (c) 2015 Paul Moore <pmoore@redhat.com>\nCopyright (c) 2016 Jeremy Saenz \nCopyright (c) 2017 Nathan Sweet\nCopyright (c) 2018, 2019 Cloudflare\nCopyright (c) 2019 Authors of Cilium \nCopyright (c) 2013 Suryandaru Triandana <syndtr@gmail.com>\nCopyright (c) 2014 Vishvananda Ishaya. \nCopyright (c) 2015 The Linux Foundation. \nCopyright (c) 2015, 2018 CoreOS, Inc. \nCopyright (c) 2016-2023 SUSE LLC \nCopyright (c) 2015, 2018 CoreOS, Inc\nCopyright (c) 2009-2022 The Go Authors.\nCopyright (c) 2011 Russ Ross <russ@russross.com>\nCopyright (c) 2015 Alexandre Viau <alexandre@alexandreviau.net> \nCopyright (c) 2012-2015 Docker, Inc. \nCopyright (c) 2015 Dmitry Smirnov <onlyjob@debian.org> ",
      "licenses": [
        {
          "license": {
            "name": "Apache License 2.0"
          }
        }
      ],
      "purl": "pkg:deb/ubuntu/runc-app@1.4.0-0ubuntu1",
      "description": "runc container cli tools",
      "supplier": {
        "url": [
          "https://github.com/opencontainers/runc"
        ]
      }
    },
    {
      "name": "tcpdump",
      "bom-ref": "tcpdump",
      "type": "library",
      "version": "4.99.1",
      "copyright": "Copyright (c) 1998-2011, 2013-2015, 2018, 2020 The TCPDUMP project \nCopyright (c) 1998-2012 Michael Richardson <mcr@tcpdump.org>\nCopyright (c) 2018 Arista Networks, Inc. \nCopyright (c) 1995-1999, 2001-2002 WIDE Project.\nCopyright (c) 1982-1983, 1986-2000, 2011, 2012 The Regents of the University of California.",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-clause"
          }
        }
      ],
      "purl": "pkg:deb/debian/tcpdump@4.99.1-3~bpo11%2B1",
      "description": "Tcpdump is a powerful packet analyzer and  prints  out  the  headers of packets on a network interface that match the boolean expression.",
      "supplier": {
        "url": [
          "http://www.tcpdump.org/"
        ]
      }
    },
    {
      "name": "uriparser",
      "bom-ref": "uriparser",
      "type": "library",
      "version": "0.9.9",
      "copyright": "Copyright (c) 2007, Sebastian Pipping <sebastian@pipping.org>\nCopyright (c) 2007, Weijia Song <songweijia@gmail.com> ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:rpm/fedora/uriparser@0.9.9-1.fc43?arch=i686",
      "description": "Uriparser is a strictly RFC 3986 compliant URI parsing library written\r\nin C. uriparser is cross-platform, fast, supports Unicode and is\r\nlicensed under the New BSD license.",
      "supplier": {
        "url": [
          "http://uriparser.sourceforge.net/"
        ]
      }
    },
    {
      "name": "util-linux",
      "bom-ref": "util-linux",
      "type": "library",
      "version": "2.41.1",
      "copyright": "Copyright (c) Guy Maor <maor@debian.org>\nCopyright (c) Michal Luscon <mluscon@redhat.com>\nCopyright (c) 2006-2018 Karel Zak <kzak@redhat.com>\nCopyright (c) 1980, 1983, 1987, 1988-1994 The Regents of the University of California. \nCopyright (c) 1991, 1992 Linus Torvalds \nCopyright (c) 1984, 1989-2017 Free Software Foundation, Inc. \nCopyright (c) 1994 Martin Schulze <joey@infodrom.north.de>\nCopyright (c) 1993-2008 Theodore Ts\nCopyright (c) 1996, 2003 Rickard E. Faith (faith@acm.org) \nCopyright (c) 1999, 2000, Red Hat Software \nCopyright (c) 2003-2018, Red Hat, Inc.\nCopyright (c) 1995, 1999, 2001 Andries E. Brouwer (aeb@cwi.nl) \nCopyright (c) 2000-2001 Gunnar Ritter \nCopyright (c) 2001 Andreas Dilger\nCopyright (c) 2009-2010 by Andreas Dilger <adilger@sun.com> \nCopyright (c) 2003, 2004, 2005 Thorsten Kukuk\nCopyright (c) 2003-2005 H. Peter Anvin \nCopyright (c) 2004 Robert Love <rml@tech9.net>\nCopyright (c) 2005 Jens Axboe <jens@axboe.dk> \nCopyright (c) 2010, 2012 Lennart Poettering \nCopyright (c) 2010-2012 Davidlohr Bueso <dave@gnu.org> \nCopyright (c) 2012-2015 Ondrej Oprala <ooprala@redhat.com>\nCopyright (c) 2012-2013 Eric Biederman <ebiederm@xmission.com> \nCopyright (c) 2003 Theodore Ts \nCopyright (c) 2012, 2014, 2016-2017 Sami Kerola <kerolasa@iki.fi>\nCopyright (c) 1986 Gary S. Brown.\nCopyright (c) 1990 Gordon Irlam (gordoni@cs.ua.oz.au)\nCopyright (c) 1991-2004 Miquel van Smoorenburg <miquels@cistron.nl>\nCopyright (c) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)\nCopyright (c) 1992-1997 Michael K. Johnson, johnsonm@redhat.com",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/util-linux@2.41.1-2",
      "description": "util-linux is a random collection of Linux utilities",
      "supplier": {
        "url": [
          "https://raw.githubusercontent.com/karelzak/util-linux/master/README"
        ]
      }
    },
    {
      "name": "WIDE-DHCPv6",
      "bom-ref": "WIDE-DHCPv6",
      "type": "library",
      "version": "wide-dhcpv6-20070507",
      "copyright": "Copyright (c) 1998-2008, WIDE Project\nCopyright (c) 2006-2015, Jeremie Corbier <jeremie@famille-corbier.net> \nCopyright (c) 1998, Todd C. Miller <Todd.Miller@courtesan.com> \nCopyright (c) 1991, 1993, The Regents of the University of California. \nCopyright (c) 1984, 1989, 1990, 2000-2005, Free Software Foundation, Inc \nCopyright (c) 1998-2001, 2003 Internet Software Consortium. \nCopyright (c) 2004 Internet Systems Consortium, Inc. (\"ISC\") ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "description": "WIDE-DHCPv6 is an open-source implementation of Dynamic Host Configuration Protocol for IPv6 (DHCPv6) originally developed by the KAME project. The implementation mainly conforms to the following standards: RFC3315,3319,3633,3646,4075,4272,etc.",
      "supplier": {
        "url": [
          "http://sourceforge.net/projects/wide-dhcpv6"
        ]
      }
    },
    {
      "name": "wpa_supplicant - IEEE 802.1X, WPA, WPA2, RSN, IEEE 802.11i",
      "bom-ref": "wpa_supplicant - IEEE 802.1X, WPA, WPA2, RSN, IEEE 802.11i",
      "type": "library",
      "version": "2.11",
      "copyright": "Copyright (c) 2000-2003, 2011-2016 Intel Corporation.\nCopyright (c) 2013 - 2016 Intel Mobile Communications GmbH. \nCopyright (c) 2015 Intel Deutschland GmbH \nCopyright (c) 2005-2006, Devicescape Software, Inc. \nCopyright (c) 2002-2016, Jouni Malinen <j@w1.fi> \nCopyright (c) 2008-2011, Atheros Communications \nCopyright (c) 2011-2016 Qualcomm Atheros ",
      "licenses": [
        {
          "license": {
            "name": "BSD 3-Clause"
          }
        }
      ],
      "purl": "pkg:rpm/opensuse/wpa_supplicant@2.11-160000.3.1?arch=x86_64",
      "description": "wpa_supplicant is a WPA Supplicant for Linux, BSD, and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN). It is suitable for both desktop/laptop computers and embedded systems. Supplicant is the IEEE 802.1X/WPA component that is used in the client stations. It implements key negotiation with a WPA Authenticator and it controls the roaming and IEEE 802.11 authentication/association of the wlan driver.\r\r\nwpa_supplicant is designed to be a \"daemon\" program that runs in the background and acts as the backend component controlling the wireless connection. wpa_supplicant supports separate frontend programs and a text-based frontend (wpa_cli) and a GUI (wpa_gui) are included with wpa_supplicant.\r\r\nAuthor: Jouni Malinen {jkmaline@cc.hut.fi}",
      "supplier": {
        "url": [
          "http://w1.fi/wpa_supplicant/"
        ]
      }
    },
    {
      "name": "zeroconf",
      "bom-ref": "zeroconf",
      "type": "library",
      "version": "0.9",
      "copyright": "Copyright (c) 2006 Anand Kumria",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0+"
          }
        }
      ],
      "purl": "pkg:deb/debian/zeroconf@0.9-1",
      "description": "IPv4 link-local address allocator\r\nzeroconf is an implementation of IPv4 link-local addresses (RFC3927)\r\nwhich can be used for ad-hoc networks.  Addresses are allocated from\r\nthe 169.254.0.0/16 range semi-randomly.\r\n\r\nThat means making it possible to take two laptop computers, and\r\nconnect them with a crossover Ethernet cable, and have them\r\ncommunicate usefully using IP, without needing a man in a white lab\r\ncoat to set it all up for you. (from www.zeroconf.org)",
      "supplier": {
        "url": [
          "https://files.pythonhosted.org/packages/20/d7/418ff6c684ace0f5855ec56c66cfa99ec50443c41693b91e9abcccfa096c/zeroconf-0.20.0.tar.gz"
        ]
      }
    },
    {
      "name": "zlib",
      "bom-ref": "zlib",
      "type": "library",
      "version": "1.3.1",
      "copyright": "Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler \nCopyright (c) 1998 by Andreas R. Kleinert \nCopyright (c) 1998-2010 Gilles Vollant \nCopyright (c) 2000-2017 Mark Brown \nCopyright (c) 1995-2003, 2010 Mark Adler\nCopyright (c) 2007-2008 Even Rouault\nCopyright (c) 2009-2010 Mathias Svensson ( http://result42.com )\nCopyright (c) 1990-2000 Info-ZIP.",
      "licenses": [
        {
          "license": {
            "name": "zlib/libpng License"
          }
        }
      ],
      "cpe": "cpe:2.3:a:zlib:zlib:1.3.1:*:*:*:*:*:*:*",
      "description": "zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. The zlib data format is itself portable across platforms. Unlike the LZW compression method used in Unix compress(1) and in the GIF image format, the compression method currently used in zlib essentially never expands the data. (LZW can double or triple the file size in extreme cases.) zlib's memory footprint is also independent of the input data and can be reduced, if necessary, at some cost in compression.",
      "supplier": {
        "url": [
          "http://www.zlib.net/"
        ]
      },
      "pedigree": {
        "patches": [
          {
            "type": "cherry-pick",
            "resolves": [
              {
                "type": "security",
                "id": "CVE-2026-22184",
                "name": "CVE-2026-22184",
                "source": {
                  "name": "National Vulnerability Database",
                  "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22184"
                }
              }
            ]
          }
        ]
      }
    },
    {
      "name": "Linux Kernel",
      "bom-ref": "Linux Kernel",
      "type": "library",
      "version": "5.10.168",
      "copyright": "Copyright (c) Linus Torvalds.",
      "licenses": [
        {
          "license": {
            "name": "GPL 2.0 Only"
          }
        }
      ],
      "cpe": "cpe:2.3:o:linux:linux_kernel:5.10.168:*:*:*:*:*:*:*",
      "purl": "pkg:rpm/photon/linux-aws-docs@5.10.168-2.ph4?arch=x86_64",
      "description": "The Linux kernel is a Unix-like computer operating system kernel. It is used world-wide: the Linux operating system is based on it and deployed on both traditional computer systems such as personal computers and servers, usually in the form of Linux distributions, and on various embedded devices such as routers, wireless access points, PBXes, set-top boxes, FTA receivers, smart TVs, PVRs and NAS appliances. The Android operating system for tablet computers, smartphones and smartwatches is also based atop the Linux kernel.\r\r\n\r\r\n(from Wikipedia)",
      "supplier": {
        "url": [
          "https://kernel.org"
        ]
      }
    }
  ]
}
