diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9a350ea2fa..3591be4400 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: src/(MCPClient/MCPServer|dashboard)/osdeps/.*\.json ) - repo: https://github.com/asottile/pyupgrade - rev: v3.15.1 + rev: v3.15.2 hooks: - id: pyupgrade args: [--py38-plus] diff --git a/CITATION.cff b/CITATION.cff index 546af6cb98..4d8bf23252 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -12,6 +12,8 @@ authors: country: CA email: info@artefactual.com identifiers: + - type: url + value: 'https://phaidra.univie.ac.at/o:185511' - type: swh value: 'swh:1:dir:58f29939b1d3947eb1551930dec41dd6dd3398d3' repository-code: 'https://github.com/artefactual/archivematica' @@ -25,3 +27,4 @@ abstract: >- keywords: - digital-preservation - python + - open-source diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c0cbafe550..84886c39f5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,10 +77,8 @@ new features in the [Archivematica Issues repo]. This is also where Artefactual staff record upcoming enhancements when they have been sponsored for inclusion either by Artefactual Systems or by a client. -Please feel free also to use the [Issues repo wiki] as a space for gathering and -collaborating on ideas. If you are not already a member of the -Archivematica repo (required for editing the wiki), file an issue there with -the title "Request membership." +Please feel free also to use the [Archivematica Issues repo] as a space for +gathering and collaborating on ideas. ## Submitting code changes @@ -422,15 +420,14 @@ Further content comes after a blank line. [mailing list]: https://groups.google.com/forum/#!forum/archivematica [Archivematica Issues repo]: https://github.com/archivematica/Issues [user]: https://groups.google.com/forum/#!forum/archivematica -[Issues repo wiki]: https://github.com/archivematica/Issues/wiki [files]: https://help.github.com/articles/getting-permanent-links-to-files/ [code snippets]: https://help.github.com/articles/creating-a-permanent-link-to-a-code-snippet/ -[development installation]: https://wiki.archivematica.org/Getting_started#Installation +[development installation]: https://github.com/artefactual/archivematica/blob/qa/1.x/hack/README.md [GitHub]: https://github.com/ [guide]: https://help.github.com/articles/fork-a-repo [excellent]: https://help.github.com/articles/using-pull-requests [Line comment]: http://i.imgur.com/FsWppGN.png -[code review guidelines]: code_review.md +[code review guidelines]: https://github.com/artefactual/archivematica/blob/qa/1.x/code_review.md [interactive rebase feature]: http://www.git-scm.com/book/en/Git-Tools-Rewriting-History [Contributor's Agreement]: https://wiki.archivematica.org/images/e/e6/Archivematica-CLA-firstname-lastname-YYYY.pdf [Apache Foundation]: http://apache.org @@ -439,14 +436,14 @@ Further content comes after a blank line. [PEP8]: https://www.python.org/dev/peps/pep-0008/ [Black]: https://github.com/ambv/black [flake8]: https://pypi.python.org/pypi/flake8 -[continuous integration system]: https://travis-ci.org/artefactual/archivematica +[continuous integration system]: https://github.com/artefactual/archivematica/actions [Pylint]: https://www.pylint.org/ [docstrings]: https://en.wikipedia.org/wiki/Docstring#Python [PEP 257]: https://www.python.org/dev/peps/pep-0257/ [Sphinx-compatible docstrings]: http://pythonhosted.org/an_example_pypi_project/sphinx.html#function-definitions [examples]: http://sphinx-doc.org/domains.html#info-field-lists [attributes to use]: http://sphinx-doc.org/domains.html#the-python-domain -[unittest]: https://docs.python.org/2/library/unittest.html +[unittest]: https://docs.python.org/3.9/library/unittest.html [py.test]: http://pytest.org [TestCase]: https://docs.djangoproject.com/en/1.8/topics/testing/tools/#django.test.TestCase [VCR.py]: https://github.com/kevin1024/vcrpy diff --git a/hack/Dockerfile b/hack/Dockerfile index 22bb269720..bcef69af74 100644 --- a/hack/Dockerfile +++ b/hack/Dockerfile @@ -190,6 +190,7 @@ RUN set -ex \ p7zip-full \ pbzip2 \ pst-utils \ + python3-lxml \ rsync \ siegfried \ sleuthkit \ diff --git a/hack/Makefile b/hack/Makefile index 5ef0152e13..3d5c11fb7a 100644 --- a/hack/Makefile +++ b/hack/Makefile @@ -333,7 +333,7 @@ test-all: start-mysql ## Run all tests. test-at-build: ## AMAUAT: build image. $(call compose_amauat, \ - build archivematica-acceptance-tests) + build --build-arg USER_ID=$(CALLER_UID) --build-arg GROUP_ID=$(CALLER_GID) archivematica-acceptance-tests) test-at-check: test-at-build ## AMAUAT: test browsers. $(call compose_amauat, \ diff --git a/hack/etc/nginx/conf.d/archivematica.conf b/hack/etc/nginx/conf.d/archivematica.conf index ad2c2d5075..dc61be0499 100644 --- a/hack/etc/nginx/conf.d/archivematica.conf +++ b/hack/etc/nginx/conf.d/archivematica.conf @@ -3,6 +3,7 @@ server { listen 8000; server_name dp-processing.is.ed.ac.uk dp-storageservice.is.ed.ac.uk; +<<<<<<< HEAD # Redirect HTTP to HTTPS if ($http_x_forwarded_proto = "http") { return 301 https://$host$request_uri; @@ -25,12 +26,23 @@ server { proxy_read_timeout 172800s; proxy_pass $upstream_endpoint; } +======= + proxy_set_header Host $http_host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_redirect off; + proxy_buffering off; + proxy_read_timeout 172800s; + proxy_pass $upstream_endpoint; + } +>>>>>>> main } server { listen 443; server_name dp-processing.is.ed.ac.uk; +<<<<<<< HEAD client_max_body_size 256M; location / { @@ -45,6 +57,16 @@ server { proxy_read_timeout 172800s; proxy_pass $upstream_endpoint; } +======= + proxy_set_header Host $http_host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_redirect off; + proxy_buffering off; + proxy_read_timeout 172800s; + proxy_pass $upstream_endpoint; + } +>>>>>>> main } server { diff --git a/hack/submodules/archivematica-acceptance-tests b/hack/submodules/archivematica-acceptance-tests index 85260b4fca..398a07817c 160000 --- a/hack/submodules/archivematica-acceptance-tests +++ b/hack/submodules/archivematica-acceptance-tests @@ -1 +1 @@ -Subproject commit 85260b4fcae3cdfe6be0176e99a03fef8b02e31a +Subproject commit 398a07817c9592a273dd570c3c84328872fd95d8 diff --git a/requirements-dev.txt b/requirements-dev.txt index 5ee16011d6..abf9a3f50d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -10,7 +10,7 @@ amclient==1.3.0 # via -r requirements.txt ammcpc==0.2.0 # via -r requirements.txt -asgiref==3.7.2 +asgiref==3.8.1 # via # -r requirements.txt # django @@ -23,7 +23,7 @@ bagit @ git+https://github.com/artefactual-labs/bagit-python.git@4b8fde73b4e6314 # via -r requirements.txt brotli==1.1.0 # via -r requirements.txt -build==1.1.1 +build==1.2.1 # via pip-tools cachetools==5.3.3 # via tox @@ -47,7 +47,7 @@ click==8.1.7 # via pip-tools colorama==0.4.6 # via tox -coverage[toml]==7.4.3 +coverage[toml]==7.4.4 # via # -r requirements-dev.in # pytest-cov @@ -66,7 +66,7 @@ django==4.2.11 # django-cas-ng # django-csp # mozilla-django-oidc -django-auth-ldap==4.6.0 +django-auth-ldap==4.8.0 # via -r requirements.txt django-autoslug==1.9.9 # via -r requirements.txt @@ -86,7 +86,7 @@ elasticsearch==6.8.2 # via -r requirements.txt exceptiongroup==1.2.0 # via pytest -filelock==3.13.1 +filelock==3.13.3 # via # tox # virtualenv @@ -106,12 +106,12 @@ idna==3.6 # via # -r requirements.txt # requests -importlib-metadata==7.0.1 +importlib-metadata==7.1.0 # via # -r requirements.txt # build # pytest-randomly -importlib-resources==6.1.2 +importlib-resources==6.4.0 # via # -r requirements.txt # opf-fido @@ -131,7 +131,7 @@ jsonschema-specifications==2023.12.1 # jsonschema lazy-paged-sequence==0.3 # via -r requirements.txt -lxml==5.1.0 +lxml==5.2.1 # via # -r requirements.txt # ammcpc @@ -141,7 +141,7 @@ metsrw==0.5.1 # via -r requirements.txt mockldap @ git+https://github.com/artefactual-labs/mockldap@v0.3.1 # via -r requirements-dev.in -mozilla-django-oidc==4.0.0 +mozilla-django-oidc==4.0.1 # via -r requirements.txt mysqlclient==2.2.4 # via @@ -151,9 +151,9 @@ olefile==0.47 # via # -r requirements.txt # opf-fido -opf-fido==1.6.1 +opf-fido @ git+https://github.com/artefactual-labs/fido.git@564ceb8018a8650fe931cf20e6780ee008e60fca # via -r requirements.txt -packaging==23.2 +packaging==24.0 # via # -r requirements.txt # build @@ -161,7 +161,7 @@ packaging==23.2 # pyproject-api # pytest # tox -pip-tools==7.4.0 +pip-tools==7.4.1 # via -r requirements-dev.in platformdirs==4.2.0 # via @@ -175,20 +175,20 @@ prometheus-client==0.20.0 # via # -r requirements.txt # django-prometheus -pyasn1==0.5.1 +pyasn1==0.6.0 # via # -r requirements.txt # pyasn1-modules # python-ldap -pyasn1-modules==0.3.0 +pyasn1-modules==0.4.0 # via # -r requirements.txt # python-ldap -pycparser==2.21 +pycparser==2.22 # via # -r requirements.txt # cffi -pyopenssl==24.0.0 +pyopenssl==24.1.0 # via # -r requirements.txt # josepy @@ -198,18 +198,18 @@ pyproject-hooks==1.0.0 # via # build # pip-tools -pytest==8.0.2 +pytest==8.1.1 # via # -r requirements-dev.in # pytest-cov # pytest-django # pytest-mock # pytest-randomly -pytest-cov==4.1.0 +pytest-cov==5.0.0 # via -r requirements-dev.in pytest-django==4.8.0 # via -r requirements-dev.in -pytest-mock==3.12.0 +pytest-mock==3.14.0 # via -r requirements-dev.in pytest-randomly==3.15.0 # via -r requirements-dev.in @@ -230,7 +230,7 @@ python-mimeparse==1.6.0 # via # -r requirements.txt # django-tastypie -referencing==0.33.0 +referencing==0.34.0 # via # -r requirements.txt # jsonschema @@ -267,7 +267,7 @@ tomli==2.0.1 # pyproject-hooks # pytest # tox -tox==4.13.0 +tox==4.14.2 # via -r requirements-dev.in typing-extensions==4.10.0 # via @@ -283,11 +283,11 @@ urllib3==2.2.1 # requests virtualenv==20.25.1 # via tox -wheel==0.42.0 +wheel==0.43.0 # via pip-tools whitenoise==6.6.0 # via -r requirements.txt -zipp==3.17.0 +zipp==3.18.1 # via # -r requirements.txt # importlib-metadata @@ -304,7 +304,7 @@ zope-interface==6.2 # The following packages are considered to be unsafe in a requirements file: pip==24.0 # via pip-tools -setuptools==69.1.1 +setuptools==69.2.0 # via # -r requirements.txt # pip-tools diff --git a/requirements.in b/requirements.in index e2ab65d661..04f05f4fd0 100644 --- a/requirements.in +++ b/requirements.in @@ -21,7 +21,7 @@ jsonschema lazy-paged-sequence lxml metsrw -opf-fido +git+https://github.com/artefactual-labs/fido.git@564ceb8018a8650fe931cf20e6780ee008e60fca#opf-fido prometheus_client python-dateutil requests diff --git a/requirements.txt b/requirements.txt index 123d85f5ab..e3712e9543 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ amclient==1.3.0 # via -r requirements.in ammcpc==0.2.0 # via -r requirements.in -asgiref==3.7.2 +asgiref==3.8.1 # via django attrs==23.2.0 # via @@ -40,7 +40,7 @@ django==4.2.11 # django-cas-ng # django-csp # mozilla-django-oidc -django-auth-ldap==4.6.0 +django-auth-ldap==4.8.0 # via -r requirements.in django-autoslug==1.9.9 # via -r requirements.in @@ -68,9 +68,9 @@ gunicorn==21.2.0 # via -r requirements.in idna==3.6 # via requests -importlib-metadata==7.0.1 +importlib-metadata==7.1.0 # via -r requirements.in -importlib-resources==6.1.2 +importlib-resources==6.4.0 # via opf-fido inotify-simple==1.3.5 # via -r requirements.in @@ -82,7 +82,7 @@ jsonschema-specifications==2023.12.1 # via jsonschema lazy-paged-sequence==0.3 # via -r requirements.in -lxml==5.1.0 +lxml==5.2.1 # via # -r requirements.in # ammcpc @@ -90,29 +90,29 @@ lxml==5.1.0 # python-cas metsrw==0.5.1 # via -r requirements.in -mozilla-django-oidc==4.0.0 +mozilla-django-oidc==4.0.1 # via -r requirements.in mysqlclient==2.2.4 # via agentarchives olefile==0.47 # via opf-fido -opf-fido==1.6.1 +opf-fido @ git+https://github.com/artefactual-labs/fido.git@564ceb8018a8650fe931cf20e6780ee008e60fca # via -r requirements.in -packaging==23.2 +packaging==24.0 # via gunicorn prometheus-client==0.20.0 # via # -r requirements.in # django-prometheus -pyasn1==0.5.1 +pyasn1==0.6.0 # via # pyasn1-modules # python-ldap -pyasn1-modules==0.3.0 +pyasn1-modules==0.4.0 # via python-ldap -pycparser==2.21 +pycparser==2.22 # via cffi -pyopenssl==24.0.0 +pyopenssl==24.1.0 # via josepy python-cas==1.6.0 # via django-cas-ng @@ -126,7 +126,7 @@ python-ldap==3.4.4 # django-auth-ldap python-mimeparse==1.6.0 # via django-tastypie -referencing==0.33.0 +referencing==0.34.0 # via # jsonschema # jsonschema-specifications @@ -160,7 +160,7 @@ urllib3==2.2.1 # requests whitenoise==6.6.0 # via -r requirements.in -zipp==3.17.0 +zipp==3.18.1 # via # importlib-metadata # importlib-resources @@ -170,7 +170,7 @@ zope-interface==6.2 # via gevent # The following packages are considered to be unsafe in a requirements file: -setuptools==69.1.1 +setuptools==69.2.0 # via # zope-event # zope-interface diff --git a/src/MCPClient/lib/clientScripts/parse_mets_to_db.py b/src/MCPClient/lib/clientScripts/parse_mets_to_db.py index 8342b9eb94..61407cf5af 100755 --- a/src/MCPClient/lib/clientScripts/parse_mets_to_db.py +++ b/src/MCPClient/lib/clientScripts/parse_mets_to_db.py @@ -243,6 +243,8 @@ def parse_dc(job, sip_uuid, root): job.pyprint("Dublin Core:") for elem in dc_xml: tag = elem.tag.replace(ns.dctermsBNS, "", 1).replace(ns.dcBNS, "", 1) + if tag not in DC_TERMS_MATCHING: + continue job.pyprint(tag, elem.text) if elem.text is not None: setattr(dc_model, DC_TERMS_MATCHING[tag], elem.text) diff --git a/src/dashboard/frontend/package-lock.json b/src/dashboard/frontend/package-lock.json index 5550ef1ac6..88d2798a06 100644 --- a/src/dashboard/frontend/package-lock.json +++ b/src/dashboard/frontend/package-lock.json @@ -19,7 +19,7 @@ "angular-ui-bootstrap": "^0.14.3", "angular-ui-validate": "^1.2.2", "archivematica-browse-helpers": "git+https://github.com/artefactual-labs/archivematica-browse-helpers.git", - "base64-helpers": "git+https://github.com/artefactual-labs/base64-helpers.git", + "base64-helpers": "github:artefactual-labs/base64-helpers#v0.1.2", "d3": "^3.5.17", "font-awesome": "^4.7.0", "lodash": "^4.17.21", @@ -27,14 +27,14 @@ "restangular": "^1.6.1" }, "devDependencies": { - "@babel/core": "^7.24.0", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-object-assign": "^7.23.3", - "@babel/plugin-transform-runtime": "^7.24.0", - "@babel/preset-env": "^7.24.0", + "@babel/core": "^7.24.4", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-object-assign": "^7.24.1", + "@babel/plugin-transform-runtime": "^7.24.3", + "@babel/preset-env": "^7.24.4", "angular-gettext-cli": "^1.2.0", "babel-loader": "^9.1.3", - "css-loader": "^6.10.0", + "css-loader": "^7.0.0", "http-server": "^14.1.1", "imports-loader": "^5.0.0", "jasmine-core": "^5.1.2", @@ -42,67 +42,67 @@ "karma-chrome-launcher": "^3.2.0", "karma-firefox-launcher": "^2.1.2", "karma-jasmine": "^5.1.0", - "karma-junit-reporter": "^0.2.2", + "karma-junit-reporter": "^2.0.1", "karma-webpack": "^5.0.1", "ng-cache-loader": "^0.0.26", "path-browserify": "^1.0.1", - "postcss": "^8.4.35", + "postcss": "^8.4.38", "shelljs": "^0.8.5", "style-loader": "^3.3.4", - "webpack": "^5.90.3", - "webpack-cli": "^4.10.0" + "webpack": "^5.91.0", + "webpack-cli": "^5.1.4" } }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz", - "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", + "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.0", - "@babel/parser": "^7.24.0", + "@babel/helpers": "^7.24.4", + "@babel/parser": "^7.24.4", "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", + "@babel/traverse": "^7.24.1", "@babel/types": "^7.24.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", @@ -119,14 +119,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", + "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", "dev": true, "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -174,9 +174,9 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.0.tgz", - "integrity": "sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", + "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", @@ -184,7 +184,7 @@ "@babel/helper-function-name": "^7.23.0", "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-replace-supers": "^7.24.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" @@ -214,9 +214,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", - "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", + "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -276,12 +276,12 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -345,13 +345,13 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", + "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { @@ -439,13 +439,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz", - "integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", + "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", "dev": true, "dependencies": { "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", + "@babel/traverse": "^7.24.1", "@babel/types": "^7.24.0" }, "engines": { @@ -453,23 +453,24 @@ } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz", - "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", + "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -478,13 +479,29 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", + "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", - "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", + "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -494,14 +511,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", - "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", + "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/plugin-transform-optional-chaining": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -511,13 +528,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", - "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", + "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -602,12 +619,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", - "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", + "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -617,12 +634,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", - "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", + "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -774,12 +791,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", - "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", + "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -789,13 +806,13 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", - "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" }, @@ -807,13 +824,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", - "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { @@ -824,12 +841,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", - "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", + "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -839,12 +856,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", - "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", + "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -854,13 +871,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", - "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", + "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -870,13 +887,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", - "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", + "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -887,17 +904,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", - "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", + "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, @@ -909,13 +926,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", - "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", + "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/template": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -925,12 +942,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", - "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -940,13 +957,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", - "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", + "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -956,12 +973,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", - "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", + "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -971,12 +988,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", - "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", + "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -987,13 +1004,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", - "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", + "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", "dev": true, "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1003,12 +1020,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", - "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", + "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1019,12 +1036,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", - "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", + "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { @@ -1035,14 +1052,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", - "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", + "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1052,12 +1069,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", - "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", + "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1068,12 +1085,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", - "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", + "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1083,12 +1100,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", - "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", + "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1099,12 +1116,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", - "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", + "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1114,13 +1131,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", - "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", + "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1130,13 +1147,13 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", + "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-simple-access": "^7.22.5" }, "engines": { @@ -1147,14 +1164,14 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", - "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", + "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { @@ -1165,13 +1182,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", - "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", + "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1197,12 +1214,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", - "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", + "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1212,12 +1229,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", - "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", + "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1228,12 +1245,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", - "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", + "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1244,12 +1261,12 @@ } }, "node_modules/@babel/plugin-transform-object-assign": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.23.3.tgz", - "integrity": "sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.24.1.tgz", + "integrity": "sha512-I1kctor9iKtupb7jv7FyjApHCuKLBKCblVAeHVK9PB6FW7GI0ac6RtobC3MwwJy8CZ1JxuhQmnbrsqI5G8hAIg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1259,16 +1276,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz", - "integrity": "sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", + "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" + "@babel/plugin-transform-parameters": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1278,13 +1294,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", - "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", + "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1294,12 +1310,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", - "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", + "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1310,12 +1326,12 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", - "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", + "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, @@ -1327,12 +1343,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", - "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1342,13 +1358,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", - "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", + "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1358,14 +1374,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", - "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", + "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1376,12 +1392,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", - "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", + "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1391,12 +1407,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", - "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", + "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1407,12 +1423,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", - "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", + "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1422,16 +1438,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.0.tgz", - "integrity": "sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz", + "integrity": "sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-module-imports": "^7.24.3", "@babel/helper-plugin-utils": "^7.24.0", - "babel-plugin-polyfill-corejs2": "^0.4.8", - "babel-plugin-polyfill-corejs3": "^0.9.0", - "babel-plugin-polyfill-regenerator": "^0.5.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" }, "engines": { @@ -1442,12 +1458,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", - "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1457,12 +1473,12 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", - "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", + "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { @@ -1473,12 +1489,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", - "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", + "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1488,12 +1504,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", - "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", + "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1503,12 +1519,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", - "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", + "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1518,12 +1534,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", - "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", + "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1533,13 +1549,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", - "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", + "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1549,13 +1565,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", - "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", + "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1565,13 +1581,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", - "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", + "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1581,26 +1597,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.0.tgz", - "integrity": "sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", + "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", + "@babel/compat-data": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.23.3", - "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1612,58 +1629,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.9", - "@babel/plugin-transform-async-to-generator": "^7.23.3", - "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.4", - "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.4", - "@babel/plugin-transform-classes": "^7.23.8", - "@babel/plugin-transform-computed-properties": "^7.23.3", - "@babel/plugin-transform-destructuring": "^7.23.3", - "@babel/plugin-transform-dotall-regex": "^7.23.3", - "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.4", - "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/plugin-transform-for-of": "^7.23.6", - "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.4", - "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", - "@babel/plugin-transform-member-expression-literals": "^7.23.3", - "@babel/plugin-transform-modules-amd": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.9", - "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.4", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", - "@babel/plugin-transform-numeric-separator": "^7.23.4", - "@babel/plugin-transform-object-rest-spread": "^7.24.0", - "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.4", - "@babel/plugin-transform-optional-chaining": "^7.23.4", - "@babel/plugin-transform-parameters": "^7.23.3", - "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.4", - "@babel/plugin-transform-property-literals": "^7.23.3", - "@babel/plugin-transform-regenerator": "^7.23.3", - "@babel/plugin-transform-reserved-words": "^7.23.3", - "@babel/plugin-transform-shorthand-properties": "^7.23.3", - "@babel/plugin-transform-spread": "^7.23.3", - "@babel/plugin-transform-sticky-regex": "^7.23.3", - "@babel/plugin-transform-template-literals": "^7.23.3", - "@babel/plugin-transform-typeof-symbol": "^7.23.3", - "@babel/plugin-transform-unicode-escapes": "^7.23.3", - "@babel/plugin-transform-unicode-property-regex": "^7.23.3", - "@babel/plugin-transform-unicode-regex": "^7.23.3", - "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.1", + "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.8", - "babel-plugin-polyfill-corejs3": "^0.9.0", - "babel-plugin-polyfill-regenerator": "^0.5.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -1695,9 +1712,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz", - "integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.4.tgz", + "integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -1721,18 +1738,18 @@ } }, "node_modules/@babel/traverse": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz", - "integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.0", + "@babel/parser": "^7.24.1", "@babel/types": "^7.24.0", "debug": "^4.3.1", "globals": "^11.1.0" @@ -1773,111 +1790,15 @@ "node": ">=10.0.0" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz", - "integrity": "sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -1893,9 +1814,9 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "engines": { "node": ">=6.0.0" @@ -1918,25 +1839,15 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.23", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz", - "integrity": "sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, "node_modules/@socket.io/component-emitter": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", @@ -1959,9 +1870,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.56.4", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.4.tgz", - "integrity": "sha512-lG1GLUnL5vuRBGb3MgWUWLdGMH2Hps+pERuyQXCfWozuGKdnhf9Pbg4pkcrVUHjKrU7Rl+GCZ/299ObBXZFAxg==", + "version": "8.56.5", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.5.tgz", + "integrity": "sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==", "dev": true, "dependencies": { "@types/estree": "*", @@ -1991,18 +1902,18 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.22", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.22.tgz", - "integrity": "sha512-/G+IxWxma6V3E+pqK1tSl2Fo1kl41pK1yeCyDsgkF9WlVAme4j5ISYM2zR11bgLFJGLN5sVK40T4RJNuiZbEjA==", + "version": "20.11.25", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.25.tgz", + "integrity": "sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", @@ -2022,9 +1933,9 @@ "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { @@ -2045,15 +1956,15 @@ "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/wasm-gen": "1.12.1" } }, "node_modules/@webassemblyjs/ieee754": { @@ -2081,28 +1992,28 @@ "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", @@ -2110,24 +2021,24 @@ } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -2136,44 +2047,52 @@ } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, "node_modules/@webpack-cli/configtest": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", - "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", "dev": true, + "engines": { + "node": ">=14.15.0" + }, "peerDependencies": { - "webpack": "4.x.x || 5.x.x", - "webpack-cli": "4.x.x" + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, "node_modules/@webpack-cli/info": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", - "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", "dev": true, - "dependencies": { - "envinfo": "^7.7.3" + "engines": { + "node": ">=14.15.0" }, "peerDependencies": { - "webpack-cli": "4.x.x" + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, "node_modules/@webpack-cli/serve": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", - "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", "dev": true, + "engines": { + "node": ">=14.15.0" + }, "peerDependencies": { - "webpack-cli": "4.x.x" + "webpack": "5.x.x", + "webpack-cli": "5.x.x" }, "peerDependenciesMeta": { "webpack-dev-server": { @@ -2427,13 +2346,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.8", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", - "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", + "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.5.0", + "@babel/helper-define-polyfill-provider": "^0.6.1", "semver": "^6.3.1" }, "peerDependencies": { @@ -2441,25 +2360,25 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", - "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0", - "core-js-compat": "^3.34.0" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", - "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz", + "integrity": "sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0" + "@babel/helper-define-polyfill-provider": "^0.6.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -2472,8 +2391,8 @@ "dev": true }, "node_modules/base64-helpers": { - "version": "0.1.0", - "resolved": "git+ssh://git@github.com/artefactual-labs/base64-helpers.git#96233c5c84bddd37e29dcd2ccd6b7edda5de6ce1", + "version": "0.1.2", + "resolved": "git+ssh://git@github.com/artefactual-labs/base64-helpers.git#dc7b82c3d30e30d1a218fde234feddf8619c15db", "license": "AGPL-3.0" }, "node_modules/base64id": { @@ -2665,9 +2584,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001591", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001591.tgz", - "integrity": "sha512-PCzRMei/vXjJyL5mJtzNiUCKP59dm8Apqc3PH8gJkMnMXZGox93RbE76jHsmLwmIo6/3nsYIpJtx0O7u5PqFuQ==", + "version": "1.0.30001597", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001597.tgz", + "integrity": "sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==", "dev": true, "funding": [ { @@ -2699,30 +2618,41 @@ } }, "node_modules/cheerio": { - "version": "0.22.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", - "integrity": "sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==", - "dev": true, - "dependencies": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash.assignin": "^4.0.9", - "lodash.bind": "^4.1.4", - "lodash.defaults": "^4.0.1", - "lodash.filter": "^4.4.0", - "lodash.flatten": "^4.2.0", - "lodash.foreach": "^4.3.0", - "lodash.map": "^4.4.0", - "lodash.merge": "^4.4.0", - "lodash.pick": "^4.2.1", - "lodash.reduce": "^4.4.0", - "lodash.reject": "^4.4.0", - "lodash.some": "^4.4.0" + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "dev": true, + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/chokidar": { @@ -2889,12 +2819,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.36.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.0.tgz", - "integrity": "sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==", + "version": "3.36.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", + "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", "dev": true, "dependencies": { - "browserslist": "^4.22.3" + "browserslist": "^4.23.0" }, "funding": { "type": "opencollective", @@ -2953,22 +2883,22 @@ } }, "node_modules/css-loader": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz", - "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.0.0.tgz", + "integrity": "sha512-WrO4FVoamxt5zY9CauZjoJgXRi/LZKIk+Ta7YvpSGr5r/eMYPNp5/T9ODlMe4/1rF5DYlycG1avhV4g3A/tiAw==", "dev": true, "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.4", - "postcss-modules-scope": "^3.1.1", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", "semver": "^7.5.4" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -2976,7 +2906,7 @@ }, "peerDependencies": { "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" + "webpack": "^5.27.0" }, "peerDependenciesMeta": { "@rspack/core": { @@ -3021,24 +2951,31 @@ "dev": true }, "node_modules/css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "dependencies": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, "engines": { - "node": "*" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/cssesc": { @@ -3145,46 +3082,60 @@ } }, "node_modules/dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "dependencies": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, "node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { - "domelementtype": "1" + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dev": true, "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -3192,9 +3143,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.686", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.686.tgz", - "integrity": "sha512-3avY1B+vUzNxEgkBDpKOP8WarvUAEwpRaiCL0He5OKWEFxzaOFiq4WoZEZe7qh0ReS7DiWoHMnYoQCKxNZNzSg==", + "version": "1.4.700", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.700.tgz", + "integrity": "sha512-40dqKQ3F7C8fbBEmjSeJ+qEHCKzPyrP9SkeIBZ3wSCUH9nhWStrDz030XlDzlhNhlul1Z0fz7TpDFnsIzo4Jtg==", "dev": true }, "node_modules/emoji-regex": { @@ -3252,9 +3203,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.1.tgz", - "integrity": "sha512-3d3JRbwsCLJsYgvb6NuWEG44jjPSOMuS73L/6+7BZuoKm3W+qXnSoIYVHi8dG7Qcg4inAY4jbzkZ7MnskePeDg==", + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", + "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -3271,10 +3222,16 @@ "dev": true }, "node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, "node_modules/envinfo": { "version": "7.11.1", @@ -3544,9 +3501,9 @@ "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "dev": true, "funding": [ { @@ -3571,22 +3528,6 @@ "node": ">=0.10.3" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", @@ -3764,9 +3705,9 @@ } }, "node_modules/hasown": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", - "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "dependencies": { "function-bind": "^1.1.2" @@ -3818,17 +3759,22 @@ } }, "node_modules/htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, "node_modules/http-errors": { @@ -4257,24 +4203,6 @@ "node": ">=0.10.0" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, "node_modules/jasmine-core": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.1.2.tgz", @@ -4418,28 +4346,28 @@ } }, "node_modules/karma-firefox-launcher": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-2.1.2.tgz", - "integrity": "sha512-VV9xDQU1QIboTrjtGVD4NCfzIH7n01ZXqy/qpBhnOeGVOkG5JYPEm8kuSd7psHE6WouZaQ9Ool92g8LFweSNMA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-2.1.3.tgz", + "integrity": "sha512-LMM2bseebLbYjODBOVt7TCPP9OI2vZIXCavIXhkO9m+10Uj5l7u/SKoeRmYx8FYHTVGZSpk6peX+3BMHC1WwNw==", "dev": true, "dependencies": { "is-wsl": "^2.2.0", - "which": "^2.0.1" + "which": "^3.0.0" } }, "node_modules/karma-firefox-launcher/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { - "node-which": "bin/node-which" + "node-which": "bin/which.js" }, "engines": { - "node": ">= 8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/karma-jasmine": { @@ -4464,12 +4392,16 @@ "dev": true }, "node_modules/karma-junit-reporter": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.2.2.tgz", - "integrity": "sha512-JTht5qhKoc3PAokeS9LZvTs/pPilqHc1wbkb0CDomCe7pHH0PQ+OorKWygSen+Ny9xxtjOfRQa5qA4iCSuOgbw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-2.0.1.tgz", + "integrity": "sha512-VtcGfE0JE4OE1wn0LK8xxDKaTP7slN8DO3I+4xg6gAi1IoAHAXOJ1V9G/y45Xg6sxdxPOR3THCFtDlAfBo9Afw==", "dev": true, "dependencies": { - "xmlbuilder": "0.4.2" + "path-is-absolute": "^1.0.0", + "xmlbuilder": "12.0.0" + }, + "engines": { + "node": ">= 8" }, "peerDependencies": { "karma": ">=0.9" @@ -4592,84 +4524,12 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "node_modules/lodash.assignin": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", - "integrity": "sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==", - "dev": true - }, - "node_modules/lodash.bind": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", - "integrity": "sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==", - "dev": true - }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", - "dev": true - }, - "node_modules/lodash.filter": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", - "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==", - "dev": true - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", - "dev": true - }, - "node_modules/lodash.foreach": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", - "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==", - "dev": true - }, - "node_modules/lodash.map": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", - "dev": true - }, - "node_modules/lodash.reduce": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", - "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==", - "dev": true - }, - "node_modules/lodash.reject": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", - "integrity": "sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==", - "dev": true - }, - "node_modules/lodash.some": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", - "integrity": "sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==", - "dev": true - }, "node_modules/log4js": { "version": "6.9.1", "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", @@ -4770,15 +4630,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -4875,12 +4726,15 @@ } }, "node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "dependencies": { - "boolbase": "~1.0.0" + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/object-assign": { @@ -4979,6 +4833,31 @@ "no-case": "^2.2.0" } }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", + "dev": true, + "dependencies": { + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -5027,31 +4906,6 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -5115,9 +4969,9 @@ } }, "node_modules/postcss": { - "version": "8.4.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", - "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", "dev": true, "funding": [ { @@ -5136,16 +4990,16 @@ "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.0" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, "engines": { "node": "^10 || ^12 || >= 14" @@ -5155,9 +5009,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz", - "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", "dev": true, "dependencies": { "icss-utils": "^5.0.0", @@ -5172,9 +5026,9 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz", - "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.4" @@ -5202,9 +5056,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "version": "6.0.16", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", + "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -5286,20 +5140,6 @@ "node": ">= 0.8" } }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -5557,17 +5397,17 @@ } }, "node_modules/set-function-length": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", - "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "dependencies": { - "define-data-property": "^1.1.2", + "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.3", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.1" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5630,12 +5470,12 @@ } }, "node_modules/side-channel": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", - "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" @@ -5647,18 +5487,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/socket.io": { "version": "4.7.4", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.4.tgz", @@ -5710,9 +5538,9 @@ } }, "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "dev": true, "engines": { "node": ">=0.10.0" @@ -5751,35 +5579,6 @@ "node": ">=8.0" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -5794,21 +5593,6 @@ "node": ">=8" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -5821,19 +5605,6 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", @@ -5893,9 +5664,9 @@ } }, "node_modules/terser": { - "version": "5.28.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.28.1.tgz", - "integrity": "sha512-wM+bZp54v/E9eRRGXb5ZFDvinrJIOaTapx3WUokyVGZu5ucVCK55zEgGd5Dl2fSr3jUo5sDiERErUWLY6QPFyA==", + "version": "5.29.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.29.1.tgz", + "integrity": "sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -6000,79 +5771,12 @@ "dev": true }, "node_modules/tmp": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.2.tgz", - "integrity": "sha512-ETcvHhaIc9J2MDEAH6N67j9bvBvu/3Gb764qaGhwtFvjtvhegqoqSpofgeyq1Sc24mW5pdyUDs9HP5j3ehkxRw==", - "dev": true, - "dependencies": { - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/tmp/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/tmp/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/tmp/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/tmp/node_modules/rimraf": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", - "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "dev": true, - "dependencies": { - "glob": "^10.3.7" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=14.14" } }, "node_modules/to-fast-properties": { @@ -6324,9 +6028,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -6337,26 +6041,26 @@ } }, "node_modules/webpack": { - "version": "5.90.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz", - "integrity": "sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==", + "version": "5.91.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", + "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", "acorn-import-assertions": "^1.9.0", "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.16.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", @@ -6364,7 +6068,7 @@ "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.0", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -6384,44 +6088,42 @@ } }, "node_modules/webpack-cli": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", - "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, "dependencies": { "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^1.2.0", - "@webpack-cli/info": "^1.5.0", - "@webpack-cli/serve": "^1.7.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", "colorette": "^2.0.14", - "commander": "^7.0.0", + "commander": "^10.0.1", "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", "fastest-levenshtein": "^1.0.12", "import-local": "^3.0.2", - "interpret": "^2.2.0", - "rechoir": "^0.7.0", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", "webpack-merge": "^5.7.3" }, "bin": { "webpack-cli": "bin/cli.js" }, "engines": { - "node": ">=10.13.0" + "node": ">=14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "4.x.x || 5.x.x" + "webpack": "5.x.x" }, "peerDependenciesMeta": { "@webpack-cli/generators": { "optional": true }, - "@webpack-cli/migrate": { - "optional": true - }, "webpack-bundle-analyzer": { "optional": true }, @@ -6431,33 +6133,33 @@ } }, "node_modules/webpack-cli/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, "engines": { - "node": ">= 10" + "node": ">=14" } }, "node_modules/webpack-cli/node_modules/interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=10.13.0" } }, "node_modules/webpack-cli/node_modules/rechoir": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", - "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, "dependencies": { - "resolve": "^1.9.0" + "resolve": "^1.20.0" }, "engines": { - "node": ">= 0.10" + "node": ">= 10.13.0" } }, "node_modules/webpack-cli/node_modules/webpack-merge": { @@ -6600,57 +6302,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -6712,12 +6363,12 @@ } }, "node_modules/xmlbuilder": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz", - "integrity": "sha512-h/+ncQQSU/iYycmI2wTN25t7RYN7O2oq9uvI+2+UObi4KcmQh/jUS4N31g5vJttQt7MODsnmBtbcll3YbNyvfw==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-12.0.0.tgz", + "integrity": "sha512-lMo8DJ8u6JRWp0/Y4XLa/atVDr75H9litKlb2E5j3V3MesoL50EBgZDWoLT3F/LztVnG67GjPXLZpqcky/UMnQ==", "dev": true, "engines": { - "node": ">=0.2.0" + "node": ">=6.0" } }, "node_modules/y18n": { diff --git a/src/dashboard/frontend/package.json b/src/dashboard/frontend/package.json index 961dc6a5b3..be9e3dc726 100644 --- a/src/dashboard/frontend/package.json +++ b/src/dashboard/frontend/package.json @@ -4,14 +4,14 @@ "version": "0.0.0", "description": "Dashboard components (Appraisal tab and Transfer browser) for Archivematica", "devDependencies": { - "@babel/core": "^7.24.0", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-object-assign": "^7.23.3", - "@babel/plugin-transform-runtime": "^7.24.0", - "@babel/preset-env": "^7.24.0", + "@babel/core": "^7.24.4", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-object-assign": "^7.24.1", + "@babel/plugin-transform-runtime": "^7.24.3", + "@babel/preset-env": "^7.24.4", "angular-gettext-cli": "^1.2.0", "babel-loader": "^9.1.3", - "css-loader": "^6.10.0", + "css-loader": "^7.0.0", "http-server": "^14.1.1", "imports-loader": "^5.0.0", "jasmine-core": "^5.1.2", @@ -19,19 +19,19 @@ "karma-chrome-launcher": "^3.2.0", "karma-firefox-launcher": "^2.1.2", "karma-jasmine": "^5.1.0", - "karma-junit-reporter": "^0.2.2", + "karma-junit-reporter": "^2.0.1", "karma-webpack": "^5.0.1", "ng-cache-loader": "^0.0.26", "path-browserify": "^1.0.1", - "postcss": "^8.4.35", + "postcss": "^8.4.38", "shelljs": "^0.8.5", "style-loader": "^3.3.4", - "webpack": "^5.90.3", - "webpack-cli": "^4.10.0" + "webpack": "^5.91.0", + "webpack-cli": "^5.1.4" }, "scripts": { "extract-messages": "angular-gettext-cli --files \"./app/**/*.+(js|html)\" --dest \"./app/locale/extract.pot\" --marker-name \"i18n\"", - "prepare": "webpack --progress --entry ./app.js", + "prepare": "webpack --entry ./app.js", "prestart": "npm install", "start": "http-server -a localhost -p 8000 -c-1", "pretest": "npm install", @@ -50,11 +50,16 @@ "angular-ui-bootstrap": "^0.14.3", "angular-ui-validate": "^1.2.2", "archivematica-browse-helpers": "git+https://github.com/artefactual-labs/archivematica-browse-helpers.git", - "base64-helpers": "git+https://github.com/artefactual-labs/base64-helpers.git", + "base64-helpers": "github:artefactual-labs/base64-helpers#v0.1.2", "d3": "^3.5.17", "font-awesome": "^4.7.0", "lodash": "^4.17.21", "moment": "^2.30.1", "restangular": "^1.6.1" + }, + "overrides": { + "angular-gettext-tools": { + "cheerio": "^1.0.0-rc.12" + } } } diff --git a/src/dashboard/frontend/test/unit/browseSpec.js b/src/dashboard/frontend/test/unit/browseSpec.js index ae71106ad5..2983d4247d 100644 --- a/src/dashboard/frontend/test/unit/browseSpec.js +++ b/src/dashboard/frontend/test/unit/browseSpec.js @@ -40,6 +40,28 @@ describe('Browse', () => { ] }); })); + beforeEach(angular.mock.inject((_$httpBackend_) => { + _$httpBackend_.when('GET', '/filesystem/children/location/772056c6-ce0c-4ba0-a4c3-8b64791ace88?path=L2hvbWUvTW9udHLDqWFsL2FyY2hpdmVtYXRpY2Etc2FtcGxlZGF0YQ%3D%3D').respond({ + "entries": [ + "T1BGIGZvcm1hdC1jb3JwdXM=", + "UkVBRE1FLm1k" + ], + "properties": { + "T1BGIGZvcm1hdC1jb3JwdXM=": { + "size": 4096, + "display_string": "1499 objects", + "object count": 1499 + }, + "UkVBRE1FLm1k": { + "size": 201, + "display_string": "201 bytes" + } + }, + "directories": [ + "T1BGIGZvcm1hdC1jb3JwdXM=" + ] + }); + })); it('should be able to list the contents of a path inside a location', angular.mock.inject((Browse, _$httpBackend_) => { Browse.browse('772056c6-ce0c-4ba0-a4c3-8b64791ace88', '/home/vagrant/archivematica-sampledata').then(entries => { @@ -47,4 +69,10 @@ describe('Browse', () => { }); _$httpBackend_.flush(); })); + it('should be able to list the contents of a path with non-ascii parts', angular.mock.inject((Browse, _$httpBackend_) => { + Browse.browse('772056c6-ce0c-4ba0-a4c3-8b64791ace88', '/home/Montréal/archivematica-sampledata').then(entries => { + expect(entries.length).toEqual(2); + }); + _$httpBackend_.flush(); + })); }); diff --git a/src/dashboard/src/components/ingest/views.py b/src/dashboard/src/components/ingest/views.py index 40ca99f266..e28a31ee49 100644 --- a/src/dashboard/src/components/ingest/views.py +++ b/src/dashboard/src/components/ingest/views.py @@ -27,7 +27,6 @@ import requests import storageService as storage_service from archivematicaFunctions import b64encode_string -from archivematicaFunctions import escape from components import advanced_search from components import decorators from components import helpers @@ -394,7 +393,6 @@ def ingest_normalization_report(request, uuid, current_page=None): objects = getNormalizationReportQuery(sipUUID=uuid) for o in objects: - o["location"] = escape(o["location"]) ( o["preservation_derivative_validation_attempted"], o["preservation_derivative_validation_failed"], diff --git a/src/dashboard/src/components/ingest/views_NormalizationReport.py b/src/dashboard/src/components/ingest/views_NormalizationReport.py index feb50ae54d..c170a2355a 100755 --- a/src/dashboard/src/components/ingest/views_NormalizationReport.py +++ b/src/dashboard/src/components/ingest/views_NormalizationReport.py @@ -56,8 +56,8 @@ def getNormalizationReportQuery(sipUUID, idsRestriction=""): select f.fileUUID, f.sipUUID, - f.originalLocation as location, - f.currentLocation, + CONVERT(f.originalLocation USING utf8mb4) as location, + CONVERT(f.currentLocation USING utf8mb4) as currentLocation, fid.uuid as 'fileID', fid.description, f.fileGrpUse, diff --git a/src/dashboard/src/fpr/migrations/0041_pronom_116.py b/src/dashboard/src/fpr/migrations/0041_pronom_116.py new file mode 100644 index 0000000000..c34b1306a1 --- /dev/null +++ b/src/dashboard/src/fpr/migrations/0041_pronom_116.py @@ -0,0 +1,15 @@ +import os + +from django.core.management import call_command +from django.db import migrations + + +def data_migration(apps, schema_editor): + fixture_file = os.path.join(os.path.dirname(__file__), "pronom_116.json") + call_command("loaddata", fixture_file, app_label="fpr") + + +class Migration(migrations.Migration): + dependencies = [("fpr", "0040_update_jhove_validation")] + + operations = [migrations.RunPython(data_migration)] diff --git a/src/dashboard/src/fpr/migrations/0042_update_idtools.py b/src/dashboard/src/fpr/migrations/0042_update_idtools.py new file mode 100644 index 0000000000..8599221515 --- /dev/null +++ b/src/dashboard/src/fpr/migrations/0042_update_idtools.py @@ -0,0 +1,102 @@ +from django.db import migrations + +OLD_FIDO_CMD_DESCRIPTION = "Identify using Fido 1.6.1" +OLD_FIDO_CMD_UUID = "49bc44de-86cf-4e53-9ae1-137f08a5a93c" +OLD_FIDO_TOOL_SLUG = "fido-161" +OLD_FIDO_TOOL_UUID = "c33c9d4d-121f-4db1-aa31-3d248c705e44" +OLD_FIDO_TOOL_VERSION = "1.6.1" + +OLD_SIEGFRIED_CMD_DESCRIPTION = "Identify using Siegfried 1.9.6" +OLD_SIEGFRIED_CMD_UUID = "5dfe5362-3ed4-4ff5-9c91-81d1a24a796b" +OLD_SIEGFRIED_TOOL_SLUG = "siegfried-196" +OLD_SIEGFRIED_TOOL_UUID = "454df69d-5cc0-49fc-93e4-6fbb6ac659e7" +OLD_SIEGFRIED_TOOL_VERSION = "1.9.6" + +NEW_FIDO_CMD_DESCRIPTION = "Identify using Fido 1.6.2rc1" +NEW_FIDO_CMD_UUID = "2cc8bb8e-1f6f-42f1-90b6-31207612c4c9" +NEW_FIDO_TOOL_SLUG = "fido-162rc1" +NEW_FIDO_TOOL_VERSION = "1.6.2rc1" + +NEW_SIEGFRIED_CMD_DESCRIPTION = "Identify using Siegfried 1.11.0" +NEW_SIEGFRIED_CMD_UUID = "88c747f5-7b6c-4913-8dc2-3957dcd5e6b8" +NEW_SIEGFRIED_TOOL_SLUG = "siegfried-1110" +NEW_SIEGFRIED_TOOL_VERSION = "1.11.0" + + +def data_migration_up(apps, schema_editor): + """Update identification tools FIDO and Siegfried to current + versions, allowing for integration of PRONOM 116. + """ + idtool = apps.get_model("fpr", "IDTool") + idcommand = apps.get_model("fpr", "IDCommand") + + # Update FIDO tool + idtool.objects.filter(uuid=OLD_FIDO_TOOL_UUID).update( + version=NEW_FIDO_TOOL_VERSION, slug=NEW_FIDO_TOOL_SLUG + ) + + # Find old FIDO command. + old_fido_command = idcommand.objects.get(uuid=OLD_FIDO_CMD_UUID) + + # Create new FIDO, but do not enable. + idcommand.objects.create( + replaces=old_fido_command, + uuid=NEW_FIDO_CMD_UUID, + description=NEW_FIDO_CMD_DESCRIPTION, + config=old_fido_command.config, + script=old_fido_command.script, + script_type=old_fido_command.script_type, + tool=idtool.objects.get(uuid=OLD_FIDO_TOOL_UUID), + enabled=False, + ) + + # Update Siegfried tool. + idtool.objects.filter(uuid=OLD_SIEGFRIED_TOOL_UUID).update( + version=NEW_SIEGFRIED_TOOL_VERSION, slug=NEW_SIEGFRIED_TOOL_SLUG + ) + + # Find old Siegfried command and disable it. + old_siegfried_command = idcommand.objects.get(uuid=OLD_SIEGFRIED_CMD_UUID) + old_siegfried_command.enabled = False + old_siegfried_command.save() + + # Create new command using the new version of Siegfried + idcommand.objects.create( + replaces=old_siegfried_command, + uuid=NEW_SIEGFRIED_CMD_UUID, + description=NEW_SIEGFRIED_CMD_DESCRIPTION, + config=old_siegfried_command.config, + script=old_siegfried_command.script, + script_type=old_siegfried_command.script_type, + tool=idtool.objects.get(uuid=OLD_SIEGFRIED_TOOL_UUID), + enabled=True, + ) + + +def data_migration_down(apps, schema_editor): + """Revert FIDO and Siegfriend to previous versions""" + idtool = apps.get_model("fpr", "IDTool") + idcommand = apps.get_model("fpr", "IDCommand") + + # Remove new ID Commands + idcommand.objects.filter(uuid=NEW_FIDO_CMD_UUID).delete() + idcommand.objects.filter(uuid=NEW_SIEGFRIED_CMD_UUID).delete() + + # Revert Fido tool + idtool.objects.filter(uuid=OLD_FIDO_TOOL_UUID).update( + version=OLD_FIDO_TOOL_VERSION, slug=OLD_FIDO_TOOL_SLUG + ) + + # Revert Siegfried tool + idtool.objects.filter(uuid=OLD_SIEGFRIED_TOOL_UUID).update( + version=OLD_SIEGFRIED_TOOL_VERSION, slug=OLD_SIEGFRIED_TOOL_SLUG + ) + + # Restore old Siegfried command. + idcommand.objects.filter(uuid=OLD_SIEGFRIED_CMD_UUID).update(enabled=True) + + +class Migration(migrations.Migration): + dependencies = [("fpr", "0041_pronom_116")] + + operations = [migrations.RunPython(data_migration_up, data_migration_down)] diff --git a/src/dashboard/src/fpr/migrations/pronom_116.json b/src/dashboard/src/fpr/migrations/pronom_116.json new file mode 100644 index 0000000000..f9f4f25ae1 --- /dev/null +++ b/src/dashboard/src/fpr/migrations/pronom_116.json @@ -0,0 +1,4317 @@ +[ + { + "model": "fpr.format", + "fields": { + "uuid": "a2d86b99-523e-4d92-b78c-e652c9079f4d", + "description": "JPEG 2000 Codestream", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "jpeg-2000-codestream" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "ebc07b09-893b-48c8-a249-6d8f6101354c", + "description": "Wireless Markup Language (WML) Document", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "wireless-markup-language-wml-document" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "fb8ab652-f5ac-42b7-bf55-8fbaee53c547", + "description": "SHA512 File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "sha512-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "de0feb62-db09-42cc-a83f-dcac22014669", + "description": "CHAT Transcription Format", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "chat-transcription-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9d5896e9-5ba3-45ba-aff4-b2c0924ca4b1", + "description": "FLExText Interlinear XML Format", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "flextext-interlinear-xml-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "3d7f0f16-7d7c-4dd4-924f-5a91bd2d0c79", + "description": "Multimedia Viewer Book", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "multimedia-viewer-book" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "baebcfbd-adc1-4c5f-bd31-e4a3ce06efff", + "description": "Praat TextGrid", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "praat-textgrid" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "651e6034-1c00-40e2-a3a9-0ba71a0b8615", + "description": "Transcriber AG TAG Format", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "transcriber-ag-tag-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "6b029e0d-5664-4d22-bfda-4746ca8ed061", + "description": "Transcriber TRS Format", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "transcriber-trs-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "107c925d-e2d2-459f-bd1a-15fed8f67868", + "description": "B Source Code File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "b-source-code-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "5bce282d-faf4-48c6-83ad-b5e727dda237", + "description": "Microsoft Access Database File", + "group": "7d161ac1-2879-445d-8e6d-cbc9eff5c225", + "slug": "microsoft-access-database-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "fb29955b-b346-4e7f-b473-8a2615888128", + "description": "Microsoft Access Encrypted Database File", + "group": "7d161ac1-2879-445d-8e6d-cbc9eff5c225", + "slug": "microsoft-access-encrypted-database-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "ac5d08a9-d7ef-4869-9d51-ccb586545457", + "description": "Raw PIMA SWIR Reflectance Spectral File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "raw-pima-swir-reflectance-spectral-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "cc5bbbf4-c495-4f88-9b07-bf82095c2380", + "description": "Vips Image", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "vips-image" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9f40ae1f-e6f2-465a-a031-b05cc31c666f", + "description": "Audio Data Transport Stream", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "audio-data-transport-stream" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "7a1dee51-ff59-4291-a901-8647e460cf11", + "description": "Adobe Color Book for Windows", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "adobe-color-book-for-windows" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "b6dca98a-f110-4357-8bb0-5cd699ccf126", + "description": "Adobe Color Swatch", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "adobe-color-swatch" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "e79157fd-00b8-49c3-9ccf-5879585a9db1", + "description": "Adobe Swatch Exchange", + "group": "00abbdd0-51b3-4162-b93a-45deb4ed8654", + "slug": "adobe-swatch-exchange" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "bee2da40-65d4-4c73-b16c-157109272f9c", + "description": "Direct Stream Digital Stream File", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "direct-stream-digital-stream-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "758a507c-3fb9-4a67-b4f5-9236e967ca67", + "description": "Direct Stream Digital Interchange File Format", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "direct-stream-digital-interchange-file-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "6cdac672-c2d1-488a-9dfa-a9fc6b0d11c8", + "description": "MacCaption File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "maccaption-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "fe8c7a22-a1b5-4048-87eb-40064c5a422a", + "description": "MacCaption Project", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "maccaption-project" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "3c42777d-b614-4114-9a24-a9ace41929c6", + "description": "Audacity Audio Block File", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "audacity-audio-block-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "a600a941-8459-4fe6-8f6e-44717fb0b378", + "description": "Audacity Project File", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "audacity-project-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "a96a4515-7305-4b16-8b87-a293934895ba", + "description": "DOCX Strict OOXML Document", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "docx-strict-ooxml-document" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "071a436d-584a-4009-8674-0cef6b00ebc7", + "description": "XLSX Strict OOXML Spreadsheet", + "group": "fea8c626-4c6d-4d34-8747-b7df5c67c17c", + "slug": "xlsx-strict-ooxml-spreadsheet" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9f7ce51b-53ca-46ce-99be-b1ee62210916", + "description": "PPTX Strict OOXML Presentation", + "group": "3616a69f-e9c4-4357-b366-57082cf75a3e", + "slug": "pptx-strict-ooxml-presentation" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "55475154-08b1-4409-a5f4-09856fb1c6fc", + "description": "3D Studio (DOS) 2D/3D Loft Object File", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "3d-studio-dos-2d3d-loft-object-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "da640572-2569-47c0-a352-ddf60c630c7e", + "description": "3D Studio (DOS) Project File", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "3d-studio-dos-project-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "62f3cda6-5d29-4a70-bb4f-6163e6026a1e", + "description": "ArcSoft PhotoStudio File", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "arcsoft-photostudio-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "71fc881b-87b6-45ea-bc1c-6accba17cf84", + "description": "ArcSoft Album and SlideShow Files for PhotoStudio and PhotoImpression", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "arcsoft-album-and-slideshow-files-for-photostudio" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "84c792ca-fcae-44e4-8d2e-b46e40c592e9", + "description": "GoDot 4Bit Graphics Format", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "godot-4bit-graphics-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "1f8ce5be-8730-4221-95c8-fc65cdd61f30", + "description": "Archiver Format", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "archiver-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "f8b38e1e-5c7f-4ebf-9206-5dada77cfd87", + "description": "Brio Query File", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "brio-query-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "04f1615e-b754-4b46-b582-ba500b2de61e", + "description": "WordPerfect Presentations", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "wordperfect-presentations" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "aaf9db8d-b8e8-45ab-8840-34f6ce2348ac", + "description": "Leica Project File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "leica-project-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "85d05b10-716a-435e-980d-6ca65ff96315", + "description": "Microsoft Publisher Packaged Document", + "group": "3616a69f-e9c4-4357-b366-57082cf75a3e", + "slug": "microsoft-publisher-packaged-document" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "709a31d2-adc3-4cbb-a3e0-08d9f9d50303", + "description": "WACZ", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "wacz" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "33917225-ecac-433b-8fe9-00e2195368e7", + "description": "Human Machine Interfaces HMI File", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "human-machine-interfaces-hmi-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "565cc087-1b41-4808-bf29-b8fbf6f301da", + "description": "GNU Image Manipulation Program Palette File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "gnu-image-manipulation-program-palette-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "4bad4ce2-97e8-438f-a7bc-6d3a9592831a", + "description": "Fountain Markup Language File", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "fountain-markup-language-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d0d97f23-3553-4bc1-bad1-3e7785a19fcf", + "description": "Esri ArcMap Label file", + "group": "bdd21ea4-dccb-4092-a2fe-d1e51a6e5b6b", + "slug": "esri-arcmap-label-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "10fcb2f0-a501-4785-b93f-15d1d0fa9589", + "description": "Trelby Document File", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "trelby-document-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "edf5098c-0416-4f94-b058-2bdcd5bf6634", + "description": "General Purpose RAW", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "general-purpose-raw" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "ec0f4dc9-1095-43d4-ace9-e20601ce32ff", + "description": "WordPerfect Macro File", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "wordperfect-macro-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9c49ffce-d1e9-4177-b55b-d1ea2f327c99", + "description": "DAV Video Format", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "dav-video-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "81a53567-8da4-4bfd-a213-eba4fbad4fd3", + "description": "Camtasia Recording File", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "camtasia-recording-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "7de7910f-f3ec-4f77-9d49-f52ca9a78c5c", + "description": "Camtasia Studio Project", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "camtasia-studio-project" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d97c5748-8379-46a9-a090-48858977da1e", + "description": "Open Media Framework Interchange", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "open-media-framework-interchange" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "7fca248b-310f-4ab9-a6ef-7e775de55b55", + "description": "Enhanced Image Package", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "enhanced-image-package" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "ba8cda1f-033a-47d4-b432-20eccb509879", + "description": "Capture One Session File", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "capture-one-session-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "f8fe5302-965d-4e19-8cf6-82412a01982c", + "description": "Microsoft Excel Workspace File", + "group": "fea8c626-4c6d-4d34-8747-b7df5c67c17c", + "slug": "microsoft-excel-workspace-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "b80eb8af-9a82-4d8e-a081-09184c475a21", + "description": "dBASE Report Form Definition File", + "group": "9c183a8f-89b7-47cc-a6ba-4ed038cf63d5", + "slug": "dbase-report-form-definition-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "283622ec-45d7-42a9-bb27-2256c9e23e53", + "description": "Quicken 3 Database File", + "group": "fea8c626-4c6d-4d34-8747-b7df5c67c17c", + "slug": "quicken-3-database-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "7e0d38a5-ff4c-4050-837d-93b597e3433d", + "description": "Adobe Illustrator CC Artwork", + "group": "fdf9e267-a18c-46a4-a162-b81bcba6322f", + "slug": "adobe-illustrator-cc-artwork" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "c60c1602-73e3-4bf1-978b-efaf77716198", + "description": "Adobe Illustrator CC 2020 Artwork", + "group": "fdf9e267-a18c-46a4-a162-b81bcba6322f", + "slug": "adobe-illustrator-cc-2020-artwork" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d090f14a-4e8f-4483-baaf-b6d757743989", + "description": "SWiSH Movie File", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "swish-movie-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "a261ffd0-0afb-4f1e-a95f-0b0a40757003", + "description": "Leapfrog Geo 3D Scene Format", + "group": "e8d06de7-f66c-4792-b7d4-3f17a22ab313", + "slug": "leapfrog-geo-3d-scene-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "989fdeb7-7aa5-4690-993a-fd63f5a71f27", + "description": "SPSS PC File Format", + "group": "9c183a8f-89b7-47cc-a6ba-4ed038cf63d5", + "slug": "spss-pc-file-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "41cca819-0ec0-4278-9fa4-bb9cdf924570", + "description": "Yamaha PSR Disk Manager File", + "group": "00abbdd0-51b3-4162-b93a-45deb4ed8654", + "slug": "yamaha-psr-disk-manager-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "1b78a664-2796-4c15-9ffb-b4bd893dadd2", + "description": "Common Interface File", + "group": "9c183a8f-89b7-47cc-a6ba-4ed038cf63d5", + "slug": "common-interface-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "f0e36d50-6b23-4f35-9aa3-3a908ead4bac", + "description": "Guitar Pro File", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "guitar-pro-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "292ca075-d4be-4996-9faa-0c14c0422aa9", + "description": "Esko ArtPro File", + "group": "df5d5107-c803-48ba-844d-feba093a571c", + "slug": "esko-artpro-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "ee9cda35-a487-48fd-aa08-576aaecc316d", + "description": "Maptech BSB Documentation File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "maptech-bsb-documentation-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "df265891-d004-4756-8252-727e8c0e9771", + "description": "HMM Packfile", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "hmm-packfile" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "0edc1da8-982a-4937-81dd-c1dbb9f6ed08", + "description": "GST Art File", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "gst-art-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d4d2683e-889a-49af-ba63-58886283b422", + "description": "vCard", + "group": "00abbdd0-51b3-4162-b93a-45deb4ed8654", + "slug": "vcard-2" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "eda4e0b0-8fcf-484d-859e-09a35dbee579", + "description": "OPML File", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "opml-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9f97152c-aa9e-4484-9de7-97ff711cd85a", + "description": "CloudCompare Entity File", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "cloudcompare-entity-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "8d32f9ef-f24f-43ee-8cac-fec78454c784", + "description": "Encapsulated PostScript File Format", + "group": "df5d5107-c803-48ba-844d-feba093a571c", + "slug": "encapsulated-postscript-file-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "4848246c-13bd-4e8b-bb10-23d772a67b50", + "description": "Resource Interchange File Format (RIFF)", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "resource-interchange-file-format-riff" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "b8544e20-cc2e-4e6c-8eaa-4ce41b8b4281", + "description": "Common Instrument File (CIF)", + "group": "9c183a8f-89b7-47cc-a6ba-4ed038cf63d5", + "slug": "common-instrument-file-cif" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "bfcf2ee1-f57e-4521-bb52-eeb616a6e97d", + "description": "Open Access III Document", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "open-access-iii-document" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "a609e046-0e14-4e81-820d-121c67507622", + "description": "Memory Stick Voice File (MSV)", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "memory-stick-voice-file-msv" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "7dae61f0-e209-4214-aed0-6d5306f0e7cf", + "description": "Digital Voice File (DVF)", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "digital-voice-file-dvf" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "30ee2560-f500-4c79-a5a9-b263817d5450", + "description": "Memory Stick Voice File (MSV)/Digital Voice File (DVF)", + "group": "c94ce0e6-c275-4c09-b802-695a18b7bf2a", + "slug": "memory-stick-voice-file-msvdigital-voice-file-dvf" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "b2cd31a0-cb6b-43f4-97ad-a481c985747f", + "description": "Microsoft Agent File", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "microsoft-agent-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "fbfb9fa7-3fb2-4538-abd2-18bf4390b311", + "description": "RagTime Document File", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "ragtime-document-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "5e3d6acf-30db-468b-8319-3d9fb46e223f", + "description": "Nokia Picture Message", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "nokia-picture-message" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "73751df7-cf22-46cd-9368-c12a853953da", + "description": "Ptex File Format", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "ptex-file-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d2430ec9-5731-4241-9f28-5df897a1a81f", + "description": "Perfect ZX Tape (PZX) Image Format", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "perfect-zx-tape-pzx-image-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "655f00f4-a0e2-431c-9bad-f5148f74d05e", + "description": "RIS Citation", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "ris-citation" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "c0129a88-569e-4b63-8fb5-ac87e871b27a", + "description": "Mass Spectrometry Markup Language", + "group": "89961b53-4d5c-49e2-9910-8825d96c8640", + "slug": "mass-spectrometry-markup-language" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "4295c246-05b1-4e1e-9895-1bcb377a010f", + "description": "SGI Movie File", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "sgi-movie-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "109b4259-bff3-4e6f-a46d-1f6082ef46e7", + "description": "Norton Change Directory Persistent Cache File", + "group": "7d161ac1-2879-445d-8e6d-cbc9eff5c225", + "slug": "norton-change-directory-persistent-cache-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9415f16a-4b4f-4e59-8824-579b033435a0", + "description": "Garmin Vehicle Images File", + "group": "fdf9e267-a18c-46a4-a162-b81bcba6322f", + "slug": "garmin-vehicle-images-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "fa12eeec-f153-493f-9a9b-30e4a27a3177", + "description": "Pasti Floppy Disk Image", + "group": "84362779-5e64-442d-9394-1d42ea961240", + "slug": "pasti-floppy-disk-image" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "013984c1-b3fd-407d-bb07-1ecabc4a68e1", + "description": "Universal Scene Description ASCII File", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "universal-scene-description-ascii-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "3e0da270-9ecf-49a9-a5ff-680212ab61d7", + "description": "VBM (VDC BitMap) File", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "vbm-vdc-bitmap-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "524d738a-d006-4e94-afe0-32fe0b16d38b", + "description": "Micrografx Icon File", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "micrografx-icon-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "454165a7-1b28-41a2-a327-ce4f58a856ad", + "description": "Jupiter Tesselation (JT) File", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "jupiter-tesselation-jt-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "431f452a-3499-4325-a2f7-494c5a1f79af", + "description": "TibetDoc Word Document", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "tibetdoc-word-document" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "299a6aec-e095-4754-af86-f63ac7f5df93", + "description": "Graphisoft Archicad Project", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "graphisoft-archicad-project" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "54a9bcbb-3381-4726-80b4-1a1ea786391b", + "description": "Graphisoft BIMx Hyper-Model", + "group": "289ce9cf-7991-48e4-abbe-ca373ef632cf", + "slug": "graphisoft-bimx-hyper-model" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "9e326168-d431-4ca8-9d75-495b1d19d192", + "description": "ActiveMime Object", + "group": "805d359a-32f0-4767-8a9c-cc14f13d8392", + "slug": "activemime-object" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "3b2a1b41-0944-4009-8893-0d2a97413cf8", + "description": "Autodesk Alias Wire Format", + "group": "8d32bf98-b569-4469-8953-10416b53b920", + "slug": "autodesk-alias-wire-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "5363979e-ffa0-4fa7-858d-f9983d3e186c", + "description": "BigTIFF", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "bigtiff" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "20602bed-b372-4b09-b774-b7dda857b377", + "description": "MetaCard Stack", + "group": "bdd21ea4-dccb-4092-a2fe-d1e51a6e5b6b", + "slug": "metacard-stack" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "68d870e3-85f6-48fa-8d14-53cb7bfeb3a0", + "description": "Revolution Stack", + "group": "bdd21ea4-dccb-4092-a2fe-d1e51a6e5b6b", + "slug": "revolution-stack" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "6825111e-d500-495c-b2d2-f477e870bfa6", + "description": "LiveCode Stack", + "group": "bdd21ea4-dccb-4092-a2fe-d1e51a6e5b6b", + "slug": "livecode-stack" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "f0cc3433-51fa-4466-ab3c-4c30fe6cc57d", + "description": "S-57 Electronic Navigational Chart", + "group": "e8d06de7-f66c-4792-b7d4-3f17a22ab313", + "slug": "s-57-electronic-navigational-chart" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "59a4be8a-d0f1-4541-b368-1acc9964c164", + "description": "PCRaster", + "group": "e8d06de7-f66c-4792-b7d4-3f17a22ab313", + "slug": "pcraster" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "bbea9747-480f-49fe-a0b7-fc12ed77b9d0", + "description": "Amazon Kindle eBook File", + "group": "873ff22f-4c71-4cfa-ad21-c6830cf1c881", + "slug": "amazon-kindle-ebook-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "77723283-321f-4fff-b796-c7f5c48d6782", + "description": "Lotus Screencam Data File", + "group": "f22e9c29-9d4a-429e-adaf-38f3aecaff99", + "slug": "lotus-screencam-data-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "784b4907-e4d6-422b-9417-0a48ae695649", + "description": "Auto FX PhotoGraphic Edges Image File", + "group": "be86edbf-f62c-431f-b549-300d23c7cd0d", + "slug": "auto-fx-photographic-edges-image-file" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "14c2aaa3-f96a-49d0-8e39-ae4c9a7f94c4", + "description": "EBU Subtitling Data Exchange Format", + "group": "57361413-1c3b-405d-a9c0-7d3ea381090e", + "slug": "ebu-subtitling-data-exchange-format" + } + }, + { + "model": "fpr.format", + "fields": { + "uuid": "d81b6538-4f5e-44c0-a00d-b666d6840683", + "description": "Common Loudspeaker Format (CLF)", + "group": "9c183a8f-89b7-47cc-a6ba-4ed038cf63d5", + "slug": "common-loudspeaker-format-clf" + } + }, + { + "model": "fpr.formatgroup", + "fields": { + "uuid": "df5d5107-c803-48ba-844d-feba093a571c", + "description": "Page Description", + "slug": "page-description" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.344Z", + "uuid": "fddef854-8c3b-4892-9dac-c51ae22ba76e", + "format": "a2d86b99-523e-4d92-b78c-e652c9079f4d", + "version": null, + "pronom_id": "fmt/1794", + "description": "JPEG 2000 Codestream", + "access_format": false, + "preservation_format": false, + "slug": "jpeg-2000-codestream" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.372Z", + "uuid": "d1820d1d-3517-48d9-941c-12efdaa49d87", + "format": "38dedbb9-8de3-43e7-9a2b-ce2cd11dd799", + "version": "6-11.5", + "pronom_id": "fmt/1795", + "description": "Asymetrix Toolbook File", + "access_format": false, + "preservation_format": false, + "slug": "asymetrix-toolbook-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.398Z", + "uuid": "c03a618a-06f0-4d2f-a38a-c65bf7ceb94c", + "format": "ebc07b09-893b-48c8-a249-6d8f6101354c", + "version": "1.1", + "pronom_id": "fmt/1796", + "description": "Wireless Markup Language (WML) Document", + "access_format": false, + "preservation_format": false, + "slug": "wireless-markup-language-wml-document" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.423Z", + "uuid": "add93d4c-663e-40c0-89bf-4ed8f67697ee", + "format": "fb8ab652-f5ac-42b7-bf55-8fbaee53c547", + "version": null, + "pronom_id": "fmt/1797", + "description": "SHA512 File", + "access_format": false, + "preservation_format": false, + "slug": "sha512-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.443Z", + "uuid": "2c9ff7b1-85ef-446a-b166-bcfb7ed5666a", + "format": "de0feb62-db09-42cc-a83f-dcac22014669", + "version": null, + "pronom_id": "fmt/1798", + "description": "CHAT Transcription Format", + "access_format": false, + "preservation_format": false, + "slug": "chat-transcription-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.465Z", + "uuid": "48120656-2b85-466b-861d-7aec723ea22e", + "format": "9d5896e9-5ba3-45ba-aff4-b2c0924ca4b1", + "version": null, + "pronom_id": "fmt/1799", + "description": "FLExText Interlinear XML Format", + "access_format": false, + "preservation_format": false, + "slug": "flextext-interlinear-xml-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.489Z", + "uuid": "49ae2640-333b-491b-bbdc-160d3049e194", + "format": "3d7f0f16-7d7c-4dd4-924f-5a91bd2d0c79", + "version": null, + "pronom_id": "fmt/1800", + "description": "Multimedia Viewer Book", + "access_format": false, + "preservation_format": false, + "slug": "multimedia-viewer-book" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.511Z", + "uuid": "dccf4216-a6e6-4c8b-a999-d82f5f580235", + "format": "baebcfbd-adc1-4c5f-bd31-e4a3ce06efff", + "version": null, + "pronom_id": "fmt/1801", + "description": "Praat TextGrid", + "access_format": false, + "preservation_format": false, + "slug": "praat-textgrid" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.538Z", + "uuid": "e1e4e7a5-5153-4073-812d-6999fae2ce9c", + "format": "651e6034-1c00-40e2-a3a9-0ba71a0b8615", + "version": null, + "pronom_id": "fmt/1802", + "description": "Transcriber AG TAG Format", + "access_format": false, + "preservation_format": false, + "slug": "transcriber-ag-tag-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.567Z", + "uuid": "8ff09bfa-d174-42cf-b159-433f126d18a7", + "format": "6b029e0d-5664-4d22-bfda-4746ca8ed061", + "version": null, + "pronom_id": "fmt/1803", + "description": "Transcriber TRS Format", + "access_format": false, + "preservation_format": false, + "slug": "transcriber-trs-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.591Z", + "uuid": "2fb3e7f4-2307-49d0-b58e-594393094a50", + "format": "107c925d-e2d2-459f-bd1a-15fed8f67868", + "version": null, + "pronom_id": "fmt/1804", + "description": "B Source Code File", + "access_format": false, + "preservation_format": false, + "slug": "b-source-code-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.613Z", + "uuid": "f75a0b25-53b0-4378-93ec-ce67e08c4e94", + "format": "5bce282d-faf4-48c6-83ad-b5e727dda237", + "version": "1.0", + "pronom_id": "fmt/1805", + "description": "Microsoft Access Database File v1.0", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-access-database-file-v10" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.629Z", + "uuid": "ffa9ccb7-ba4f-4a86-8f14-a2dca087223f", + "format": "5bce282d-faf4-48c6-83ad-b5e727dda237", + "version": "1.1", + "pronom_id": "fmt/1806", + "description": "Microsoft Access Database File v1.1", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-access-database-file-v11" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.649Z", + "uuid": "bebb752e-acb5-4acc-bb07-638376f7dda8", + "format": "fb29955b-b346-4e7f-b473-8a2615888128", + "version": "1.0", + "pronom_id": "fmt/1807", + "description": "Microsoft Access Encrypted Database File v1.0", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-access-encrypted-database-file-v10" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.662Z", + "uuid": "e22b6e4e-24da-42bd-a8bc-800333140b1d", + "format": "fb29955b-b346-4e7f-b473-8a2615888128", + "version": "1.1", + "pronom_id": "fmt/1808", + "description": "Microsoft Access Encrypted Database File v1.1", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-access-encrypted-database-file-v11" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.676Z", + "uuid": "40c34d62-960c-4882-a6f7-7524c2e956d7", + "format": "fb29955b-b346-4e7f-b473-8a2615888128", + "version": "2.0", + "pronom_id": "fmt/1809", + "description": "Microsoft Access Encrypted Database File v2.0", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-access-encrypted-database-file-v20" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.697Z", + "uuid": "1ca8430a-717a-44fd-ab4e-363be4ffa435", + "format": "ac5d08a9-d7ef-4869-9d51-ccb586545457", + "version": null, + "pronom_id": "fmt/1810", + "description": "Raw PIMA SWIR Reflectance Spectral File", + "access_format": false, + "preservation_format": false, + "slug": "raw-pima-swir-reflectance-spectral-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.717Z", + "uuid": "7029a24b-9717-4dc3-b38a-6abadbd74ae3", + "format": "cc5bbbf4-c495-4f88-9b07-bf82095c2380", + "version": null, + "pronom_id": "fmt/1811", + "description": "Vips Little-endian", + "access_format": false, + "preservation_format": false, + "slug": "vips-little-endian" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.738Z", + "uuid": "4ccfdec6-53dc-41ed-a580-82d1a6fbcab0", + "format": "9f40ae1f-e6f2-465a-a031-b05cc31c666f", + "version": null, + "pronom_id": "fmt/1812", + "description": "Audio Data Transport Stream sig.1", + "access_format": false, + "preservation_format": false, + "slug": "audio-data-transport-stream-sig1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.752Z", + "uuid": "eadc5312-800e-4786-a7f1-6166a8f2f316", + "format": "2261d5f9-f994-4503-8e99-c3ddf24b89fa", + "version": "3.0.0", + "pronom_id": "fmt/1813", + "description": "xdomea v.3.0.0", + "access_format": false, + "preservation_format": false, + "slug": "xdomea-v300" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.774Z", + "uuid": "1ce3699f-43f1-4467-8663-2eac3af9fe28", + "format": "7a1dee51-ff59-4291-a901-8647e460cf11", + "version": null, + "pronom_id": "fmt/1814", + "description": "Adobe Color Book for Windows", + "access_format": false, + "preservation_format": false, + "slug": "adobe-color-book-for-windows" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.796Z", + "uuid": "a25b6afc-63dd-48e7-b6d9-a0dc304180d2", + "format": "b6dca98a-f110-4357-8bb0-5cd699ccf126", + "version": null, + "pronom_id": "fmt/1815", + "description": "Adobe Color Swatch", + "access_format": false, + "preservation_format": false, + "slug": "adobe-color-swatch" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.818Z", + "uuid": "83c3c237-2286-4429-928b-273e5edf3aa7", + "format": "e79157fd-00b8-49c3-9ccf-5879585a9db1", + "version": null, + "pronom_id": "fmt/1816", + "description": "Adobe Swatch Exchange", + "access_format": false, + "preservation_format": false, + "slug": "adobe-swatch-exchange" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.836Z", + "uuid": "f3080de3-1ed5-482f-9aa0-3f2f64e55cf7", + "format": "bee2da40-65d4-4c73-b16c-157109272f9c", + "version": null, + "pronom_id": "fmt/1817", + "description": "Direct Stream Digital Stream File", + "access_format": false, + "preservation_format": false, + "slug": "direct-stream-digital-stream-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.857Z", + "uuid": "fc8e120a-fcf8-48bc-946d-ece3b0992a4a", + "format": "758a507c-3fb9-4a67-b4f5-9236e967ca67", + "version": null, + "pronom_id": "fmt/1818", + "description": "Direct Stream Digital Interchange File Format", + "access_format": false, + "preservation_format": false, + "slug": "direct-stream-digital-interchange-file-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.877Z", + "uuid": "56d1b1f5-51ca-4d70-8783-9ceeeb95e100", + "format": "6cdac672-c2d1-488a-9dfa-a9fc6b0d11c8", + "version": "1", + "pronom_id": "fmt/1819", + "description": "MacCaption File v.1", + "access_format": false, + "preservation_format": false, + "slug": "maccaption-file-v1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.891Z", + "uuid": "771f36f5-1abe-4aa6-8f69-dd0d1e2c38a6", + "format": "6cdac672-c2d1-488a-9dfa-a9fc6b0d11c8", + "version": "2", + "pronom_id": "fmt/1820", + "description": "MacCaption File v.2", + "access_format": false, + "preservation_format": false, + "slug": "maccaption-file-v2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.912Z", + "uuid": "0fec6519-22e9-4ef0-90a4-5c73ab9eaec1", + "format": "fe8c7a22-a1b5-4048-87eb-40064c5a422a", + "version": null, + "pronom_id": "fmt/1821", + "description": "MacCaption Project File", + "access_format": false, + "preservation_format": false, + "slug": "maccaption-project-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.932Z", + "uuid": "ec204c7a-fd2d-4fc2-b566-51f4d6b66244", + "format": "3c42777d-b614-4114-9a24-a9ace41929c6", + "version": null, + "pronom_id": "fmt/1822", + "description": "Audacity Audio Block File", + "access_format": false, + "preservation_format": false, + "slug": "audacity-audio-block-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.954Z", + "uuid": "90e56674-f565-43ac-952d-21263a26ea16", + "format": "a600a941-8459-4fe6-8f6e-44717fb0b378", + "version": "Early", + "pronom_id": "fmt/1823", + "description": "Audacity Project File (Early)", + "access_format": false, + "preservation_format": false, + "slug": "audacity-project-file-early" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.968Z", + "uuid": "85f13e15-0eee-4309-92d1-988334a1bf8e", + "format": "a600a941-8459-4fe6-8f6e-44717fb0b378", + "version": "1.x", + "pronom_id": "fmt/1824", + "description": "Audacity Project File (v.1.x)", + "access_format": false, + "preservation_format": false, + "slug": "audacity-project-file-v1x" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.982Z", + "uuid": "f2e181ac-45a0-4317-8e0a-58332346be95", + "format": "a600a941-8459-4fe6-8f6e-44717fb0b378", + "version": "2.x", + "pronom_id": "fmt/1825", + "description": "Audacity Project File (v.2.x)", + "access_format": false, + "preservation_format": false, + "slug": "audacity-project-file-v2x" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.997Z", + "uuid": "beb72021-0292-45df-81cd-9d9c6a83983b", + "format": "a600a941-8459-4fe6-8f6e-44717fb0b378", + "version": "3.x", + "pronom_id": "fmt/1826", + "description": "Audacity Project File (v.3.x)", + "access_format": false, + "preservation_format": false, + "slug": "audacity-project-file-v3x" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.016Z", + "uuid": "1ee670a9-7ff3-4c0c-9bb7-9637038e30b2", + "format": "a96a4515-7305-4b16-8b87-a293934895ba", + "version": "", + "pronom_id": "fmt/1827", + "description": "DOCX Strict OOXML Document", + "access_format": false, + "preservation_format": false, + "slug": "docx-strict-ooxml-document" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.037Z", + "uuid": "03fd58ef-855f-4e20-ba35-c42baf33afbc", + "format": "071a436d-584a-4009-8674-0cef6b00ebc7", + "version": "", + "pronom_id": "fmt/1828", + "description": "XLSX Strict OOXML Spreadsheet", + "access_format": false, + "preservation_format": false, + "slug": "xlsx-strict-ooxml-spreadsheet" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.058Z", + "uuid": "99ccbb9f-f91e-43e6-9ebc-5e4a64b2bc99", + "format": "9f7ce51b-53ca-46ce-99be-b1ee62210916", + "version": "", + "pronom_id": "fmt/1829", + "description": "PPTX Strict OOXML Presentation", + "access_format": false, + "preservation_format": false, + "slug": "pptx-strict-ooxml-presentation" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.078Z", + "uuid": "11a67f99-28ef-46a8-89a8-b0a648fe19b3", + "format": "55475154-08b1-4409-a5f4-09856fb1c6fc", + "version": null, + "pronom_id": "fmt/1830", + "description": "3D Studio (DOS) 2D/3D Loft Object File", + "access_format": false, + "preservation_format": false, + "slug": "3d-studio-dos-2d3d-loft-object-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.098Z", + "uuid": "14a607bb-db5d-48bd-a7ed-ffa5f1d3b9d4", + "format": "da640572-2569-47c0-a352-ddf60c630c7e", + "version": null, + "pronom_id": "fmt/1831", + "description": "3D Studio (DOS) Project File", + "access_format": false, + "preservation_format": false, + "slug": "3d-studio-dos-project-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.119Z", + "uuid": "a2cd1f2f-0002-48af-9a55-7c8a5228d287", + "format": "62f3cda6-5d29-4a70-bb4f-6163e6026a1e", + "version": null, + "pronom_id": "fmt/1832", + "description": "ArcSoft PhotoStudio File", + "access_format": false, + "preservation_format": false, + "slug": "arcsoft-photostudio-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.146Z", + "uuid": "8c5f91a9-b9c0-4774-9423-8a7b6d028109", + "format": "71fc881b-87b6-45ea-bc1c-6accba17cf84", + "version": null, + "pronom_id": "fmt/1833", + "description": "ArcSoft Album and SlideShow Files for PhotoStudio and PhotoImpression", + "access_format": false, + "preservation_format": false, + "slug": "arcsoft-album-and-slideshow-files-for-photostudio" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.178Z", + "uuid": "3817cedb-0672-4550-bc32-5020c31754a2", + "format": "84c792ca-fcae-44e4-8d2e-b46e40c592e9", + "version": null, + "pronom_id": "fmt/1834", + "description": "GoDot 4Bit Graphics Format", + "access_format": false, + "preservation_format": false, + "slug": "godot-4bit-graphics-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.214Z", + "uuid": "e8c5b690-b79d-412b-b828-fd536891efae", + "format": "1f8ce5be-8730-4221-95c8-fc65cdd61f30", + "version": null, + "pronom_id": "fmt/1835", + "description": "Archiver Format", + "access_format": false, + "preservation_format": false, + "slug": "archiver-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.239Z", + "uuid": "bed4b5b0-82ac-4dce-866e-6e3bf05928dd", + "format": "f8b38e1e-5c7f-4ebf-9206-5dada77cfd87", + "version": null, + "pronom_id": "fmt/1836", + "description": "Brio Query File", + "access_format": false, + "preservation_format": false, + "slug": "brio-query-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.266Z", + "uuid": "2676bb31-0d6f-4037-9f78-dbf1e3370872", + "format": "04f1615e-b754-4b46-b582-ba500b2de61e", + "version": "2", + "pronom_id": "fmt/1837", + "description": "WordPerfect Presentations v.2", + "access_format": false, + "preservation_format": false, + "slug": "wordperfect-presentations-v2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.289Z", + "uuid": "97cbc78e-3e8b-424d-9409-b94ca8b7a428", + "format": "aaf9db8d-b8e8-45ab-8840-34f6ce2348ac", + "version": null, + "pronom_id": "fmt/1838", + "description": "Leica Project File", + "access_format": false, + "preservation_format": false, + "slug": "leica-project-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.310Z", + "uuid": "40e2e5d8-0e84-4192-8ece-051d9548112f", + "format": "85d05b10-716a-435e-980d-6ca65ff96315", + "version": null, + "pronom_id": "fmt/1839", + "description": "Microsoft Publisher Packaged Document", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-publisher-packaged-document" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.329Z", + "uuid": "69c25e37-b2bf-4ec2-8c29-1268adc61d09", + "format": "709a31d2-adc3-4cbb-a3e0-08d9f9d50303", + "version": null, + "pronom_id": "fmt/1840", + "description": "WACZ", + "access_format": false, + "preservation_format": false, + "slug": "wacz" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.343Z", + "uuid": "11f23ed7-2bc7-423f-8339-51c67df45325", + "format": "263fd308-f220-4b46-b2b0-2863e1963449", + "version": "1.5", + "pronom_id": "fmt/1841", + "description": "DNG 1.5 (Little Endian, BOF)", + "access_format": false, + "preservation_format": false, + "slug": "dng-15-little-endian-bof" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.360Z", + "uuid": "3a1af98b-18f1-4bb2-9ab7-213adf62e8b6", + "format": "263fd308-f220-4b46-b2b0-2863e1963449", + "version": "1.6", + "pronom_id": "fmt/1842", + "description": "DNG 1.6 (Little Endian, BOF)", + "access_format": false, + "preservation_format": false, + "slug": "dng-16-little-endian-bof" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.390Z", + "uuid": "cb8410e1-3a34-4267-8e7f-b38a5307d39a", + "format": "33917225-ecac-433b-8fe9-00e2195368e7", + "version": null, + "pronom_id": "fmt/1843", + "description": "Human Machine Interfaces HMI File", + "access_format": false, + "preservation_format": false, + "slug": "human-machine-interfaces-hmi-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.410Z", + "uuid": "d951dca4-fff3-48e6-8ffe-9ea9f0f39132", + "format": "565cc087-1b41-4808-bf29-b8fbf6f301da", + "version": null, + "pronom_id": "fmt/1844", + "description": "GNU Image Manipulation Program Palette File", + "access_format": false, + "preservation_format": false, + "slug": "gnu-image-manipulation-program-palette-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.426Z", + "uuid": "581205c2-ca21-440f-8b69-1b8f6dda277d", + "format": "044a8d9e-e636-4d9d-9fe8-3f1cdfa99060", + "version": "8", + "pronom_id": "fmt/1845", + "description": "Final Draft Document v.8 onwards", + "access_format": false, + "preservation_format": false, + "slug": "final-draft-document-v8-onwards" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.453Z", + "uuid": "cbe4b3d3-c8a4-4a1a-ac34-5d3dffb8489d", + "format": "4bad4ce2-97e8-438f-a7bc-6d3a9592831a", + "version": null, + "pronom_id": "fmt/1846", + "description": "Fountain Markup Language File", + "access_format": false, + "preservation_format": false, + "slug": "fountain-markup-language-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.472Z", + "uuid": "98af8d2c-7579-49c5-9284-94ef18726edf", + "format": "d0d97f23-3553-4bc1-bad1-3e7785a19fcf", + "version": null, + "pronom_id": "fmt/1847", + "description": "Esri ArcMap Label file", + "access_format": false, + "preservation_format": false, + "slug": "esri-arcmap-label-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.490Z", + "uuid": "ddd85625-73b9-41ed-802b-53215cebd920", + "format": "10fcb2f0-a501-4785-b93f-15d1d0fa9589", + "version": null, + "pronom_id": "fmt/1848", + "description": "Trelby Document File", + "access_format": false, + "preservation_format": false, + "slug": "trelby-document-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.509Z", + "uuid": "a9355899-7682-4333-b1ef-43166b4d6a32", + "format": "edf5098c-0416-4f94-b058-2bdcd5bf6634", + "version": null, + "pronom_id": "fmt/1849", + "description": "General Purpose RAW (GoPro GPR)", + "access_format": false, + "preservation_format": false, + "slug": "general-purpose-raw-gopro-gpr" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.529Z", + "uuid": "7c6658a6-cc9d-435e-9fb3-f669960ed132", + "format": "ec0f4dc9-1095-43d4-ace9-e20601ce32ff", + "version": null, + "pronom_id": "fmt/1850", + "description": "WordPerfect Macro File - wpm extension", + "access_format": false, + "preservation_format": false, + "slug": "wordperfect-macro-file-wpm-extension" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.551Z", + "uuid": "babfdf46-bd87-4199-8b7f-337ebbe76d28", + "format": "9c49ffce-d1e9-4177-b55b-d1ea2f327c99", + "version": null, + "pronom_id": "fmt/1851", + "description": "DAV Video Format", + "access_format": false, + "preservation_format": false, + "slug": "dav-video-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.572Z", + "uuid": "1ebcdab2-888d-4f29-bfce-70f0a56e1f45", + "format": "81a53567-8da4-4bfd-a213-eba4fbad4fd3", + "version": null, + "pronom_id": "fmt/1852", + "description": "Camtasia Recording File", + "access_format": false, + "preservation_format": false, + "slug": "camtasia-recording-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.595Z", + "uuid": "7864b371-e882-4f6a-a236-00b47ece23e6", + "format": "7de7910f-f3ec-4f77-9d49-f52ca9a78c5c", + "version": null, + "pronom_id": "fmt/1853", + "description": "Camtasia Studio Project", + "access_format": false, + "preservation_format": false, + "slug": "camtasia-studio-project" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.624Z", + "uuid": "9a89a31f-590a-4238-9ebf-921b95e51996", + "format": "d97c5748-8379-46a9-a090-48858977da1e", + "version": "1.0", + "pronom_id": "fmt/1854", + "description": "Open Media Framework Interchange 1.0 (sig 1)", + "access_format": false, + "preservation_format": false, + "slug": "open-media-framework-interchange-10-sig-1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.638Z", + "uuid": "05ce1429-62c6-4303-a166-e85ed3707099", + "format": "d97c5748-8379-46a9-a090-48858977da1e", + "version": "2.0", + "pronom_id": "fmt/1855", + "description": "Open Media Framework Interchange 2.0 (sig 1)", + "access_format": false, + "preservation_format": false, + "slug": "open-media-framework-interchange-20-sig-1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.659Z", + "uuid": "73ed8c09-3c00-4494-bd55-9ee292857174", + "format": "7fca248b-310f-4ab9-a6ef-7e775de55b55", + "version": null, + "pronom_id": "fmt/1856", + "description": "Enhanced Image Package", + "access_format": false, + "preservation_format": false, + "slug": "enhanced-image-package" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.679Z", + "uuid": "d3de64ea-1cc4-40a1-ae31-28e252872add", + "format": "ba8cda1f-033a-47d4-b432-20eccb509879", + "version": null, + "pronom_id": "fmt/1857", + "description": "Capture One Session File", + "access_format": false, + "preservation_format": false, + "slug": "capture-one-session-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.701Z", + "uuid": "c8fc8856-6001-4ba1-8300-2b4c59382494", + "format": "f8fe5302-965d-4e19-8cf6-82412a01982c", + "version": "5/95", + "pronom_id": "fmt/1858", + "description": "Microsoft Excel Workspace File", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-excel-workspace-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.718Z", + "uuid": "adac6132-194a-4c8f-82b1-3af68db52088", + "format": "f066987f-5580-47fd-8a39-22980ad64233", + "version": "2.5", + "pronom_id": "fmt/1859", + "description": "Adobe Air", + "access_format": false, + "preservation_format": false, + "slug": "adobe-air-4" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.749Z", + "uuid": "1ad9e074-91a6-4df3-a5b4-c448617f790d", + "format": "b80eb8af-9a82-4d8e-a081-09184c475a21", + "version": "IV", + "pronom_id": "fmt/1860", + "description": "dBASE Report Form Definition File IV", + "access_format": false, + "preservation_format": false, + "slug": "dbase-report-form-definition-file-iv" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.772Z", + "uuid": "e4c1dd64-b727-47aa-b0a8-1838593552ab", + "format": "283622ec-45d7-42a9-bb27-2256c9e23e53", + "version": "3", + "pronom_id": "fmt/1861", + "description": "Quicken 3 database File", + "access_format": false, + "preservation_format": false, + "slug": "quicken-3-database-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.793Z", + "uuid": "6b00bb83-f1d7-4077-a882-30a9469a5f6b", + "format": "7e0d38a5-ff4c-4050-837d-93b597e3433d", + "version": "17-23", + "pronom_id": "fmt/1862", + "description": "Adobe Illustrator CC Artwork 17-23", + "access_format": false, + "preservation_format": false, + "slug": "adobe-illustrator-cc-artwork-17-23" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.817Z", + "uuid": "6ae48b73-451b-4848-95b4-f64ef60bae14", + "format": "c60c1602-73e3-4bf1-978b-efaf77716198", + "version": "24-24.1", + "pronom_id": "fmt/1863", + "description": "Adobe Illustrator CC 2020 Artwork 24-24.1", + "access_format": false, + "preservation_format": false, + "slug": "adobe-illustrator-cc-2020-artwork-24-241" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.832Z", + "uuid": "accdee18-84db-4eb1-93ee-3fc84625d97f", + "format": "c60c1602-73e3-4bf1-978b-efaf77716198", + "version": "24.2+", + "pronom_id": "fmt/1864", + "description": "Adobe Illustrator CC 2020 Artwork 24.2+", + "access_format": false, + "preservation_format": false, + "slug": "adobe-illustrator-cc-2020-artwork-242" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.855Z", + "uuid": "cc7c5641-e2a7-4f09-aafa-db7d5740d65b", + "format": "d090f14a-4e8f-4483-baaf-b6d757743989", + "version": null, + "pronom_id": "fmt/1865", + "description": "SWiSH Movie File", + "access_format": false, + "preservation_format": false, + "slug": "swish-movie-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.871Z", + "uuid": "aea5071c-ff60-43a8-9f4c-5fe45acae3f1", + "format": "952f4577-e723-4aa9-a4ee-bca7352c4c0f", + "version": "2", + "pronom_id": "fmt/1866", + "description": "Microsoft Powerpoint for Macintosh v.2", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-powerpoint-for-macintosh-v2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.889Z", + "uuid": "9dab1e64-8805-452f-a3c4-629394a8cd07", + "format": "952f4577-e723-4aa9-a4ee-bca7352c4c0f", + "version": "3", + "pronom_id": "fmt/1867", + "description": "Microsoft Powerpoint for Macintosh v.3", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-powerpoint-for-macintosh-v3" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.912Z", + "uuid": "a1b701bc-47c6-45a1-acbc-83b13a634dae", + "format": "a261ffd0-0afb-4f1e-a95f-0b0a40757003", + "version": null, + "pronom_id": "fmt/1868", + "description": "Leapfrog Geo 3D Scene Format", + "access_format": false, + "preservation_format": false, + "slug": "leapfrog-geo-3d-scene-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.933Z", + "uuid": "852b348f-207f-4921-a95b-4df74f5d1563", + "format": "989fdeb7-7aa5-4690-993a-fd63f5a71f27", + "version": null, + "pronom_id": "fmt/1869", + "description": "SPSS PC File format", + "access_format": false, + "preservation_format": false, + "slug": "spss-pc-file-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.947Z", + "uuid": "065f69b8-887e-4d0d-a26e-88da170909fd", + "format": "41cca819-0ec0-4278-9fa4-bb9cdf924570", + "version": null, + "pronom_id": "fmt/1870", + "description": "Yamaha PSR Disk Manager File", + "access_format": false, + "preservation_format": false, + "slug": "yamaha-psr-disk-manager-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.968Z", + "uuid": "5501461b-3260-4666-8b70-b9a365ec435c", + "format": "1b78a664-2796-4c15-9ffb-b4bd893dadd2", + "version": null, + "pronom_id": "fmt/1871", + "description": "Common Interface File", + "access_format": false, + "preservation_format": false, + "slug": "common-interface-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.990Z", + "uuid": "95f233a2-e80b-4167-ba34-61be2c512f15", + "format": "f0e36d50-6b23-4f35-9aa3-3a908ead4bac", + "version": "1", + "pronom_id": "fmt/1872", + "description": "Guitar Pro v1", + "access_format": false, + "preservation_format": false, + "slug": "guitar-pro-v1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.003Z", + "uuid": "5cbf553f-96c9-42df-bb2c-86b398aae9b3", + "format": "f0e36d50-6b23-4f35-9aa3-3a908ead4bac", + "version": "2-5", + "pronom_id": "fmt/1873", + "description": "Guitar Pro v2-v5", + "access_format": false, + "preservation_format": false, + "slug": "guitar-pro-v2-v5" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.021Z", + "uuid": "1db53296-e61b-40d1-9e41-fcfe0a79955c", + "format": "292ca075-d4be-4996-9faa-0c14c0422aa9", + "version": null, + "pronom_id": "fmt/1874", + "description": "Esko ArtPro File", + "access_format": false, + "preservation_format": false, + "slug": "esko-artpro-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.040Z", + "uuid": "5b089595-0d3f-4074-bfd2-d042c3745ff0", + "format": "ee9cda35-a487-48fd-aa08-576aaecc316d", + "version": null, + "pronom_id": "fmt/1875", + "description": "Maptech BSB Documentation File", + "access_format": false, + "preservation_format": false, + "slug": "maptech-bsb-documentation-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.059Z", + "uuid": "366e0ecf-cdac-45b7-9222-6f1740958db4", + "format": "df265891-d004-4756-8252-727e8c0e9771", + "version": null, + "pronom_id": "fmt/1876", + "description": "HMM Packfile", + "access_format": false, + "preservation_format": false, + "slug": "hmm-packfile" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.077Z", + "uuid": "01623c05-2329-496a-b1ce-0f5e07a595c3", + "format": "0edc1da8-982a-4937-81dd-c1dbb9f6ed08", + "version": "1", + "pronom_id": "fmt/1877", + "description": "GST Art File v.1", + "access_format": false, + "preservation_format": false, + "slug": "gst-art-file-v1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.090Z", + "uuid": "b2f6f8d3-2360-437e-b273-c157a0a3514f", + "format": "0edc1da8-982a-4937-81dd-c1dbb9f6ed08", + "version": "2", + "pronom_id": "fmt/1878", + "description": "GST Art File", + "access_format": false, + "preservation_format": false, + "slug": "gst-art-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.110Z", + "uuid": "14452456-e226-48f5-aa2f-9496ce960ab8", + "format": "d4d2683e-889a-49af-ba63-58886283b422", + "version": "2.1", + "pronom_id": "fmt/1879", + "description": "vCard v.2.1", + "access_format": false, + "preservation_format": false, + "slug": "vcard-v21" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.125Z", + "uuid": "f28fc4b4-8e5f-4986-ab32-ebc28b19ebc9", + "format": "d4d2683e-889a-49af-ba63-58886283b422", + "version": "3", + "pronom_id": "fmt/1880", + "description": "vCard v.3", + "access_format": false, + "preservation_format": false, + "slug": "vcard-v3" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.140Z", + "uuid": "e1223e4d-668e-4c2b-8839-2ad7d4793ce4", + "format": "d4d2683e-889a-49af-ba63-58886283b422", + "version": "4", + "pronom_id": "fmt/1881", + "description": "vCard v.4", + "access_format": false, + "preservation_format": false, + "slug": "vcard-v4" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.159Z", + "uuid": "c1e6b1ff-84b9-4fb8-9b17-b544e683c1a2", + "format": "eda4e0b0-8fcf-484d-859e-09a35dbee579", + "version": "1.*", + "pronom_id": "fmt/1882", + "description": "OPML File v.1.*", + "access_format": false, + "preservation_format": false, + "slug": "opml-file-v1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.172Z", + "uuid": "35e80eca-6bf5-4924-a237-88f368d58061", + "format": "eda4e0b0-8fcf-484d-859e-09a35dbee579", + "version": "2", + "pronom_id": "fmt/1883", + "description": "OPML File v.2", + "access_format": false, + "preservation_format": false, + "slug": "opml-file-v2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.193Z", + "uuid": "71f49384-1d72-4dd2-b9f2-955b5551c07e", + "format": "9f97152c-aa9e-4484-9de7-97ff711cd85a", + "version": null, + "pronom_id": "fmt/1885", + "description": "CloudCompare Entity File", + "access_format": false, + "preservation_format": false, + "slug": "cloudcompare-entity-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.213Z", + "uuid": "734470d8-01d5-4f1f-a209-3487b6d39861", + "format": "8d32f9ef-f24f-43ee-8cac-fec78454c784", + "version": "2.1", + "pronom_id": "fmt/1884", + "description": "EPS 2.1", + "access_format": false, + "preservation_format": false, + "slug": "eps-21" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.233Z", + "uuid": "be6f9174-dba8-45c4-8e28-2069c8386c07", + "format": "4848246c-13bd-4e8b-bb10-23d772a67b50", + "version": null, + "pronom_id": "fmt/1886", + "description": "RIFF", + "access_format": false, + "preservation_format": false, + "slug": "riff" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.246Z", + "uuid": "b77010a4-e02c-4945-a3e8-6ca7c20dee9f", + "format": "b8544e20-cc2e-4e6c-8eaa-4ce41b8b4281", + "version": "1", + "pronom_id": "fmt/1887", + "description": "CIF1", + "access_format": false, + "preservation_format": false, + "slug": "cif1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.267Z", + "uuid": "0b2e3d12-52db-4279-8bf5-b14d32265ad1", + "format": "b8544e20-cc2e-4e6c-8eaa-4ce41b8b4281", + "version": "2", + "pronom_id": "fmt/1888", + "description": "CIF2", + "access_format": false, + "preservation_format": false, + "slug": "cif2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.287Z", + "uuid": "e50a533e-ed2f-4b34-8236-b8a8bc023d51", + "format": "bfcf2ee1-f57e-4521-bb52-eeb616a6e97d", + "version": "III", + "pronom_id": "fmt/1889", + "description": "Open Access III Document", + "access_format": false, + "preservation_format": false, + "slug": "open-access-iii-document" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.307Z", + "uuid": "c3f45022-fbf8-4ef4-91dc-e4cb56c2ee60", + "format": "a609e046-0e14-4e81-820d-121c67507622", + "version": "", + "pronom_id": "fmt/1890", + "description": "MSV ADPCM", + "access_format": false, + "preservation_format": false, + "slug": "msv-adpcm" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.330Z", + "uuid": "b4c26455-bb68-43f7-95cb-a6639c8b70fb", + "format": "7dae61f0-e209-4214-aed0-6d5306f0e7cf", + "version": "TRC Codec", + "pronom_id": "fmt/1891", + "description": "DVF TRC", + "access_format": false, + "preservation_format": false, + "slug": "dvf-trc" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.353Z", + "uuid": "a32332d0-6203-4029-b3e0-f462bb849cf2", + "format": "30ee2560-f500-4c79-a5a9-b263817d5450", + "version": "LPEC Codec", + "pronom_id": "fmt/1892", + "description": "MSV/DVF LPEC", + "access_format": false, + "preservation_format": false, + "slug": "msvdvf-lpec" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.374Z", + "uuid": "624b7b3b-44db-439c-ab08-6125f52e7c2e", + "format": "b2cd31a0-cb6b-43f4-97ad-a481c985747f", + "version": null, + "pronom_id": "fmt/1893", + "description": "Microsoft Agent File", + "access_format": false, + "preservation_format": false, + "slug": "microsoft-agent-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.395Z", + "uuid": "8d1f803c-e017-43fd-a2ea-db3db2a15c7c", + "format": "fbfb9fa7-3fb2-4538-abd2-18bf4390b311", + "version": "2-3", + "pronom_id": "fmt/1894", + "description": "RagTime Document File v2-3", + "access_format": false, + "preservation_format": false, + "slug": "ragtime-document-file-v2-3" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.402Z", + "uuid": "93cd6497-3a4d-4271-b77e-f4058504e7ef", + "format": "fbfb9fa7-3fb2-4538-abd2-18bf4390b311", + "version": "4-6", + "pronom_id": "fmt/1895", + "description": "RagTime Document File v4-6", + "access_format": false, + "preservation_format": false, + "slug": "ragtime-document-file-v4-6" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.421Z", + "uuid": "ed1e60e6-a05d-4972-b9c5-2832ac2e0fc0", + "format": "5e3d6acf-30db-468b-8319-3d9fb46e223f", + "version": null, + "pronom_id": "fmt/1896", + "description": "Nokia Picture Message", + "access_format": false, + "preservation_format": false, + "slug": "nokia-picture-message" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.439Z", + "uuid": "a8d733c8-21c8-4f20-a9ae-62cdc2e571b6", + "format": "73751df7-cf22-46cd-9368-c12a853953da", + "version": null, + "pronom_id": "fmt/1897", + "description": "Ptex File Format", + "access_format": false, + "preservation_format": false, + "slug": "ptex-file-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.464Z", + "uuid": "31fee8aa-d0cb-4a81-9b20-195179efb98b", + "format": "d2430ec9-5731-4241-9f28-5df897a1a81f", + "version": null, + "pronom_id": "fmt/1898", + "description": "Perfect ZX Tape (PZX) Image Format", + "access_format": false, + "preservation_format": false, + "slug": "perfect-zx-tape-pzx-image-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.483Z", + "uuid": "ab04d837-c7db-4c1e-afb2-fd9be2047bb1", + "format": "655f00f4-a0e2-431c-9bad-f5148f74d05e", + "version": null, + "pronom_id": "fmt/1899", + "description": "RIS Citation", + "access_format": false, + "preservation_format": false, + "slug": "ris-citation" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.505Z", + "uuid": "0ef5f609-b2c4-4889-8641-de2af79b2c20", + "format": "c0129a88-569e-4b63-8fb5-ac87e871b27a", + "version": null, + "pronom_id": "fmt/1900", + "description": "Mass Spectrometry Markup Language", + "access_format": false, + "preservation_format": false, + "slug": "mass-spectrometry-markup-language" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.527Z", + "uuid": "19d42cc4-eaa7-4583-aa0a-d12cbb5f6ec4", + "format": "4295c246-05b1-4e1e-9895-1bcb377a010f", + "version": null, + "pronom_id": "fmt/1901", + "description": "SGI Movie File", + "access_format": false, + "preservation_format": false, + "slug": "sgi-movie-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.546Z", + "uuid": "83e56050-4fe8-49ae-a34c-3356852326fa", + "format": "109b4259-bff3-4e6f-a46d-1f6082ef46e7", + "version": null, + "pronom_id": "fmt/1902", + "description": "Norton Change Directory Persistent Cache File", + "access_format": false, + "preservation_format": false, + "slug": "norton-change-directory-persistent-cache-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.567Z", + "uuid": "023d3038-e5aa-4207-b360-9abfd5c570cb", + "format": "9415f16a-4b4f-4e59-8824-579b033435a0", + "version": null, + "pronom_id": "fmt/1903", + "description": "Garmin Vehicle Images File", + "access_format": false, + "preservation_format": false, + "slug": "garmin-vehicle-images-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.587Z", + "uuid": "cd3c7017-0575-4fbe-84ab-89a64d6bc31b", + "format": "fa12eeec-f153-493f-9a9b-30e4a27a3177", + "version": null, + "pronom_id": "fmt/1904", + "description": "Pasti Floppy Disk Image", + "access_format": false, + "preservation_format": false, + "slug": "pasti-floppy-disk-image" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.610Z", + "uuid": "8dfd5342-ab7b-416d-bdc5-08ece3bfcf8b", + "format": "013984c1-b3fd-407d-bb07-1ecabc4a68e1", + "version": null, + "pronom_id": "fmt/1905", + "description": "Universal Scene Description ASCII File", + "access_format": false, + "preservation_format": false, + "slug": "universal-scene-description-ascii-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.635Z", + "uuid": "a4fc186d-701e-4ea7-8ed2-6cae705339fd", + "format": "3e0da270-9ecf-49a9-a5ff-680212ab61d7", + "version": null, + "pronom_id": "fmt/1906", + "description": "VBM (VDC BitMap) File", + "access_format": false, + "preservation_format": false, + "slug": "vbm-vdc-bitmap-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.654Z", + "uuid": "231cc454-be4b-4d41-8c33-0f8db68a4477", + "format": "524d738a-d006-4e94-afe0-32fe0b16d38b", + "version": null, + "pronom_id": "fmt/1907", + "description": "Micrografx Icon File", + "access_format": false, + "preservation_format": false, + "slug": "micrografx-icon-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.671Z", + "uuid": "aad516e7-50f3-4954-91ff-38f92fa1ab80", + "format": "454165a7-1b28-41a2-a327-ce4f58a856ad", + "version": null, + "pronom_id": "fmt/1908", + "description": "Jupiter Tesselation (JT) File", + "access_format": false, + "preservation_format": false, + "slug": "jupiter-tesselation-jt-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.691Z", + "uuid": "39fa5ff0-b367-4392-963d-1111c1725d6c", + "format": "431f452a-3499-4325-a2f7-494c5a1f79af", + "version": null, + "pronom_id": "fmt/1909", + "description": "TibetDoc", + "access_format": false, + "preservation_format": false, + "slug": "tibetdoc" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.707Z", + "uuid": "e85db6d6-7f7a-4d06-993c-670f2489d919", + "format": "ff0065fc-fff5-491a-ae5e-d11bc0e74cd7", + "version": "4", + "pronom_id": "fmt/1910", + "description": "PDF/A-4", + "access_format": false, + "preservation_format": false, + "slug": "pdfa-4" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.722Z", + "uuid": "ddf25ce8-841f-4c36-bd73-bf71755acaad", + "format": "ff0065fc-fff5-491a-ae5e-d11bc0e74cd7", + "version": "4e", + "pronom_id": "fmt/1911", + "description": "PDF/A-4e variant 1", + "access_format": false, + "preservation_format": false, + "slug": "pdfa-4e-variant-1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.741Z", + "uuid": "fae9bbd8-5446-4785-853a-75e9441b4938", + "format": "ff0065fc-fff5-491a-ae5e-d11bc0e74cd7", + "version": "4f", + "pronom_id": "fmt/1912", + "description": "PDF/A-4f variant 1", + "access_format": false, + "preservation_format": false, + "slug": "pdfa-4f-variant-1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.762Z", + "uuid": "170071b9-538d-4373-84e4-8e83d0ebba6e", + "format": "299a6aec-e095-4754-af86-f63ac7f5df93", + "version": "17+", + "pronom_id": "fmt/1913", + "description": "Archicad Project", + "access_format": false, + "preservation_format": false, + "slug": "archicad-project" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.781Z", + "uuid": "00d987c7-a33c-4ef2-a295-4c6a660acf8a", + "format": "54a9bcbb-3381-4726-80b4-1a1ea786391b", + "version": null, + "pronom_id": "fmt/1914", + "description": "Graphisoft BIMx", + "access_format": false, + "preservation_format": false, + "slug": "graphisoft-bimx" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.800Z", + "uuid": "1a356579-c0dc-4de5-b390-6022eee2866d", + "format": "9e326168-d431-4ca8-9d75-495b1d19d192", + "version": null, + "pronom_id": "fmt/1915", + "description": "ActiveMime Object", + "access_format": false, + "preservation_format": false, + "slug": "activemime-object" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.820Z", + "uuid": "d810afed-a691-4cfd-9570-63896062098d", + "format": "3b2a1b41-0944-4009-8893-0d2a97413cf8", + "version": "7", + "pronom_id": "fmt/1916", + "description": "Autodesk Alias Wire Format v.7", + "access_format": false, + "preservation_format": false, + "slug": "autodesk-alias-wire-format-v7" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.833Z", + "uuid": "d4d49e8c-f98c-4b04-a2bc-8e4e27e458e9", + "format": "5363979e-ffa0-4fa7-858d-f9983d3e186c", + "version": null, + "pronom_id": "fmt/1917", + "description": "BigTIFF little endian", + "access_format": false, + "preservation_format": false, + "slug": "bigtiff-little-endian" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.854Z", + "uuid": "9c6b9fe2-24ff-4ba4-962d-717d18fd2c36", + "format": "20602bed-b372-4b09-b774-b7dda857b377", + "version": "2.x", + "pronom_id": "fmt/1918", + "description": "MetaCard Stack 2.x", + "access_format": false, + "preservation_format": false, + "slug": "metacard-stack-2x" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.879Z", + "uuid": "3b522e77-0437-4101-8a25-b487f47f1e7a", + "format": "68d870e3-85f6-48fa-8d14-53cb7bfeb3a0", + "version": "2.7", + "pronom_id": "fmt/1919", + "description": "Revolution Stack v2.7", + "access_format": false, + "preservation_format": false, + "slug": "revolution-stack-v27" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.908Z", + "uuid": "4941d5ad-77a3-42ac-8ea0-18dcc0ca4fbc", + "format": "6825111e-d500-495c-b2d2-f477e870bfa6", + "version": "5.5", + "pronom_id": "fmt/1920", + "description": "LiveCode Stack v5.5", + "access_format": false, + "preservation_format": false, + "slug": "livecode-stack-v55" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.922Z", + "uuid": "5ba13192-c3ca-4a68-a915-e2c5e21c981a", + "format": "6825111e-d500-495c-b2d2-f477e870bfa6", + "version": "7.0", + "pronom_id": "fmt/1921", + "description": "LiveCode Stack v7.0", + "access_format": false, + "preservation_format": false, + "slug": "livecode-stack-v70" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.935Z", + "uuid": "45a4138e-405f-44a0-801d-b37042b64b65", + "format": "6825111e-d500-495c-b2d2-f477e870bfa6", + "version": "8.0", + "pronom_id": "fmt/1922", + "description": "LiveCode Stack v8.0", + "access_format": false, + "preservation_format": false, + "slug": "livecode-stack-v80" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.943Z", + "uuid": "423b151f-8d56-4ce8-ab4e-82c137eb9bc6", + "format": "6825111e-d500-495c-b2d2-f477e870bfa6", + "version": "8.1+", + "pronom_id": "fmt/1923", + "description": "LiveCode Stack v8.1+", + "access_format": false, + "preservation_format": false, + "slug": "livecode-stack-v81" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.960Z", + "uuid": "c185328a-f7b9-4a12-afb0-d52435bd8f18", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "8 Bidi", + "pronom_id": "fmt/1924", + "description": "CorelDraw Drawing version 8 Bidi", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-version-8-bidi" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.975Z", + "uuid": "c0ed060f-142f-4c8f-b682-351c979c49fb", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "X6", + "pronom_id": "fmt/1925", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.991Z", + "uuid": "a6b40202-2174-4a8d-bdd5-32c26738eae7", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "X7", + "pronom_id": "fmt/1926", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-2" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.009Z", + "uuid": "e73437db-cd89-4694-9b4b-975ec4872667", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "X8", + "pronom_id": "fmt/1927", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-3" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.028Z", + "uuid": "218d814c-15d1-4e23-b323-48a41975e043", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2017", + "pronom_id": "fmt/1928", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-4" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.052Z", + "uuid": "96a773e9-b6aa-4a7c-8e23-021a015891b0", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2018", + "pronom_id": "fmt/1929", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-5" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.074Z", + "uuid": "e0ef0090-4e59-4f69-8414-2a75c54bf245", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2019", + "pronom_id": "fmt/1930", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-6" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.099Z", + "uuid": "33cfeecd-2d32-446c-8a9c-0e5df69dc535", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2020", + "pronom_id": "fmt/1931", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-7" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.127Z", + "uuid": "bed0350f-e426-4fdc-a793-a1769c09f62b", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2021", + "pronom_id": "fmt/1932", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-8" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.160Z", + "uuid": "2fb82264-49f9-41ad-a8d9-65c5cf77f9d8", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2022", + "pronom_id": "fmt/1933", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-9" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.190Z", + "uuid": "71f14fd9-faa5-4e26-8fd5-71d0e8cc3f1d", + "format": "ae029f61-d3f1-4252-8a13-2739a863d0e9", + "version": "2023", + "pronom_id": "fmt/1934", + "description": "CorelDraw Drawing", + "access_format": false, + "preservation_format": false, + "slug": "coreldraw-drawing-10" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.227Z", + "uuid": "d8d8dd93-3328-41a1-9295-d5924c6400d9", + "format": "f0cc3433-51fa-4466-ab3c-4c30fe6cc57d", + "version": "3.1", + "pronom_id": "fmt/1935", + "description": "S-57 Electronic Navigational Chart 3.1", + "access_format": false, + "preservation_format": false, + "slug": "s-57-electronic-navigational-chart-31" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.248Z", + "uuid": "b35209d1-64db-47d7-8521-cf418e1a08e3", + "format": "59a4be8a-d0f1-4541-b368-1acc9964c164", + "version": null, + "pronom_id": "fmt/1936", + "description": "PCRaster", + "access_format": false, + "preservation_format": false, + "slug": "pcraster" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.270Z", + "uuid": "debb2ca6-b9b4-443a-abbb-4ddd6d9cdb96", + "format": "bbea9747-480f-49fe-a0b7-fc12ed77b9d0", + "version": null, + "pronom_id": "fmt/1937", + "description": "Amazon Kindle ebook File", + "access_format": false, + "preservation_format": false, + "slug": "amazon-kindle-ebook-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.297Z", + "uuid": "0068dc7e-2383-4a12-bda9-507abd8edb6e", + "format": "77723283-321f-4fff-b796-c7f5c48d6782", + "version": "3.0, 3.1", + "pronom_id": "fmt/1938", + "description": "Lotus Screencam Data File", + "access_format": false, + "preservation_format": false, + "slug": "lotus-screencam-data-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.336Z", + "uuid": "3e82eb42-ef14-4574-a311-10b902e11d74", + "format": "784b4907-e4d6-422b-9417-0a48ae695649", + "version": null, + "pronom_id": "fmt/1939", + "description": "Auto FX PhotoGraphic Edges Image File", + "access_format": false, + "preservation_format": false, + "slug": "auto-fx-photographic-edges-image-file" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.362Z", + "uuid": "b43c1bbc-5563-45da-99bc-9a2eb12901fc", + "format": "14c2aaa3-f96a-49d0-8e39-ae4c9a7f94c4", + "version": null, + "pronom_id": "fmt/1940", + "description": "EBU Subtitling Data Exchange Format", + "access_format": false, + "preservation_format": false, + "slug": "ebu-subtitling-data-exchange-format" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.380Z", + "uuid": "c755f6df-ab9a-4610-825a-b77fe08be24b", + "format": "03e5f908-4a64-4374-ab63-ac11e5e7ebd5", + "version": "CC 2023", + "pronom_id": "fmt/1941", + "description": "Adobe InDesign Document CC 2023", + "access_format": false, + "preservation_format": false, + "slug": "adobe-indesign-document-cc-2023" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.404Z", + "uuid": "db324ba4-dc19-4dca-84a3-90198067e481", + "format": "03e5f908-4a64-4374-ab63-ac11e5e7ebd5", + "version": "CC 2024", + "pronom_id": "fmt/1942", + "description": "Adobe InDesign Document CC 2024", + "access_format": false, + "preservation_format": false, + "slug": "adobe-indesign-document-cc-2024" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.420Z", + "uuid": "15a79d6e-8b47-4e67-9ce5-b5448e987a1c", + "format": "263fd308-f220-4b46-b2b0-2863e1963449", + "version": "1.7", + "pronom_id": "fmt/1943", + "description": "DNG 1.7 (Little Endian, BOF)", + "access_format": false, + "preservation_format": false, + "slug": "dng-17-little-endian-bof" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.443Z", + "uuid": "4dbe6620-c574-4989-9ede-0e9896b946be", + "format": "d81b6538-4f5e-44c0-a00d-b666d6840683", + "version": "1", + "pronom_id": "fmt/1944", + "description": "CLF1", + "access_format": false, + "preservation_format": false, + "slug": "clf1" + } + }, + { + "model": "fpr.formatversion", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.457Z", + "uuid": "73b4d9ae-0a9c-4e06-944c-d8f7ee282b93", + "format": "d81b6538-4f5e-44c0-a00d-b666d6840683", + "version": "2", + "pronom_id": "fmt/1945", + "description": "CLF2", + "access_format": false, + "preservation_format": false, + "slug": "clf2" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.354Z", + "uuid": "3464d389-37f7-4304-9f01-c33fb1951b39", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "fddef854-8c3b-4892-9dac-c51ae22ba76e", + "command_output": ".j2k" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.407Z", + "uuid": "dbb86cc7-d164-4969-85c5-2b9804c7aaf2", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "c03a618a-06f0-4d2f-a38a-c65bf7ceb94c", + "command_output": ".wml" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.432Z", + "uuid": "91f1e5f4-3899-4866-975a-c4e663f1caf8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "add93d4c-663e-40c0-89bf-4ed8f67697ee", + "command_output": ".sha512" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.452Z", + "uuid": "f0f5aeaa-b99b-4b01-a88d-1bd4c87b25f8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "2c9ff7b1-85ef-446a-b166-bcfb7ed5666a", + "command_output": ".cha" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.473Z", + "uuid": "6abd6818-d1b4-4fec-a0f7-75295e002142", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "48120656-2b85-466b-861d-7aec723ea22e", + "command_output": ".flextext" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.497Z", + "uuid": "8295dad8-4322-44b1-8f4e-7b6c5d411300", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "49ae2640-333b-491b-bbdc-160d3049e194", + "command_output": ".mvb" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.523Z", + "uuid": "a3e266a5-1f45-4253-8d6f-a228ec06d433", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "dccf4216-a6e6-4c8b-a999-d82f5f580235", + "command_output": ".textgrid" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.579Z", + "uuid": "fa2ffb56-1c0e-483d-aef5-200d62f05375", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "8ff09bfa-d174-42cf-b159-433f126d18a7", + "command_output": ".trs" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.601Z", + "uuid": "e661f8ec-feb3-4096-8c8b-4bdcf57500f3", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "2fb3e7f4-2307-49d0-b58e-594393094a50", + "command_output": ".b" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.706Z", + "uuid": "84d8a8e8-3e47-4fa1-b11f-3bdbf56004b5", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "1ca8430a-717a-44fd-ab4e-363be4ffa435", + "command_output": ".fos" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.726Z", + "uuid": "c8e659c3-049e-48e0-b84b-2e54ea0baa93", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "7029a24b-9717-4dc3-b38a-6abadbd74ae3", + "command_output": ".v" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.746Z", + "uuid": "1a1882e4-ac6a-49c9-8141-a062dd2483d7", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "4ccfdec6-53dc-41ed-a580-82d1a6fbcab0", + "command_output": ".aac" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.806Z", + "uuid": "d70063c6-0be0-48c8-982e-00fef71010db", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "a25b6afc-63dd-48e7-b6d9-a0dc304180d2", + "command_output": ".aco" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.826Z", + "uuid": "6888252e-e3e2-4dad-8ef1-edf700595ba0", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "83c3c237-2286-4429-928b-273e5edf3aa7", + "command_output": ".ase" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.865Z", + "uuid": "e2ff0f54-9a5a-4115-a1e2-96b64d87caab", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "fc8e120a-fcf8-48bc-946d-ece3b0992a4a", + "command_output": ".dff" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.920Z", + "uuid": "2ce7294e-91d3-4fa9-bb67-f1ebf8845fd9", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "0fec6519-22e9-4ef0-90a4-5c73ab9eaec1", + "command_output": ".cca" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:52.990Z", + "uuid": "7d294f62-c9c1-45d4-bddc-f0e5e35866e2", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "f2e181ac-45a0-4317-8e0a-58332346be95", + "command_output": ".aup" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.005Z", + "uuid": "9696db06-b12b-4536-a2ea-09ef046a5638", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "beb72021-0292-45df-81cd-9d9c6a83983b", + "command_output": ".aup3" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.086Z", + "uuid": "8cf86d90-a323-49cf-b686-801a548efb93", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "11a67f99-28ef-46a8-89a8-b0a648fe19b3", + "command_output": ".lft" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.159Z", + "uuid": "e64b7c9d-a76d-47b8-8492-59086bab8430", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "8c5f91a9-b9c0-4774-9423-8a7b6d028109", + "command_output": ".abm" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.190Z", + "uuid": "f74b4386-9623-4efb-8aa3-e534a6976b67", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "3817cedb-0672-4550-bc32-5020c31754a2", + "command_output": ".4bt" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.227Z", + "uuid": "b8415e3e-56d4-4105-b27d-7c12726fc10a", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "e8c5b690-b79d-412b-b828-fd536891efae", + "command_output": ".a" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.252Z", + "uuid": "e0cb42fd-e050-4b94-9af0-c9bb308c0a6a", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "bed4b5b0-82ac-4dce-866e-6e3bf05928dd", + "command_output": ".bqy" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.297Z", + "uuid": "41e2670c-ff01-4fd3-bc85-df9af773a231", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "97cbc78e-3e8b-424d-9409-b94ca8b7a428", + "command_output": ".lgs" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.318Z", + "uuid": "e4519af2-6ec8-45b0-acc7-58ecbebe42c6", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "40e2e5d8-0e84-4192-8ece-051d9548112f", + "command_output": ".puz" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.336Z", + "uuid": "b2932c0b-26ee-472e-9b89-ffe7df234810", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "69c25e37-b2bf-4ec2-8c29-1268adc61d09", + "command_output": ".wacz" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.398Z", + "uuid": "de238628-9e35-447a-b7ee-29cc7b805d0c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "cb8410e1-3a34-4267-8e7f-b38a5307d39a", + "command_output": ".hmi" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.418Z", + "uuid": "5dc9cac3-ae3b-442f-82a3-7c640d2bac56", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "d951dca4-fff3-48e6-8ffe-9ea9f0f39132", + "command_output": ".gpl" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.439Z", + "uuid": "5ef98f8b-2715-4b62-af51-2f1b4e280752", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "581205c2-ca21-440f-8b69-1b8f6dda277d", + "command_output": ".fdx" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.461Z", + "uuid": "4c81b42a-d092-4261-96c9-f573218bc56b", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "cbe4b3d3-c8a4-4a1a-ac34-5d3dffb8489d", + "command_output": ".spmd" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.479Z", + "uuid": "bf47da96-2bbe-42d7-b936-0e9c13a7482b", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "98af8d2c-7579-49c5-9284-94ef18726edf", + "command_output": ".lxp" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.498Z", + "uuid": "07be92ee-9595-4580-af0a-7db849186d74", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "ddd85625-73b9-41ed-802b-53215cebd920", + "command_output": ".trelby" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.518Z", + "uuid": "543f15db-2828-492b-98cb-2da95af29db2", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "a9355899-7682-4333-b1ef-43166b4d6a32", + "command_output": ".gpr" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.560Z", + "uuid": "b1055608-9e0f-4766-a4bc-13efe16f5789", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "babfdf46-bd87-4199-8b7f-337ebbe76d28", + "command_output": ".dav" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.581Z", + "uuid": "8990fbf6-a50b-442a-9d66-5555fd9a5c95", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "1ebcdab2-888d-4f29-bfce-70f0a56e1f45", + "command_output": ".camrec" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.604Z", + "uuid": "047c4ae7-376a-4102-a8fd-19b06cdbc037", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "7864b371-e882-4f6a-a236-00b47ece23e6", + "command_output": ".camproj" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.668Z", + "uuid": "519072ae-269b-4838-b629-4705808f8bd8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "73ed8c09-3c00-4494-bd55-9ee292857174", + "command_output": ".eip" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.781Z", + "uuid": "901a8c13-60e5-4aeb-8574-1d8b04b9fc2c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "e4c1dd64-b727-47aa-b0a8-1838593552ab", + "command_output": ".qst" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.863Z", + "uuid": "f9fd9698-549f-4a71-b34f-833b7cb562ae", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "cc7c5641-e2a7-4f09-aafa-db7d5740d65b", + "command_output": ".swi" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.899Z", + "uuid": "4c186552-6f6d-4e7d-aa67-f0cc6146d145", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "9dab1e64-8805-452f-a3c4-629394a8cd07", + "command_output": ".ppt" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.920Z", + "uuid": "6e974300-514d-424f-a129-6071a89f8c50", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "a1b701bc-47c6-45a1-acbc-83b13a634dae", + "command_output": ".lfsc" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:53.997Z", + "uuid": "6e7218ec-50c0-43b5-b979-f69cd4be25f8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "95f233a2-e80b-4167-ba34-61be2c512f15", + "command_output": ".gtp" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.011Z", + "uuid": "03256fa3-f3c8-4136-b3e9-95f69b887ad1", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "5cbf553f-96c9-42df-bb2c-86b398aae9b3", + "command_output": ".gp3" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.029Z", + "uuid": "10b63583-9409-472d-ab8a-c2f292fd1f47", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "1db53296-e61b-40d1-9e41-fcfe0a79955c", + "command_output": ".ap" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.049Z", + "uuid": "6bcb399a-872b-41eb-aaa4-22809a0fac5c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "5b089595-0d3f-4074-bfd2-d042c3745ff0", + "command_output": ".bsb" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.066Z", + "uuid": "d52fe2fb-e45c-46b6-9a87-e14b2d9d2cc5", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "366e0ecf-cdac-45b7-9222-6f1740958db4", + "command_output": ".pak" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.098Z", + "uuid": "b9985083-4a80-4213-80ad-ccd369d4d348", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "b2f6f8d3-2360-437e-b273-c157a0a3514f", + "command_output": ".art" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.254Z", + "uuid": "7c2054a7-605d-48b6-8994-eac8a60285b3", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "b77010a4-e02c-4945-a3e8-6ca7c20dee9f", + "command_output": ".ci1" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.276Z", + "uuid": "fe7ed803-165f-491e-8789-818667eabe8d", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "0b2e3d12-52db-4279-8bf5-b14d32265ad1", + "command_output": ".ci2" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.296Z", + "uuid": "dd950ab2-883f-4252-ade8-9d92fe52c43b", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "e50a533e-ed2f-4b34-8236-b8a8bc023d51", + "command_output": ".ext" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.339Z", + "uuid": "fd463cbe-733c-437f-92d6-64e989692a7e", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "b4c26455-bb68-43f7-95cb-a6639c8b70fb", + "command_output": ".dvf" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.361Z", + "uuid": "760bacb9-0a2a-4b86-b78c-8edde4963dee", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "a32332d0-6203-4029-b3e0-f462bb849cf2", + "command_output": ".msv" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.384Z", + "uuid": "210fd82a-7d21-4994-8180-ec07d372a0f2", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "624b7b3b-44db-439c-ab08-6125f52e7c2e", + "command_output": ".acs" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.410Z", + "uuid": "4c2fc22e-745b-4e93-a724-632603b5432d", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "93cd6497-3a4d-4271-b77e-f4058504e7ef", + "command_output": ".rtd" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.429Z", + "uuid": "f8c605d8-e57b-460d-97cb-96e06105349f", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "ed1e60e6-a05d-4972-b9c5-2832ac2e0fc0", + "command_output": ".npm" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.471Z", + "uuid": "ff2f3e5e-67fd-4acc-8204-42e6dc0e76f4", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "31fee8aa-d0cb-4a81-9b20-195179efb98b", + "command_output": ".pzx" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.492Z", + "uuid": "f17c0d9e-e0d0-4493-a6be-3e4a67f2a8c6", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "ab04d837-c7db-4c1e-afb2-fd9be2047bb1", + "command_output": ".ris" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.514Z", + "uuid": "51f6767a-1f09-4116-a1bd-e4b889dff625", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "0ef5f609-b2c4-4889-8641-de2af79b2c20", + "command_output": ".mxml" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.534Z", + "uuid": "78413357-9b73-4ed9-bd4d-011f24eafb82", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "19d42cc4-eaa7-4583-aa0a-d12cbb5f6ec4", + "command_output": ".mv" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.575Z", + "uuid": "f4959ba8-c98e-46fb-9b31-93c74dd41a4b", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "023d3038-e5aa-4207-b360-9abfd5c570cb", + "command_output": ".srf" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.596Z", + "uuid": "3e7ecb53-48f7-4b5a-bb61-02ca78af39d3", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "cd3c7017-0575-4fbe-84ab-89a64d6bc31b", + "command_output": ".stx" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.622Z", + "uuid": "10efde1e-e13c-435f-81d0-51d99d74d86c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "8dfd5342-ab7b-416d-bdc5-08ece3bfcf8b", + "command_output": ".usda" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.643Z", + "uuid": "b383b622-c472-4570-a3a0-692b621cd566", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "a4fc186d-701e-4ea7-8ed2-6cae705339fd", + "command_output": ".vbm" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.661Z", + "uuid": "16743229-64a1-44c3-a8d6-c20d41c7802f", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "231cc454-be4b-4d41-8c33-0f8db68a4477", + "command_output": ".icn" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.679Z", + "uuid": "af721f11-0402-4ba4-9852-a0217f36fff4", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "aad516e7-50f3-4954-91ff-38f92fa1ab80", + "command_output": ".jt" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.770Z", + "uuid": "4d1e9fcb-e234-4d08-8c7c-6c92a559065e", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "170071b9-538d-4373-84e4-8e83d0ebba6e", + "command_output": ".pln" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.789Z", + "uuid": "b21baf6b-c160-45ac-b252-f218f9006d7e", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "00d987c7-a33c-4ef2-a295-4c6a660acf8a", + "command_output": ".bimx" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.808Z", + "uuid": "1a378a4a-7f0c-427a-9907-647f60416ea8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "1a356579-c0dc-4de5-b390-6022eee2866d", + "command_output": ".mso" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:54.862Z", + "uuid": "e0ad952c-8386-4d42-b660-ab03428bf6a6", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "9c6b9fe2-24ff-4ba4-962d-717d18fd2c36", + "command_output": ".mc" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.257Z", + "uuid": "0594c58f-9006-494a-8f07-09156e8cbe09", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "b35209d1-64db-47d7-8521-cf418e1a08e3", + "command_output": ".csf" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.278Z", + "uuid": "4db4c51e-1488-4c20-b71a-a0058c4364f2", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "debb2ca6-b9b4-443a-abbb-4ddd6d9cdb96", + "command_output": ".azw" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.316Z", + "uuid": "59cf89e9-59e7-4447-8162-ff44efec8407", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "0068dc7e-2383-4a12-bda9-507abd8edb6e", + "command_output": ".scm" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.347Z", + "uuid": "630cd30c-202e-4061-9d04-9beff9bb5a8c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "3e82eb42-ef14-4574-a311-10b902e11d74", + "command_output": ".afx" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.413Z", + "uuid": "ed9b0f77-188c-4fc6-940c-66c263a918d8", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "db324ba4-dc19-4dca-84a3-90198067e481", + "command_output": ".indd" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.452Z", + "uuid": "bb32e21d-4a71-46fe-b67a-2602a63ee51c", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "4dbe6620-c574-4989-9ede-0e9896b946be", + "command_output": ".cf1" + } + }, + { + "model": "fpr.idrule", + "fields": { + "replaces": null, + "enabled": true, + "lastmodified": "2024-02-03T21:34:55.472Z", + "uuid": "dd40f6e6-80ae-443a-88d3-5c4b860fcbd7", + "command": "8546b624-7894-4201-8df6-f239d5e0d5ba", + "format": "73b4d9ae-0a9c-4e06-944c-d8f7ee282b93", + "command_output": ".cf2" + } + } +] diff --git a/src/dashboard/src/fpr/templatetags/active.py b/src/dashboard/src/fpr/templatetags/active.py deleted file mode 100644 index c826068298..0000000000 --- a/src/dashboard/src/fpr/templatetags/active.py +++ /dev/null @@ -1,15 +0,0 @@ -from django.template import Library - -register = Library() - - -@register.simple_tag -def active(request, pattern): - if not request: - return "" - elif request.path.startswith(pattern) and pattern != "/": - return "active" - elif request.path == pattern == "/": - return "active" - else: - return "" diff --git a/tests/MCPClient/fixtures/mets_non_core_dc.xml b/tests/MCPClient/fixtures/mets_non_core_dc.xml new file mode 100644 index 0000000000..a49b15169f --- /dev/null +++ b/tests/MCPClient/fixtures/mets_non_core_dc.xml @@ -0,0 +1,1560 @@ + + + + + + + + + UUID + dbe62094-17af-427b-b6e7-0ac5799ee4e9 + + issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9 + + + + + + + + + Objects dir + Artefactual + + + + + + + + custom 2 + + + + + + + + OCR image + Tesseract + some provenance + + + + + + + + custom 1 + + + + + + + + + + UUID + 27876dc3-e27a-47f3-9ea0-9827ce97c529 + + + 0 + + sha256 + 9a96af214f084af14d9b68da12dda39c4665ac1caa631d3d09840f1a65318912 + + 159 + + + CSV + + + + PRONOM + x-fmt/18 + + + + 2024-03-10T18:44:56Z + + + + + + + + + + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + metadata.csv + 159 + 1710096295000 + + + + + US-ASCII + + + + + + ASCII text +text/plain; charset=us-ascii + text/plain + Plain text + US-ASCII + + + + + ExifToolVersion 9.13 +FileName metadata.csv +Directory /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 +FileSize 159 bytes +FileModifyDate 2024:03:10 18:44:55+00:00 +FileAccessDate 2024:03:10 18:44:56+00:00 +FileInodeChangeDate 2024:03:10 18:44:55+00:00 +FilePermissions rw-r----- +Error Unknown file type + 9.13 + metadata.csv + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 + 159 bytes + 2024:03:10 18:44:55+00:00 + 2024:03:10 18:44:56+00:00 + 2024:03:10 18:44:55+00:00 + rw-r----- + Unknown file type + + + + + + metadata.csv + / + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + true + false + 159 + false + true + file:/var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + file:/var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + true + true + csv + 2024-03-10 18:44:55 + 20240310 + yyyyMMdd + + HHmmssSSS + file/unknown + null + null + null + unknown + + + + + + + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + metadata.csv + 159 + 1710096295000 + + + + + + + Unknown Binary + + + application/octet-stream + + + + + + + + ISO-8859-1 + + + text/plain; charset=ISO-8859-1 + + + + + + + + %SIPDirectory%objects/metadata/transfers/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/metadata.csv + + + + + + + + + + UUID + 4c301f06-ba73-4a7b-9555-4190be84813c + + ingestion + 2024-03-10T18:44:56.207336+00:00 + + + + + + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + 6fb60d3c-2d95-4263-9b6f-767b1314ac6e + + message digest calculation + 2024-03-10T18:44:56.300960+00:00 + + program="python"; module="hashlib.sha256()" + + + + + 9a96af214f084af14d9b68da12dda39c4665ac1caa631d3d09840f1a65318912 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + 7b2e2bbf-e691-46d5-b1f2-c75fd8283158 + + virus check + 2024-03-10T18:44:56.535890+00:00 + + program="ClamAV (clamd)"; version="ClamAV 0.99.2"; virusDefinitions="24207/Tue Jan 9 21:18:11 2018" + + + Pass + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + 252a063f-9d76-4edd-bc94-e0d2369ab1f0 + + format identification + 2024-03-10T18:44:56.853151+00:00 + + program="Siegfried"; version="1.9.6" + + + Positive + + x-fmt/18 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + preservation system + Archivematica-1.16 + + Archivematica + software + + + + + + + + + + repository code + test + + test + organization + + + + + + + + + + Archivematica user pk + 1 + + username="test", first_name="", last_name="" + Archivematica user + + + + + + + + + + + + UUID + 96e53b97-11b9-4faf-b801-c4487a985636 + + + 0 + + sha256 + e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 + + 14644 + + + Portable Network Graphics + 1.0 + + + PRONOM + fmt/11 + + + + 2024-03-10T18:32:51Z + + + + + + + + + + + + + + + + + + + + + + + + + + 12.40 + ocr-image.png + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects + 14 KiB + 2024:03:10 18:32:51+00:00 + 2024:03:10 18:44:40+00:00 + 2024:03:10 18:44:38+00:00 + -rw-r----- + PNG + png + image/png + 1024 + 800 + 1 + Palette + Deflate/Inflate + Adaptive + Noninterlaced + (Binary data 6 bytes, use -b option to extract) + 2014:04:30 13:00:32 + 11811 + 11811 + meters + 1024x800 + 0.819 + + + + MediaInfoLib + + + 349 + 1 + General + General + 0 + 1 + PNG + PNG + PNG + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects + ocr-image.png + ocr-image + png + PNG + PNG + Portable Network Graphic + png pns + PNG + image/png + 14644 + 14.3 KiB + 14 KiB + 14 KiB + 14.3 KiB + 14.30 KiB + 0 + 0.00 Byte (0%) + Byte0 + 0.0 Byte + 0.00 Byte + 0.000 Byte + 0.00 Byte (0%) + 0.00000 + 2024-03-10 18:32:51 UTC + 2024-03-10 18:32:51 + + + 166 + 1 + Image + Image + 0 + PNG + PNG + Portable Network Graphic + PNG + Deflate + image/png + 1024 + 1 024 pixels + 800 + 800 pixels + 1.000 + 1.280 + 1.280 + RGB + 1 + 1 bit + Lossless + Lossless + 14644 + 14.3 KiB (100%) + 14 KiB + 14 KiB + 14.3 KiB + 14.30 KiB + 14.3 KiB (100%) + 1.00000 + + + + + + %transferDirectory%objects/ocr-image.png + + + + + + + + + + UUID + b65fb576-f0fb-4249-a496-9f382b8e2c21 + + ingestion + 2024-03-10T18:44:39.446433+00:00 + + + + + + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + bc8ba971-2b44-47c8-b735-1dca4694c1fd + + message digest calculation + 2024-03-10T18:44:40.467716+00:00 + + program="python"; module="hashlib.sha256()" + + + + + e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + a175a1ea-26d8-4f77-946d-055e1eeb6ed9 + + virus check + 2024-03-10T18:44:40.824384+00:00 + + program="ClamAV (clamd)"; version="ClamAV 0.99.2"; virusDefinitions="24207/Tue Jan 9 21:18:11 2018" + + + Pass + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + def7c891-a8ae-44fd-bec3-032d814f9ee5 + + format identification + 2024-03-10T18:44:42.435514+00:00 + + program="Siegfried"; version="1.9.6" + + + Positive + + fmt/11 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + preservation system + Archivematica-1.16 + + Archivematica + software + + + + + + + + + + repository code + test + + test + organization + + + + + + + + + + Archivematica user pk + 1 + + username="test", first_name="", last_name="" + Archivematica user + + + + + + + + + + + + UUID + 464f2901-2823-4753-b6c7-78b6194952e6 + + + 0 + + sha256 + 09779a44dc6abcab7d6a09a36bdab54b67a49d7ddd8cbbc4a399bffcd0da9319 + + 31169 + + + XML + 1.0 + + + PRONOM + fmt/101 + + + + 2024-03-10T18:44:54Z + + + + + + + + + + 1.0 + + + + 2024:03:10 18:44:45+00:00 + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + METS.xml + 31169 + 1710096285000 + + + + + UTF-8 + XML + 1.0 + http://www.loc.gov/standards/mets/version1121/mets.xsd + + + + + + XML 1.0 document text +application/xml; charset=us-ascii + application/xml + XML 1.0 document text + + + + + ExifToolVersion 9.13 +FileName METS.xml +Directory /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 +FileSize 30 kB +FileModifyDate 2024:03:10 18:44:45+00:00 +FileAccessDate 2024:03:10 18:44:54+00:00 +FileInodeChangeDate 2024:03:10 18:44:53+00:00 +FilePermissions rw-r--r-- +FileType XML +MIMEType application/xml +MetsSchemaLocation http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/version1121/mets.xsd +MetsObjid 707f795d-7d21-4c63-afd9-f57e66c02979 +MetsMetsHdrCreatedate 2024:03:10 18:44:45 +MetsMetsHdrAgentRole CREATOR +MetsMetsHdrAgentType OTHER +MetsMetsHdrAgentOthertype SOFTWARE +MetsMetsHdrAgentName 7c8f011c-f559-439a-9ffe-3c3731ff69c2 +MetsMetsHdrAgentNote Archivematica dashboard UUID +MetsDmdSecId dmdSec_2 +MetsDmdSecCreated 2024:03:10 18:44:45 +MetsDmdSecStatus original +MetsDmdSecMdWrapMdtype PREMIS:OBJECT +MetsDmdSecMdWrapXmlDataObjectSchemaLocation http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd +MetsDmdSecMdWrapXmlDataObjectVersion 3.0 +MetsDmdSecMdWrapXmlDataObjectType premis:intellectualEntity +MetsDmdSecMdWrapXmlDataObjectObjectIdentifierObjectIdentifierType UUID +MetsDmdSecMdWrapXmlDataObjectObjectIdentifierObjectIdentifierValue bf62913f-2d1d-46f6-8e4d-2c816e99865e +MetsDmdSecMdWrapXmlDataObjectOriginalName %transferDirectory%logs/fileMeta/ +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsCompositionLevel 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFixityMessageDigestAlgorithm SHA-256 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFixityMessageDigest e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsSize 14644 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFormatFormatDesignationFormatName Portable Network Graphics +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFormatFormatDesignationFormatVersion 1.0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFormatFormatRegistryFormatRegistryName PRONOM +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsFormatFormatRegistryFormatRegistryKey fmt/11 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsCreatingApplicationDateCreatedByApplication 2024:03:10 18:32:51Z +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeProgram_versionVersion 4.4.2-0ubuntu0.22.04.1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeProgram_versionCopyright Copyright (c) 2007-2021 the FFmpeg developers +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeProgram_versionCompiler_ident gcc 11 (Ubuntu 11.2.0-19ubuntu1) +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeProgram_versionConfiguration --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionName libpostproc +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionMajor 55 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionMinor 9 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionMicro 100 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionVersion 3606884 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeLibrary_versionsLibrary_versionIdent postproc55.9.100 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamIndex 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCodec_name png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCodec_long_name PNG (Portable Network Graphics) image +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCodec_type video +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCodec_tag_string [0][0][0][0] +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCodec_tag 0x0000 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamWidth 1024 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamHeight 800 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCoded_width 1024 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamCoded_height 800 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamClosed_captions 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamHas_b_frames 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamSample_aspect_ratio 1:1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDisplay_aspect_ratio 32:25 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamPix_fmt pal8 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamLevel -99 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamColor_range pc +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamRefs 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamR_frame_rate 25 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamAvg_frame_rate 25 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamTime_base 0.04 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamExtradata +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionDefault 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionDub 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionOriginal 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionComment 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionLyrics 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionKaraoke 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionForced 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionHearing_impaired 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionVisual_impaired 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionClean_effects 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionAttached_pic 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeStreamsStreamDispositionTimed_thumbnails 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeChapters . +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatFilename /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatNb_streams 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatNb_programs 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatFormat_name png_pipe +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatFormat_long_name piped png sequence +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatSize 14644 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFfprobeFormatProbe_score 99 +About /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionExifToolVersion 12.40 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileName ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionDirectory /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileSize 14 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileModifyDate 2024:03:10 18:32:51+00:00 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileAccessDate 2024:03:10 18:44:40+00:00 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileInodeChangeDate 2024:03:10 18:44:38+00:00 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFilePermissions -rw-r----- +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileType PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFileTypeExtension png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMIMEType image/png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionImageWidth 1024 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionImageHeight 800 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionBitDepth 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionColorType Palette +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionCompression Deflate/Inflate +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionFilter Adaptive +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionInterlace Noninterlaced +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionPalette (Binary data 6 bytes, use -b option to extract) +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionModifyDate 2014:04:30 13:00:32 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionPixelsPerUnitX 11811 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionPixelsPerUnitY 11811 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionPixelUnits meters +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionImageSize 1024x800 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMegapixels 0.819 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoSchemaLocation https://mediaarea.net/mediainfo https://mediaarea.net/mediainfo/mediainfo_2_0.xsd +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoVersion 2.0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoCreatingLibraryVersion 24.01 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoCreatingLibraryUrl https://mediaarea.net/MediaInfo +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoCreatingLibrary MediaInfoLib +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaRef /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackImageCount 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackImage_Format_List PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackImage_Format_WithHint_List PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackImage_Codec_List PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackCompleteName /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFolderName /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileNameExtension ocr-image.png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileName ocr-image +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileExtension png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat_Extensions png pns +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize 14644 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize_String 14.3 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize_String1 14 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize_String2 14 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize_String3 14.3 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFileSize_String4 14.30 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFile_Modified_Date 2024:03:10 18:32:51UTC +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFile_Modified_Date_Local 2024:03:10 18:32:51 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackType Image +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackCount 166 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamCount 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamKind Image +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamKind_String Image +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamKindID 0 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat_String PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat_Info Portable Network Graphic +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat_Commercial PNG +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackFormat_Compression Deflate +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackInternetMediaType image/png +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackWidth 1024 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackWidth_String 1 024 pixels +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackHeight 800 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackHeight_String 800 pixels +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackPixelAspectRatio 1.000 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackDisplayAspectRatio 1.280 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackDisplayAspectRatio_String 1.280 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackColorSpace RGB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackBitDepth 1 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackBitDepth_String 1 bit +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackCompression_Mode Lossless +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackCompression_Mode_String Lossless +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize 14644 +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String 14.3 KiB (100%) +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String1 14 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String2 14 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String3 14.3 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String4 14.30 KiB +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_String5 14.3 KiB (100%) +MetsAmdSecTechMDMdWrapXmlDataObjectObjectCharacteristicsObjectCharacteristicsExtensionMediaInfoMediaTrackStreamSize_Proportion 1.00000 +MetsAmdSecDigiprovMDMdWrapXmlDataEventSchemaLocation http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd +MetsAmdSecDigiprovMDMdWrapXmlDataEventVersion 3.0 +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventIdentifierEventIdentifierType UUID +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventIdentifierEventIdentifierValue def7c891-a8ae-44fd-bec3-032d814f9ee5 +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventType format identification +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventDateTime 2024:03:10 18:44:42.435514+00:00 +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventDetailInformationEventDetail program="Siegfried"; version="1.9.6" +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventOutcomeInformationEventOutcome Positive +MetsAmdSecDigiprovMDMdWrapXmlDataEventEventOutcomeInformationEventOutcomeDetailEventOutcomeDetailNote fmt/11 +MetsAmdSecDigiprovMDMdWrapXmlDataEventLinkingAgentIdentifierLinkingAgentIdentifierType Archivematica user pk +MetsAmdSecDigiprovMDMdWrapXmlDataEventLinkingAgentIdentifierLinkingAgentIdentifierValue 1 +MetsAmdSecDigiprovMDId digiprovMD_7 +MetsAmdSecDigiprovMDCreated 2024:03:10 18:44:45 +MetsAmdSecDigiprovMDMdWrapMdtype PREMIS:AGENT +MetsAmdSecDigiprovMDMdWrapXmlDataAgentSchemaLocation http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd +MetsAmdSecDigiprovMDMdWrapXmlDataAgentVersion 3.0 +MetsAmdSecDigiprovMDMdWrapXmlDataAgentAgentIdentifierAgentIdentifierType Archivematica user pk +MetsAmdSecDigiprovMDMdWrapXmlDataAgentAgentIdentifierAgentIdentifierValue 1 +MetsAmdSecDigiprovMDMdWrapXmlDataAgentAgentName username="test", first_name="", last_name="" +MetsAmdSecDigiprovMDMdWrapXmlDataAgentAgentType Archivematica user +MetsAmdSecId amdSec_3 +MetsAmdSecTechMDId techMD_3 +MetsAmdSecTechMDCreated 2024:03:10 18:44:45 +MetsAmdSecTechMDStatus current +MetsAmdSecTechMDMdWrapMdtype PREMIS:OBJECT +MetsAmdSecTechMDMdWrapXmlDataObjectSchemaLocation http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd +MetsAmdSecTechMDMdWrapXmlDataObjectVersion 3.0 +MetsAmdSecTechMDMdWrapXmlDataObjectType premis:intellectualEntity +MetsAmdSecTechMDMdWrapXmlDataObjectObjectIdentifierObjectIdentifierType UUID +MetsAmdSecTechMDMdWrapXmlDataObjectObjectIdentifierObjectIdentifierValue eb35acd5-4756-437c-84d5-83a8fa25d23f +MetsAmdSecTechMDMdWrapXmlDataObjectOriginalName %transferDirectory%metadata/ +MetsFileSecFileGrpUse original +MetsFileSecFileGrpFileId file-96e53b97-11b9-4faf-b801-c4487a985636 +MetsFileSecFileGrpFileGroupid Group-96e53b97-11b9-4faf-b801-c4487a985636 +MetsFileSecFileGrpFileAdmid amdSec_1 +MetsFileSecFileGrpFileChecksum e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 +MetsFileSecFileGrpFileChecksumtype SHA-256 +MetsFileSecFileGrpFileFLocatHref objects/ocr-image.png +MetsFileSecFileGrpFileFLocatLoctype OTHER +MetsFileSecFileGrpFileFLocatOtherloctype SYSTEM +MetsStructMapDivDivDivFptrFileid file-96e53b97-11b9-4faf-b801-c4487a985636 +MetsStructMapType logical +MetsStructMapId structMap_2 +MetsStructMapLabel Normative Directory Structure +MetsStructMapDivType Directory +MetsStructMapDivLabel issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 +MetsStructMapDivDivAdmid amdSec_3 +MetsStructMapDivDivDivDmdid dmdSec_1 +MetsStructMapDivDivType Directory +MetsStructMapDivDivLabel objects +MetsStructMapDivDivDivType Item +MetsStructMapDivDivDivLabel ocr-image.png + 9.13 + METS.xml + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 + 30 kB + 2024:03:10 18:44:45+00:00 + 2024:03:10 18:44:54+00:00 + 2024:03:10 18:44:53+00:00 + rw-r--r-- + XML + application/xml + http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/version1121/mets.xsd + 707f795d-7d21-4c63-afd9-f57e66c02979 + 2024:03:10 18:44:45 + CREATOR + OTHER + SOFTWARE + 7c8f011c-f559-439a-9ffe-3c3731ff69c2 + Archivematica dashboard UUID + dmdSec_2 + 2024:03:10 18:44:45 + original + PREMIS:OBJECT + http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd + 3.0 + premis:intellectualEntity + UUID + bf62913f-2d1d-46f6-8e4d-2c816e99865e + %transferDirectory%logs/fileMeta/ + 0 + SHA-256 + e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 + 14644 + Portable Network Graphics + 1.0 + PRONOM + fmt/11 + 2024:03:10 18:32:51Z + 4.4.2-0ubuntu0.22.04.1 + Copyright (c) 2007-2021 the FFmpeg developers + gcc 11 (Ubuntu 11.2.0-19ubuntu1) + --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared + libpostproc + 55 + 9 + 100 + 3606884 + postproc55.9.100 + 0 + png + PNG (Portable Network Graphics) image + video + [0][0][0][0] + 0x0000 + 1024 + 800 + 1024 + 800 + 0 + 0 + 1:1 + 32:25 + pal8 + -99 + pc + 1 + 25 + 25 + 0.04 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + . + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png + 1 + 0 + png_pipe + piped png sequence + 14644 + 99 + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png + 12.40 + ocr-image.png + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects + 14 KiB + 2024:03:10 18:32:51+00:00 + 2024:03:10 18:44:40+00:00 + 2024:03:10 18:44:38+00:00 + -rw-r----- + PNG + png + image/png + 1024 + 800 + 1 + Palette + Deflate/Inflate + Adaptive + Noninterlaced + (Binary data 6 bytes, use -b option to extract) + 2014:04:30 13:00:32 + 11811 + 11811 + meters + 1024x800 + 0.819 + https://mediaarea.net/mediainfo https://mediaarea.net/mediainfo/mediainfo_2_0.xsd + 2.0 + 24.01 + https://mediaarea.net/MediaInfo + MediaInfoLib + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png + 1 + PNG + PNG + PNG + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects/ocr-image.png + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/extractPackagesChoice/issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/objects + ocr-image.png + ocr-image + png + png pns + 14644 + 14.3 KiB + 14 KiB + 14 KiB + 14.3 KiB + 14.30 KiB + 2024:03:10 18:32:51UTC + 2024:03:10 18:32:51 + Image + 166 + 1 + Image + Image + 0 + PNG + PNG + Portable Network Graphic + PNG + Deflate + image/png + 1024 + 1 024 pixels + 800 + 800 pixels + 1.000 + 1.280 + 1.280 + RGB + 1 + 1 bit + Lossless + Lossless + 14644 + 14.3 KiB (100%) + 14 KiB + 14 KiB + 14.3 KiB + 14.30 KiB + 14.3 KiB (100%) + 1.00000 + http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd + 3.0 + UUID + def7c891-a8ae-44fd-bec3-032d814f9ee5 + format identification + 2024:03:10 18:44:42.435514+00:00 + program="Siegfried"; version="1.9.6" + Positive + fmt/11 + Archivematica user pk + 1 + digiprovMD_7 + 2024:03:10 18:44:45 + PREMIS:AGENT + http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd + 3.0 + Archivematica user pk + 1 + username="test", first_name="", last_name="" + Archivematica user + amdSec_3 + techMD_3 + 2024:03:10 18:44:45 + current + PREMIS:OBJECT + http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd + 3.0 + premis:intellectualEntity + UUID + eb35acd5-4756-437c-84d5-83a8fa25d23f + %transferDirectory%metadata/ + original + file-96e53b97-11b9-4faf-b801-c4487a985636 + Group-96e53b97-11b9-4faf-b801-c4487a985636 + amdSec_1 + e233f7f661e1296c9ad98e23f8679a2a69ce0d3becb8a9aafb679fd5e6a45bd8 + SHA-256 + objects/ocr-image.png + OTHER + SYSTEM + file-96e53b97-11b9-4faf-b801-c4487a985636 + logical + structMap_2 + Normative Directory Structure + Directory + issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 + amdSec_3 + dmdSec_1 + Directory + objects + Item + ocr-image.png + + + + + + METS.xml + / + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979 + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + true + false + 31169 + false + true + file:/var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + file:/var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + true + true + xml + 2024-03-10 18:44:45 + 20240310 + yyyyMMdd + + HHmmssSSS + application/xml + null + null + null + unknown + + + 1.0 + UTF-8 + unspecified + + + + + + + /var/archivematica/sharedDirectory/watchedDirectories/workFlowDecisions/metadataReminder/issue-1620-dbe62094-17af-427b-b6e7-0ac5799ee4e9/objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + METS.xml + 31169 + 1710096285000 + + + + + + + + + + + http://www.loc.gov/standards/mets/version1121/mets.xsd + + + + + + + XML + Extensible Markup Language + doc + + text/xml + + + xml + + + + + + + application/xml + + + + + + + + %SIPDirectory%objects/submissionDocumentation/transfer-issue-1620-707f795d-7d21-4c63-afd9-f57e66c02979/METS.xml + + + + + + + + + + UUID + f7c12a0f-32f2-41b9-8fab-2cb8300585f4 + + ingestion + 2024-03-10T18:44:54.586744+00:00 + + + + + + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + ee88da6e-62f7-41d5-bfd9-1c592b2c7fec + + message digest calculation + 2024-03-10T18:44:54.682611+00:00 + + program="python"; module="hashlib.sha256()" + + + + + 09779a44dc6abcab7d6a09a36bdab54b67a49d7ddd8cbbc4a399bffcd0da9319 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + 1d68082f-b5fa-4634-9a2a-7f4978bbd3e9 + + virus check + 2024-03-10T18:44:54.927177+00:00 + + program="ClamAV (clamd)"; version="ClamAV 0.99.2"; virusDefinitions="24207/Tue Jan 9 21:18:11 2018" + + + Pass + + + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + UUID + ffa53ee5-ab3b-4bf0-af1d-6d8b44e55a71 + + format identification + 2024-03-10T18:44:55.239415+00:00 + + program="Siegfried"; version="1.9.6" + + + Positive + + fmt/101 + + + + preservation system + Archivematica-1.16 + + + repository code + test + + + Archivematica user pk + 1 + + + + + + + + + + + preservation system + Archivematica-1.16 + + Archivematica + software + + + + + + + + + + repository code + test + + test + organization + + + + + + + + + + Archivematica user pk + 1 + + username="test", first_name="", last_name="" + Archivematica user + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/MCPClient/test_parse_mets_to_db.py b/tests/MCPClient/test_parse_mets_to_db.py index ec56d6bf08..1bc0e12ce1 100644 --- a/tests/MCPClient/test_parse_mets_to_db.py +++ b/tests/MCPClient/test_parse_mets_to_db.py @@ -1,5 +1,6 @@ import os import uuid +from unittest import mock import fpr import parse_mets_to_db @@ -69,6 +70,27 @@ def test_only_original(self): assert dc.rights == "Public Domain" assert dc.is_part_of == "AIC#43" + def test_dublin_core_non_core_properties(self): + """It should parse a SIP-level DC if contains non-core properties.""" + sip_uuid = "dbe62094-17af-427b-b6e7-0ac5799ee4e9" + root = etree.parse(os.path.join(THIS_DIR, "fixtures", "mets_non_core_dc.xml")) + job = mock.Mock(spec=Job) + + dc = parse_mets_to_db.parse_dc(job, sip_uuid, root) + + # Verify the Dublin Core core properties were populated. + assert dc + assert models.DublinCore.objects.filter( + metadataappliestoidentifier=sip_uuid + ).exists() + assert dc.title == "Objects dir" + + # Verify the job prints the parsed Dublin Core core properties. + assert job.pyprint.mock_calls == [ + mock.call("Dublin Core:"), + mock.call("title", "Objects dir"), + ] + def test_get_sip_dc_ignore_file_dc(self): """It should parse a SIP-level DC even if file-level DC is also present.""" sip_uuid = "55972e97-8d35-4b07-abaa-ae260c32d261"