diff options
148 files changed, 11457 insertions, 4231 deletions
diff --git a/benchmarks/vkoverhead/Makefile b/benchmarks/vkoverhead/Makefile index 1aa0f9f98c95..b54c28d4b6fd 100644 --- a/benchmarks/vkoverhead/Makefile +++ b/benchmarks/vkoverhead/Makefile @@ -13,6 +13,10 @@ WWW= https://github.com/zmike/vkoverhead LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_armv7= fails to build due -Werror=int-conversion +BROKEN_i386= fails to build due -Werror=int-conversion +BROKEN_powerpc= fails to build due -Werror=int-conversion + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako@${PY_FLAVOR} RUN_DEPENDS= vulkan-loader>0:graphics/vulkan-loader @@ -21,4 +25,8 @@ USE_GITHUB= yes GH_ACCOUNT= zmike PLIST_FILES= bin/${PORTNAME} +post-patch: +# Derive Python version from Meson + @${REINPLACE_CMD} -e "s,'python3',," ${WRKSRC}/meson.build + .include <bsd.port.mk> diff --git a/benchmarks/vkoverhead/files/patch-meson.build b/benchmarks/vkoverhead/files/patch-meson.build deleted file mode 100644 index fffe1d9e8492..000000000000 --- a/benchmarks/vkoverhead/files/patch-meson.build +++ /dev/null @@ -1,34 +0,0 @@ ---- meson.build.orig 2025-10-04 17:26:23 UTC -+++ meson.build -@@ -34,7 +34,7 @@ null_dep = dependency('', required : false) - null_dep = dependency('', required : false) - - --prog_python = import('python').find_installation('python3') -+prog_python = import('python').find_installation() - - # Arguments for the preprocessor, put these in a separate array from the C and - # C++ (cpp in meson terminology) arguments since they need to be added to the -@@ -208,11 +208,7 @@ else - cpp_args += cpp.get_supported_arguments(_trial) - else - _trial_c = [ -- '-Werror=implicit-function-declaration', -- '-Werror=return-type', -- '-Werror=empty-body', -- '-Werror=incompatible-pointer-types', -- '-Werror=int-conversion', -+ '-Wno-error=int-conversion', - '-Wimplicit-fallthrough', - '-Wno-missing-field-initializers', - '-Wno-format-truncation', -@@ -225,8 +221,7 @@ else - '-Wno-unused-function', - ] - _trial_cpp = [ -- '-Werror=return-type', -- '-Werror=empty-body', -+ '-Wno-error=int-conversion', - '-Wno-non-virtual-dtor', - '-Wno-missing-field-initializers', - '-Wno-format-truncation', diff --git a/databases/keydb/Makefile b/databases/keydb/Makefile index dc6d600eef55..849a80598480 100644 --- a/databases/keydb/Makefile +++ b/databases/keydb/Makefile @@ -1,7 +1,7 @@ PORTNAME= keydb DISTVERSIONPREFIX= v DISTVERSION= 6.3.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MAINTAINER= zi@FreeBSD.org diff --git a/databases/keydb/files/patch-CVE-2024-46981 b/databases/keydb/files/patch-CVE-2024-46981 new file mode 100644 index 000000000000..867706e13e1f --- /dev/null +++ b/databases/keydb/files/patch-CVE-2024-46981 @@ -0,0 +1,10 @@ +--- src/scripting.cpp.orig 2025-10-06 22:03:52 UTC ++++ src/scripting.cpp +@@ -1330,6 +1330,7 @@ void scriptingRelease(int async) { + else + dictRelease(g_pserver->lua_scripts); + g_pserver->lua_scripts_mem = 0; ++ lua_gc(g_pserver->lua, LUA_GCCOLLECT, 0); + lua_close(g_pserver->lua); + } + diff --git a/databases/keydb/files/patch-CVE-2025-46817 b/databases/keydb/files/patch-CVE-2025-46817 new file mode 100644 index 000000000000..56ae3ec6378b --- /dev/null +++ b/databases/keydb/files/patch-CVE-2025-46817 @@ -0,0 +1,86 @@ +diff --git a/deps/lua/src/lbaselib.c b/deps/lua/src/lbaselib.c +index 2ab550bd48d..26172d15b40 100644 +--- deps/lua/src/lbaselib.c ++++ deps/lua/src/lbaselib.c +@@ -340,13 +340,14 @@ static int luaB_assert (lua_State *L) { + + + static int luaB_unpack (lua_State *L) { +- int i, e, n; ++ int i, e; ++ unsigned int n; + luaL_checktype(L, 1, LUA_TTABLE); + i = luaL_optint(L, 2, 1); + e = luaL_opt(L, luaL_checkint, 3, luaL_getn(L, 1)); + if (i > e) return 0; /* empty range */ +- n = e - i + 1; /* number of elements */ +- if (n <= 0 || !lua_checkstack(L, n)) /* n <= 0 means arith. overflow */ ++ n = (unsigned int)e - (unsigned int)i; /* number of elements minus 1 */ ++ if (n >= INT_MAX || !lua_checkstack(L, ++n)) + return luaL_error(L, "too many results to unpack"); + lua_rawgeti(L, 1, i); /* push arg[i] (avoiding overflow problems) */ + while (i++ < e) /* push arg[i + 1...e] */ +diff --git a/deps/lua/src/ltable.c b/deps/lua/src/ltable.c +index f75fe19fe39..55575a8ace9 100644 +--- deps/lua/src/ltable.c ++++ deps/lua/src/ltable.c +@@ -434,8 +434,7 @@ static TValue *newkey (lua_State *L, Table *t, const TValue *key) { + ** search function for integers + */ + const TValue *luaH_getnum (Table *t, int key) { +- /* (1 <= key && key <= t->sizearray) */ +- if (cast(unsigned int, key-1) < cast(unsigned int, t->sizearray)) ++ if (1 <= key && key <= t->sizearray) + return &t->array[key-1]; + else { + lua_Number nk = cast_num(key); +diff --git a/tests/unit/scripting.tcl b/tests/unit/scripting.tcl +index 333cc2692de..d45c63ceec3 100644 +--- tests/unit/scripting.tcl ++++ tests/unit/scripting.tcl +@@ -315,6 +315,45 @@ start_server {tags {"scripting"}} { + set e + } {*against a key*} + ++ test {EVAL - Test table unpack with invalid indexes} { ++ catch {run_script { return {unpack({1,2,3}, -2, 2147483647)} } 0} e ++ assert_match {*too many results to unpack*} $e ++ catch {run_script { return {unpack({1,2,3}, 0, 2147483647)} } 0} e ++ assert_match {*too many results to unpack*} $e ++ catch {run_script { return {unpack({1,2,3}, -2147483648, -2)} } 0} e ++ assert_match {*too many results to unpack*} $e ++ set res [run_script { return {unpack({1,2,3}, -1, -2)} } 0] ++ assert_match {} $res ++ set res [run_script { return {unpack({1,2,3}, 1, -1)} } 0] ++ assert_match {} $res ++ ++ # unpack with range -1 to 5, verify nil indexes ++ set res [run_script { ++ local function unpack_to_list(t, i, j) ++ local n, v = select('#', unpack(t, i, j)), {unpack(t, i, j)} ++ for i = 1, n do v[i] = v[i] or '_NIL_' end ++ v.n = n ++ return v ++ end ++ ++ return unpack_to_list({1,2,3}, -1, 5) ++ } 0] ++ assert_match {_NIL_ _NIL_ 1 2 3 _NIL_ _NIL_} $res ++ ++ # unpack with negative range, verify nil indexes ++ set res [run_script { ++ local function unpack_to_list(t, i, j) ++ local n, v = select('#', unpack(t, i, j)), {unpack(t, i, j)} ++ for i = 1, n do v[i] = v[i] or '_NIL_' end ++ v.n = n ++ return v ++ end ++ ++ return unpack_to_list({1,2,3}, -2147483648, -2147483646) ++ } 0] ++ assert_match {_NIL_ _NIL_ _NIL_} $res ++ } {} ++ + test {EVAL - JSON numeric decoding} { + # We must return the table as a string because otherwise + # Redis converts floats to ints and we get 0 and 1023 instead diff --git a/databases/keydb/files/patch-CVE-2025-49844 b/databases/keydb/files/patch-CVE-2025-49844 new file mode 100644 index 000000000000..d17aa3285453 --- /dev/null +++ b/databases/keydb/files/patch-CVE-2025-49844 @@ -0,0 +1,23 @@ +diff --git a/deps/lua/src/lparser.c b/deps/lua/src/lparser.c +index dda7488dcad..ee7d90c90d7 100644 +--- deps/lua/src/lparser.c ++++ deps/lua/src/lparser.c +@@ -384,13 +384,17 @@ Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name) { + struct LexState lexstate; + struct FuncState funcstate; + lexstate.buff = buff; +- luaX_setinput(L, &lexstate, z, luaS_new(L, name)); ++ TString *tname = luaS_new(L, name); ++ setsvalue2s(L, L->top, tname); ++ incr_top(L); ++ luaX_setinput(L, &lexstate, z, tname); + open_func(&lexstate, &funcstate); + funcstate.f->is_vararg = VARARG_ISVARARG; /* main func. is always vararg */ + luaX_next(&lexstate); /* read first token */ + chunk(&lexstate); + check(&lexstate, TK_EOS); + close_func(&lexstate); ++ --L->top; + lua_assert(funcstate.prev == NULL); + lua_assert(funcstate.f->nups == 0); + lua_assert(lexstate.fs == NULL); diff --git a/devel/Makefile b/devel/Makefile index f47cc02e0e25..871174ecb288 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4451,6 +4451,7 @@ SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asynctest + SUBDIR += py-atom SUBDIR += py-atomiclong SUBDIR += py-atpublic SUBDIR += py-attr @@ -4462,6 +4463,7 @@ SUBDIR += py-automaton SUBDIR += py-autopage SUBDIR += py-autoprop + SUBDIR += py-autoray SUBDIR += py-avocado-framework SUBDIR += py-avro SUBDIR += py-awesomeversion @@ -4766,6 +4768,7 @@ SUBDIR += py-cython-test-exception-raiser SUBDIR += py-cytoolz SUBDIR += py-d2to1 + SUBDIR += py-dacite SUBDIR += py-daemon SUBDIR += py-daemon-runner SUBDIR += py-daemonize diff --git a/devel/forge/Makefile b/devel/forge/Makefile index 27e8ef7187f6..d893ba170f7f 100644 --- a/devel/forge/Makefile +++ b/devel/forge/Makefile @@ -1,6 +1,6 @@ PORTNAME= forge DISTVERSIONPREFIX= v -DISTVERSION= 0.6.0 +DISTVERSION= 0.6.1 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} diff --git a/devel/forge/distinfo b/devel/forge/distinfo index 937ae008dae9..8316d731e8f0 100644 --- a/devel/forge/distinfo +++ b/devel/forge/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757433676 -SHA256 (magit-forge-v0.6.0_GH0.tar.gz) = 45503d6e9b241c95c1188803e734296a0ae54697325016b7fcbc1bb1fafd23ad -SIZE (magit-forge-v0.6.0_GH0.tar.gz) = 150772 +TIMESTAMP = 1759796012 +SHA256 (magit-forge-v0.6.1_GH0.tar.gz) = 7c70de118590deb7f4eb0c2fc3dee17677dbb49c3fd664cb1856c0a8cda8c2cc +SIZE (magit-forge-v0.6.1_GH0.tar.gz) = 150972 diff --git a/devel/ghub/Makefile b/devel/ghub/Makefile index 8b2ca838d31f..37c160e26d60 100644 --- a/devel/ghub/Makefile +++ b/devel/ghub/Makefile @@ -1,6 +1,6 @@ PORTNAME= ghub DISTVERSIONPREFIX= v -DISTVERSION= 5.0.0 +DISTVERSION= 5.0.1 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} diff --git a/devel/ghub/distinfo b/devel/ghub/distinfo index c1da627a2273..7ee432e26d1a 100644 --- a/devel/ghub/distinfo +++ b/devel/ghub/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757432886 -SHA256 (magit-ghub-v5.0.0_GH0.tar.gz) = da63a1584494fb67a6a27f81c5462e35ca37e2b7adebf1d8d7cadd3cb968df3a -SIZE (magit-ghub-v5.0.0_GH0.tar.gz) = 58628 +TIMESTAMP = 1759795776 +SHA256 (magit-ghub-v5.0.1_GH0.tar.gz) = cc1561dd6c07d79846e2d11c8e5cd6828fd9323206ea093fe390333ab2763ee3 +SIZE (magit-ghub-v5.0.1_GH0.tar.gz) = 58685 diff --git a/devel/libunit/Makefile b/devel/libunit/Makefile index 656112c590cd..49b1d5cb6444 100644 --- a/devel/libunit/Makefile +++ b/devel/libunit/Makefile @@ -4,7 +4,7 @@ MASTER_SITES?= https://unit.nginx.org/download/ DISTNAME= unit-${PORTVERSION} DISTINFO_FILE= ${.CURDIR}/../../www/unit/distinfo -MAINTAINER= osa@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Development kit for dynamic web application server WWW= https://unit.nginx.org diff --git a/devel/libversion/Makefile b/devel/libversion/Makefile index 67beff6cd958..85ce38457306 100644 --- a/devel/libversion/Makefile +++ b/devel/libversion/Makefile @@ -1,5 +1,5 @@ PORTNAME= libversion -PORTVERSION= 3.0.3 +PORTVERSION= 3.0.4 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/libversion/distinfo b/devel/libversion/distinfo index 3669356dd39a..44f67816011c 100644 --- a/devel/libversion/distinfo +++ b/devel/libversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673637008 -SHA256 (repology-libversion-3.0.3_GH0.tar.gz) = bb49d745a0c8e692007af6d928046d1ab6b9189f8dbba834cdf3c1d251c94a1d -SIZE (repology-libversion-3.0.3_GH0.tar.gz) = 23399 +TIMESTAMP = 1759782580 +SHA256 (repology-libversion-3.0.4_GH0.tar.gz) = 48c2a4a98b6f220dedd535979f1e9ab83f9bf869e06c0f5e7bb1be6d2e662fee +SIZE (repology-libversion-3.0.4_GH0.tar.gz) = 23408 diff --git a/devel/magit/Makefile b/devel/magit/Makefile index 5190982d6742..065aa673645e 100644 --- a/devel/magit/Makefile +++ b/devel/magit/Makefile @@ -1,6 +1,6 @@ PORTNAME= magit DISTVERSIONPREFIX= v -DISTVERSION= 4.4.0 +DISTVERSION= 4.4.2 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} diff --git a/devel/magit/distinfo b/devel/magit/distinfo index 923ba81a6089..fc0df31ed83b 100644 --- a/devel/magit/distinfo +++ b/devel/magit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757432453 -SHA256 (magit-magit-v4.4.0_GH0.tar.gz) = 6dfb57eee119588d65322a53c89102cdf1fce24675f32c35a068c1652ac79cab -SIZE (magit-magit-v4.4.0_GH0.tar.gz) = 699605 +TIMESTAMP = 1759795366 +SHA256 (magit-magit-v4.4.2_GH0.tar.gz) = 8a6a15e8468ffc5f439686e099237f09a18d4ebc169cec23960733d458ef2024 +SIZE (magit-magit-v4.4.2_GH0.tar.gz) = 701346 diff --git a/devel/opentelemetry-cpp/Makefile b/devel/opentelemetry-cpp/Makefile index 46c7bbe2cbc5..a48065ed252e 100644 --- a/devel/opentelemetry-cpp/Makefile +++ b/devel/opentelemetry-cpp/Makefile @@ -3,7 +3,7 @@ PORTVERSION= 1.22.0 DISTVERSIONPREFIX= v CATEGORIES= devel -MAINTAINER= osa@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= OpenTelemetry C++ client WWW= https://github.com/open-telemetry/opentelemetry-cpp diff --git a/devel/opentelemetry-proto/Makefile b/devel/opentelemetry-proto/Makefile index ba31e982c243..939c42acfe70 100644 --- a/devel/opentelemetry-proto/Makefile +++ b/devel/opentelemetry-proto/Makefile @@ -1,10 +1,10 @@ PORTNAME= opentelemetry -PORTVERSION= 1.7.0 +PORTVERSION= 1.8.0 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMESUFFIX= -proto -MAINTAINER= osa@FreeBSD.org +MAINTAINER= atanubiswas484@gmail.com COMMENT= OpenTelemetry protocol (OTLP) specification and Protobuf definitions WWW= https://github.com/open-telemetry/opentelemetry-proto @@ -15,11 +15,12 @@ USE_GITHUB= yes GH_ACCOUNT= open-telemetry GH_PROJECT= opentelemetry-proto +NO_ARCH= yes NO_BUILD= yes do-install: - ${RM} ${WRKSRC}/opentelemetry/proto/collector/README.md - ${RM} ${WRKSRC}/opentelemetry/proto/collector/*/v1*/*.yaml + ${RM} ${WRKSRC}/opentelemetry/proto/collector/README.md \ + ${WRKSRC}/opentelemetry/proto/collector/*/v1*/*.yaml ${MKDIR} ${STAGEDIR}${PREFIX}/include/opentelemetry/proto (cd ${WRKSRC}/opentelemetry/proto && \ ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/opentelemetry/proto) diff --git a/devel/opentelemetry-proto/distinfo b/devel/opentelemetry-proto/distinfo index 9f8b75c168ff..7f4d96677f90 100644 --- a/devel/opentelemetry-proto/distinfo +++ b/devel/opentelemetry-proto/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747922685 -SHA256 (open-telemetry-opentelemetry-proto-v1.7.0_GH0.tar.gz) = 11330d850f5e24d34c4246bc8cb21fcd311e7565d219195713455a576bb11bed -SIZE (open-telemetry-opentelemetry-proto-v1.7.0_GH0.tar.gz) = 127009 +TIMESTAMP = 1759831768 +SHA256 (open-telemetry-opentelemetry-proto-v1.8.0_GH0.tar.gz) = 057812cab50122c0fd504aae57b0b58424a5ec05d1b07889814bdfc7699abbe7 +SIZE (open-telemetry-opentelemetry-proto-v1.8.0_GH0.tar.gz) = 119085 diff --git a/devel/opentelemetry-proto/pkg-descr b/devel/opentelemetry-proto/pkg-descr index 830b313f3391..9de06c5b5627 100644 --- a/devel/opentelemetry-proto/pkg-descr +++ b/devel/opentelemetry-proto/pkg-descr @@ -1 +1,6 @@ -The C++ OpenTelemetry client. +This is the C implementation of the OpenTelemetry Protocol (OTLP). It provides +the official Protocol Buffers definitions and code for working with traces, +metrics, and logs across the OpenTelemetry ecosystem. + +Use this if you need native C support for OTLP, or to integrate OpenTelemetry +data into your own collectors, exporters, or backend services. diff --git a/devel/protobuf-java/Makefile b/devel/protobuf-java/Makefile index 9a4e9b3dc583..9ba9516cd217 100644 --- a/devel/protobuf-java/Makefile +++ b/devel/protobuf-java/Makefile @@ -1,5 +1,5 @@ PORTNAME= protobuf-java -DISTVERSION= 4.32.0 +DISTVERSION= 4.32.1 CATEGORIES= devel java MASTER_SITES= https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/${DISTVERSION}/ EXTRACT_SUFX= .jar diff --git a/devel/protobuf-java/distinfo b/devel/protobuf-java/distinfo index ea6a7a57b155..c1f5043b70cf 100644 --- a/devel/protobuf-java/distinfo +++ b/devel/protobuf-java/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755715479 -SHA256 (protobuf-java-4.32.0.jar) = e902c91b454812b7d056b8d303a572733bf0587576ff157c1049116c9626241d -SIZE (protobuf-java-4.32.0.jar) = 1877730 +TIMESTAMP = 1758721616 +SHA256 (protobuf-java-4.32.1.jar) = 8c99e4d971338bafb0b0b1d1cea9b1bbb3dc9630eb9c25109e4c7c27bca832cb +SIZE (protobuf-java-4.32.1.jar) = 1883046 diff --git a/devel/py-atom/Makefile b/devel/py-atom/Makefile new file mode 100644 index 000000000000..28d8656f9558 --- /dev/null +++ b/devel/py-atom/Makefile @@ -0,0 +1,34 @@ +PORTNAME= atom +DISTVERSION= 0.12.1 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Memory efficient Python objects +WWW= https://atom.readthedocs.io/en/latest/ \ + https://github.com/nucleic/atom + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cppy>0:devel/py-cppy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools-scm>0:devel/py-setuptools-scm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-benchmark>0:devel/py-pytest-benchmark@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-mypy-plugins>0:devel/py-pytest-mypy-plugins@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent pep517 pytest + +TEST_ENV= PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + +do-test: + @cd ${TEST_WRKSRC} && \ + ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest tests/test_version.py tests/test_typing_utils.py -v + +# tests as of 0.12.1: 22 passed in 1.93s (limited to non-compiled module tests) + +.include <bsd.port.mk> diff --git a/devel/py-atom/distinfo b/devel/py-atom/distinfo new file mode 100644 index 000000000000..b53960fd4fbc --- /dev/null +++ b/devel/py-atom/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759782668 +SHA256 (atom-0.12.1.tar.gz) = 2cbfb77939da28879a5432e3b201ac026be85c789c4e96de246a6f6a9f4be57a +SIZE (atom-0.12.1.tar.gz) = 170161 diff --git a/devel/py-atom/files/patch-pyproject.toml b/devel/py-atom/files/patch-pyproject.toml new file mode 100644 index 000000000000..4b6bdc047758 --- /dev/null +++ b/devel/py-atom/files/patch-pyproject.toml @@ -0,0 +1,21 @@ +--- pyproject.toml.orig 2024-12-10 10:30:00 UTC ++++ pyproject.toml +@@ -11,8 +11,7 @@ + description = "Memory efficient Python objects" + readme = "README.rst" + requires-python = ">=3.10" +- license = "BSD-3-Clause" +- license-files = ["LICENSE"] ++ license = {file = "LICENSE"} + authors = [{ name = "The Nucleic Development Team", email = "sccolbert@gmail.com" }] + maintainers = [{ name = "Matthieu C. Dartiailh", email = "m.dartiailh@gmail.com" }] + classifiers = [ +@@ -41,7 +40,7 @@ + changelog = "https://github.com/nucleic/atom/blob/main/releasenotes.rst" + + [build-system] +- requires = ["setuptools>=77.0", "wheel", "setuptools_scm[toml]>=3.4.3", "cppy>=1.2.0"] ++ requires = ["setuptools>=63.1.0", "wheel", "setuptools_scm[toml]>=3.4.3", "cppy>=1.2.0"] + build-backend = "setuptools.build_meta" + + [tool.setuptools] diff --git a/devel/py-atom/pkg-descr b/devel/py-atom/pkg-descr new file mode 100644 index 000000000000..e945a0b3d499 --- /dev/null +++ b/devel/py-atom/pkg-descr @@ -0,0 +1,16 @@ +Atom is a framework for creating memory efficient Python objects with enhanced +features such as dynamic initialization, validation, and change notification +for object attributes. It provides the default model binding behavior for the +Enaml UI framework. + +Key features: +* Memory efficient object creation +* Dynamic attribute initialization +* Attribute validation +* Change notification system +* Type annotation support (atom 0.8.0+) +* Enhanced property system + +Atom objects can be defined using traditional class-based approach or modern +type annotations, making it suitable for both legacy and modern Python +codebases. diff --git a/devel/py-autoray/Makefile b/devel/py-autoray/Makefile new file mode 100644 index 000000000000..1d2ffbccb937 --- /dev/null +++ b/devel/py-autoray/Makefile @@ -0,0 +1,35 @@ +PORTNAME= autoray +DISTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Abstract your array operations +WWW= https://autoray.readthedocs.io/en/latest/ \ + https://github.com/jcmgray/autoray + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatch-vcs>0:devel/py-hatch-vcs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} +# more backend dependencies are defined but not ported yet +BE_DEPENDS= ${PYTHON_PKGNAMEPREFIX}autograd>0:math/py-autograd@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytorch>0:misc/py-pytorch@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sparse>0:devel/py-sparse@${PY_FLAVOR} +#BE_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tensorflow>0:science/py-tensorflow@${PY_FLAVOR} # tests crash with tensorflow +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \ + ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${BE_DEPENDS} + +USES= python +USE_PYTHON= pep517 autoplist concurrent pytest + +NO_ARCH= yes + +# tests as of : 1692 passed, 1274 skipped, 70 xfailed, 12 warnings in 49.94s + +.include <bsd.port.mk> diff --git a/devel/py-autoray/distinfo b/devel/py-autoray/distinfo new file mode 100644 index 000000000000..30556db9a415 --- /dev/null +++ b/devel/py-autoray/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759782964 +SHA256 (autoray-0.8.0.tar.gz) = 5d0d71da03cb02d5bc590a1af64e0ba58589352d628843a0ecbcfe90040dc520 +SIZE (autoray-0.8.0.tar.gz) = 1215812 diff --git a/devel/py-autoray/pkg-descr b/devel/py-autoray/pkg-descr new file mode 100644 index 000000000000..d83fab5b1ce3 --- /dev/null +++ b/devel/py-autoray/pkg-descr @@ -0,0 +1,12 @@ +Autoray is a lightweight Python library that provides automatic dispatching of +array operations to the appropriate backend, allowing code to work seamlessly +with different array libraries like NumPy, JAX, PyTorch, TensorFlow, CuPy, +Dask, and others. + +Key features: +* Automatic backend detection and dispatching +* Support for multiple array libraries +* Minimal overhead and dependencies +* Easy integration with existing code +* Extensible for custom backends +* Compatible with most common array operations diff --git a/devel/py-dacite/Makefile b/devel/py-dacite/Makefile new file mode 100644 index 000000000000..92872c4be503 --- /dev/null +++ b/devel/py-dacite/Makefile @@ -0,0 +1,22 @@ +PORTNAME= dacite +DISTVERSIONPREFIX= v +DISTVERSION= 1.9.2 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Simple creation of data classes from dictionaries +WWW= https://github.com/konradhalas/dacite + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist pytest + +USE_GITHUB= yes +GH_ACCOUNT= konradhalas + +# tests as of 1.9.2: 199 passed, 0 failed (12.11s) + +.include <bsd.port.mk> diff --git a/devel/py-dacite/distinfo b/devel/py-dacite/distinfo new file mode 100644 index 000000000000..96e171a0571d --- /dev/null +++ b/devel/py-dacite/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759797847 +SHA256 (konradhalas-dacite-v1.9.2_GH0.tar.gz) = cec83bf402dc6ac0e5a2030500ef7296ad4d5c77e756475252b99e89a4d5ebfa +SIZE (konradhalas-dacite-v1.9.2_GH0.tar.gz) = 29435 diff --git a/devel/py-dacite/pkg-descr b/devel/py-dacite/pkg-descr new file mode 100644 index 000000000000..9f354b89968c --- /dev/null +++ b/devel/py-dacite/pkg-descr @@ -0,0 +1,3 @@ +The dacite library provides a simple API to create Python data classes from +dictionaries. It also includes support for more advanced features like nested +data classes and type checking. diff --git a/devel/slibtool/Makefile b/devel/slibtool/Makefile index 37f178650f11..413e6ab45ddb 100644 --- a/devel/slibtool/Makefile +++ b/devel/slibtool/Makefile @@ -1,5 +1,5 @@ PORTNAME= slibtool -PORTVERSION= 0.7.3 +PORTVERSION= 0.7.4 CATEGORIES= devel MASTER_SITES= http://dl.midipix.org/${PORTNAME}/ diff --git a/devel/slibtool/distinfo b/devel/slibtool/distinfo index 50fe12bc1689..7ef1a8f3ccc4 100644 --- a/devel/slibtool/distinfo +++ b/devel/slibtool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751008134 -SHA256 (slibtool-0.7.3.tar.xz) = 0308f8a7bc9b61c27229fb441fd5a04c9f77365bc6b72869d5c974811635ae25 -SIZE (slibtool-0.7.3.tar.xz) = 134000 +TIMESTAMP = 1759823984 +SHA256 (slibtool-0.7.4.tar.xz) = 2e7a4ae528c49c82743ae91260d3fa24bee3d91d9a87066e3491a24ba745a948 +SIZE (slibtool-0.7.4.tar.xz) = 135580 diff --git a/devel/transient/Makefile b/devel/transient/Makefile index eb4624013842..542eec98fa26 100644 --- a/devel/transient/Makefile +++ b/devel/transient/Makefile @@ -1,6 +1,6 @@ PORTNAME= transient DISTVERSIONPREFIX= v -DISTVERSION= 0.10.0 +DISTVERSION= 0.10.1 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} diff --git a/devel/transient/distinfo b/devel/transient/distinfo index 4fc50d6f226c..5df890558274 100644 --- a/devel/transient/distinfo +++ b/devel/transient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756808724 -SHA256 (magit-transient-v0.10.0_GH0.tar.gz) = 292da117d9489cb327607ed18233f3313221f08e1182ec04a9413f121d7802fc -SIZE (magit-transient-v0.10.0_GH0.tar.gz) = 172294 +TIMESTAMP = 1759790520 +SHA256 (magit-transient-v0.10.1_GH0.tar.gz) = 6e95126f87f12d30b53fbb31538899bb2dfbb50ad78c3225971921b45ab10446 +SIZE (magit-transient-v0.10.1_GH0.tar.gz) = 172350 diff --git a/devel/unit-otel/Makefile b/devel/unit-otel/Makefile index 67ff5c8a3432..b50b72685d73 100644 --- a/devel/unit-otel/Makefile +++ b/devel/unit-otel/Makefile @@ -5,7 +5,7 @@ CATEGORIES= devel MASTER_SITES?= https://unit.nginx.org/download/ DISTFILES= unit-${PORTVERSION}.tar.gz -MAINTAINER= osa@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= OTel static library for Unit WWW= https://unit.nginx.org diff --git a/devel/xdg-user-dirs/Makefile b/devel/xdg-user-dirs/Makefile index 9f3eff95d46b..a0078c18eaff 100644 --- a/devel/xdg-user-dirs/Makefile +++ b/devel/xdg-user-dirs/Makefile @@ -1,22 +1,19 @@ PORTNAME= xdg-user-dirs -DISTVERSION= 0.18 -PORTREVISION= 1 +DISTVERSION= 0.19 CATEGORIES= devel -MASTER_SITES= http://user-dirs.freedesktop.org/releases/ +MASTER_SITES= https://user-dirs.freedesktop.org/releases/ -MAINTAINER= kde@FreeBSD.org +MAINTAINER= desktop@FreeBSD.org COMMENT= Tool to help manage personal user directories WWW= https://freedesktop.org/wiki/Software/xdg-user-dirs/ -LICENSE= GPLv2 MIT +LICENSE= GPLv2+ MIT LICENSE_COMB= multi -LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING +LICENSE_FILE_GPLv2+= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl -GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share -USES= gettext gmake gnome iconv localbase:ldflags +USES= gettext gnome iconv localbase:ldflags meson tar:xz USE_GNOME= libxslt:build LDFLAGS+= ${ICONV_LIB} diff --git a/devel/xdg-user-dirs/distinfo b/devel/xdg-user-dirs/distinfo index ae1075365fc2..8b7d2bdf8948 100644 --- a/devel/xdg-user-dirs/distinfo +++ b/devel/xdg-user-dirs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1659620555 -SHA256 (xdg-user-dirs-0.18.tar.gz) = ec6f06d7495cdba37a732039f9b5e1578bcb296576fde0da40edb2f52220df3c -SIZE (xdg-user-dirs-0.18.tar.gz) = 273556 +TIMESTAMP = 1759052738 +SHA256 (xdg-user-dirs-0.19.tar.xz) = e92deb929c10d4b29329397af8a2585101247f7e6177ac6f1d28e82130ed8c19 +SIZE (xdg-user-dirs-0.19.tar.xz) = 71732 diff --git a/devel/xdg-user-dirs/pkg-plist b/devel/xdg-user-dirs/pkg-plist index faf79b8a4693..852c11cce22e 100644 --- a/devel/xdg-user-dirs/pkg-plist +++ b/devel/xdg-user-dirs/pkg-plist @@ -3,11 +3,13 @@ bin/xdg-user-dirs-update etc/xdg/autostart/xdg-user-dirs.desktop etc/xdg/user-dirs.conf etc/xdg/user-dirs.defaults +@comment lib/systemd/user/xdg-user-dirs.service share/man/man1/xdg-user-dir.1.gz share/man/man1/xdg-user-dirs-update.1.gz share/man/man5/user-dirs.conf.5.gz share/man/man5/user-dirs.defaults.5.gz share/man/man5/user-dirs.dirs.5.gz +share/locale/ab/LC_MESSAGES/xdg-user-dirs.mo share/locale/af/LC_MESSAGES/xdg-user-dirs.mo share/locale/an/LC_MESSAGES/xdg-user-dirs.mo share/locale/ar/LC_MESSAGES/xdg-user-dirs.mo @@ -19,6 +21,7 @@ share/locale/bg/LC_MESSAGES/xdg-user-dirs.mo share/locale/bn_IN/LC_MESSAGES/xdg-user-dirs.mo share/locale/br/LC_MESSAGES/xdg-user-dirs.mo share/locale/ca/LC_MESSAGES/xdg-user-dirs.mo +share/locale/ckb/LC_MESSAGES/xdg-user-dirs.mo share/locale/crh/LC_MESSAGES/xdg-user-dirs.mo share/locale/cs/LC_MESSAGES/xdg-user-dirs.mo share/locale/da/LC_MESSAGES/xdg-user-dirs.mo @@ -45,11 +48,14 @@ share/locale/id/LC_MESSAGES/xdg-user-dirs.mo share/locale/is/LC_MESSAGES/xdg-user-dirs.mo share/locale/it/LC_MESSAGES/xdg-user-dirs.mo share/locale/ja/LC_MESSAGES/xdg-user-dirs.mo +share/locale/ka/LC_MESSAGES/xdg-user-dirs.mo +share/locale/kab/LC_MESSAGES/xdg-user-dirs.mo share/locale/kk/LC_MESSAGES/xdg-user-dirs.mo share/locale/kn/LC_MESSAGES/xdg-user-dirs.mo share/locale/ko/LC_MESSAGES/xdg-user-dirs.mo share/locale/ku/LC_MESSAGES/xdg-user-dirs.mo share/locale/ky/LC_MESSAGES/xdg-user-dirs.mo +share/locale/lg/LC_MESSAGES/xdg-user-dirs.mo share/locale/lt/LC_MESSAGES/xdg-user-dirs.mo share/locale/lv/LC_MESSAGES/xdg-user-dirs.mo share/locale/mk/LC_MESSAGES/xdg-user-dirs.mo @@ -71,7 +77,7 @@ share/locale/sk/LC_MESSAGES/xdg-user-dirs.mo share/locale/sl/LC_MESSAGES/xdg-user-dirs.mo share/locale/sq/LC_MESSAGES/xdg-user-dirs.mo share/locale/sr/LC_MESSAGES/xdg-user-dirs.mo -share/locale/sr@Latn/LC_MESSAGES/xdg-user-dirs.mo +share/locale/sr@latin/LC_MESSAGES/xdg-user-dirs.mo share/locale/sv/LC_MESSAGES/xdg-user-dirs.mo share/locale/ta/LC_MESSAGES/xdg-user-dirs.mo share/locale/te/LC_MESSAGES/xdg-user-dirs.mo @@ -79,6 +85,7 @@ share/locale/th/LC_MESSAGES/xdg-user-dirs.mo share/locale/tr/LC_MESSAGES/xdg-user-dirs.mo share/locale/uk/LC_MESSAGES/xdg-user-dirs.mo share/locale/vi/LC_MESSAGES/xdg-user-dirs.mo +share/locale/wa/LC_MESSAGES/xdg-user-dirs.mo share/locale/zh_CN/LC_MESSAGES/xdg-user-dirs.mo share/locale/zh_HK/LC_MESSAGES/xdg-user-dirs.mo share/locale/zh_TW/LC_MESSAGES/xdg-user-dirs.mo diff --git a/dns/doh-proxy/Makefile b/dns/doh-proxy/Makefile index db318c1e7bbf..20fbbf9146cb 100644 --- a/dns/doh-proxy/Makefile +++ b/dns/doh-proxy/Makefile @@ -1,6 +1,5 @@ PORTNAME= doh-proxy -DISTVERSION= 0.9.12 -PORTREVISION= 3 +DISTVERSION= 0.9.15 CATEGORIES= dns MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/dns/doh-proxy/Makefile.crates b/dns/doh-proxy/Makefile.crates index ef3701071b52..6fd8859dcb11 100644 --- a/dns/doh-proxy/Makefile.crates +++ b/dns/doh-proxy/Makefile.crates @@ -1,31 +1,30 @@ CARGO_CRATES= addr2line-0.24.2 \ - adler2-2.0.0 \ + adler2-2.0.1 \ aead-0.5.2 \ aes-0.8.4 \ aes-gcm-0.10.3 \ - anstream-0.6.19 \ + anstream-0.6.20 \ anstyle-1.0.11 \ anstyle-parse-0.2.7 \ - anstyle-query-1.1.3 \ - anstyle-wincon-3.0.9 \ - anyhow-1.0.98 \ + anstyle-query-1.1.4 \ + anstyle-wincon-3.0.10 \ + anyhow-1.0.99 \ arc-swap-1.7.1 \ - autocfg-1.4.0 \ backtrace-0.3.75 \ base64-0.21.7 \ base64-0.22.1 \ - bitflags-2.9.1 \ + bitflags-2.9.4 \ block-buffer-0.10.4 \ byteorder-1.5.0 \ bytes-1.10.1 \ - cc-1.2.26 \ - cfg-if-1.0.0 \ + cc-1.2.35 \ + cfg-if-1.0.3 \ chacha20-0.9.1 \ chacha20poly1305-0.10.1 \ cipher-0.4.4 \ - clap-4.5.39 \ - clap_builder-4.5.39 \ - clap_lex-0.7.4 \ + clap-4.5.47 \ + clap_builder-4.5.47 \ + clap_lex-0.7.5 \ colorchoice-1.0.4 \ cpufeatures-0.2.17 \ crypto-common-0.1.6 \ @@ -36,8 +35,9 @@ CARGO_CRATES= addr2line-0.24.2 \ digest-0.10.7 \ dnsstamps-0.1.10 \ equivalent-1.0.2 \ - errno-0.3.12 \ + errno-0.3.13 \ fiat-crypto-0.2.9 \ + find-msvc-tools-0.1.0 \ fnv-1.0.7 \ futures-0.3.31 \ futures-channel-0.3.31 \ @@ -50,33 +50,35 @@ CARGO_CRATES= addr2line-0.24.2 \ futures-util-0.3.31 \ generic-array-0.14.7 \ getrandom-0.2.16 \ + getrandom-0.3.3 \ ghash-0.5.1 \ gimli-0.31.1 \ - h2-0.3.26 \ - hashbrown-0.15.4 \ + h2-0.3.27 \ + hashbrown-0.15.5 \ hkdf-0.12.4 \ hmac-0.12.1 \ - hpke-0.11.0 \ + hpke-0.13.0 \ http-0.2.12 \ http-body-0.4.6 \ httparse-1.10.1 \ httpdate-1.0.3 \ hyper-0.14.32 \ - indexmap-2.9.0 \ + indexmap-2.11.0 \ inout-0.1.4 \ + io-uring-0.7.10 \ is_terminal_polyfill-1.70.1 \ itoa-1.0.15 \ - libc-0.2.172 \ - libdoh-0.9.12 \ - libmimalloc-sys-0.1.42 \ + libc-0.2.175 \ + libdoh-0.9.15 \ + libmimalloc-sys-0.1.44 \ linux-raw-sys-0.9.4 \ log-0.4.27 \ - memchr-2.7.4 \ - mimalloc-0.1.46 \ - miniz_oxide-0.8.8 \ + memchr-2.7.5 \ + mimalloc-0.1.48 \ + miniz_oxide-0.8.9 \ mio-1.0.4 \ object-0.36.7 \ - odoh-rs-1.0.3 \ + odoh-rs-1.0.4 \ once_cell-1.21.3 \ once_cell_polyfill-1.70.1 \ opaque-debug-0.3.1 \ @@ -85,15 +87,17 @@ CARGO_CRATES= addr2line-0.24.2 \ poly1305-0.8.0 \ polyval-0.6.2 \ ppv-lite86-0.2.21 \ - proc-macro2-1.0.95 \ + proc-macro2-1.0.101 \ quote-1.0.40 \ - rand-0.8.5 \ - rand_chacha-0.3.1 \ + r-efi-5.3.0 \ + rand-0.9.2 \ + rand_chacha-0.9.0 \ rand_core-0.6.4 \ + rand_core-0.9.3 \ ring-0.17.14 \ - rustc-demangle-0.1.24 \ + rustc-demangle-0.1.26 \ rustc_version-0.4.1 \ - rustix-1.0.7 \ + rustix-1.0.8 \ rustls-0.21.12 \ rustls-pemfile-1.0.4 \ rustls-webpki-0.101.7 \ @@ -102,20 +106,21 @@ CARGO_CRATES= addr2line-0.24.2 \ semver-1.0.26 \ serde-1.0.219 \ serde_derive-1.0.219 \ - serde_json-1.0.140 \ + serde_json-1.0.143 \ sha2-0.10.9 \ shlex-1.3.0 \ - slab-0.4.9 \ + slab-0.4.11 \ socket2-0.5.10 \ + socket2-0.6.0 \ strsim-0.11.1 \ subtle-2.6.1 \ - syn-2.0.101 \ - terminal_size-0.4.2 \ + syn-2.0.106 \ + terminal_size-0.4.3 \ thiserror-1.0.69 \ thiserror-impl-1.0.69 \ - tokio-1.45.1 \ + tokio-1.47.1 \ tokio-rustls-0.24.1 \ - tokio-util-0.7.15 \ + tokio-util-0.7.16 \ tower-service-0.3.3 \ tracing-0.1.41 \ tracing-core-0.1.34 \ @@ -128,20 +133,33 @@ CARGO_CRATES= addr2line-0.24.2 \ utf8parse-0.2.2 \ version_check-0.9.5 \ want-0.3.1 \ - wasi-0.11.0+wasi-snapshot-preview1 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasi-0.14.3+wasi-0.2.4 \ + windows-link-0.1.3 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ + windows-sys-0.60.2 \ windows-targets-0.52.6 \ + windows-targets-0.53.3 \ windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.0 \ windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.0 \ windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.0 \ windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.0 \ windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.0 \ windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.0 \ windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.0 \ windows_x86_64_msvc-0.52.6 \ + windows_x86_64_msvc-0.53.0 \ + wit-bindgen-0.45.0 \ x25519-dalek-2.0.1 \ - zerocopy-0.8.25 \ - zerocopy-derive-0.8.25 \ + zerocopy-0.8.26 \ + zerocopy-derive-0.8.26 \ zeroize-1.8.1 \ zeroize_derive-1.4.2 diff --git a/dns/doh-proxy/distinfo b/dns/doh-proxy/distinfo index db413b9f1300..d4a6666ec7b2 100644 --- a/dns/doh-proxy/distinfo +++ b/dns/doh-proxy/distinfo @@ -1,62 +1,60 @@ -TIMESTAMP = 1749420926 -SHA256 (rust/crates/doh-proxy-0.9.12.crate) = 8e82f60134dea6dc78bb928e14daf06638a56f8a82329b807c539d3ad5547181 -SIZE (rust/crates/doh-proxy-0.9.12.crate) = 90809 +TIMESTAMP = 1759739039 +SHA256 (rust/crates/doh-proxy-0.9.15.crate) = 8fcbdb030808a62184cb79735ade13c1dd3fd5a156c0bf2d65fa97b67356b184 +SIZE (rust/crates/doh-proxy-0.9.15.crate) = 93244 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 -SHA256 (rust/crates/adler2-2.0.0.crate) = 512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627 -SIZE (rust/crates/adler2-2.0.0.crate) = 13529 +SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa +SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/aead-0.5.2.crate) = d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0 SIZE (rust/crates/aead-0.5.2.crate) = 15509 SHA256 (rust/crates/aes-0.8.4.crate) = b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0 SIZE (rust/crates/aes-0.8.4.crate) = 124812 SHA256 (rust/crates/aes-gcm-0.10.3.crate) = 831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1 SIZE (rust/crates/aes-gcm-0.10.3.crate) = 148991 -SHA256 (rust/crates/anstream-0.6.19.crate) = 301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933 -SIZE (rust/crates/anstream-0.6.19.crate) = 28767 +SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 +SIZE (rust/crates/anstream-0.6.20.crate) = 28797 SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 -SHA256 (rust/crates/anstyle-query-1.1.3.crate) = 6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9 -SIZE (rust/crates/anstyle-query-1.1.3.crate) = 10190 -SHA256 (rust/crates/anstyle-wincon-3.0.9.crate) = 403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882 -SIZE (rust/crates/anstyle-wincon-3.0.9.crate) = 12561 -SHA256 (rust/crates/anyhow-1.0.98.crate) = e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487 -SIZE (rust/crates/anyhow-1.0.98.crate) = 53334 +SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 +SIZE (rust/crates/anstyle-query-1.1.4.crate) = 10192 +SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a +SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 +SHA256 (rust/crates/anyhow-1.0.99.crate) = b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100 +SIZE (rust/crates/anyhow-1.0.99.crate) = 53809 SHA256 (rust/crates/arc-swap-1.7.1.crate) = 69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457 SIZE (rust/crates/arc-swap-1.7.1.crate) = 68512 -SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26 -SIZE (rust/crates/autocfg-1.4.0.crate) = 17712 SHA256 (rust/crates/backtrace-0.3.75.crate) = 6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002 SIZE (rust/crates/backtrace-0.3.75.crate) = 92665 SHA256 (rust/crates/base64-0.21.7.crate) = 9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567 SIZE (rust/crates/base64-0.21.7.crate) = 82576 SHA256 (rust/crates/base64-0.22.1.crate) = 72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6 SIZE (rust/crates/base64-0.22.1.crate) = 81597 -SHA256 (rust/crates/bitflags-2.9.1.crate) = 1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967 -SIZE (rust/crates/bitflags-2.9.1.crate) = 47913 +SHA256 (rust/crates/bitflags-2.9.4.crate) = 2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394 +SIZE (rust/crates/bitflags-2.9.4.crate) = 47950 SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71 SIZE (rust/crates/block-buffer-0.10.4.crate) = 10538 SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 SHA256 (rust/crates/bytes-1.10.1.crate) = d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a SIZE (rust/crates/bytes-1.10.1.crate) = 76779 -SHA256 (rust/crates/cc-1.2.26.crate) = 956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac -SIZE (rust/crates/cc-1.2.26.crate) = 107013 -SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd -SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 +SHA256 (rust/crates/cc-1.2.35.crate) = 590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3 +SIZE (rust/crates/cc-1.2.35.crate) = 89972 +SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 +SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 SHA256 (rust/crates/chacha20-0.9.1.crate) = c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818 SIZE (rust/crates/chacha20-0.9.1.crate) = 23424 SHA256 (rust/crates/chacha20poly1305-0.10.1.crate) = 10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35 SIZE (rust/crates/chacha20poly1305-0.10.1.crate) = 68485 SHA256 (rust/crates/cipher-0.4.4.crate) = 773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad SIZE (rust/crates/cipher-0.4.4.crate) = 19073 -SHA256 (rust/crates/clap-4.5.39.crate) = fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f -SIZE (rust/crates/clap-4.5.39.crate) = 57328 -SHA256 (rust/crates/clap_builder-4.5.39.crate) = 89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51 -SIZE (rust/crates/clap_builder-4.5.39.crate) = 169142 -SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 -SIZE (rust/crates/clap_lex-0.7.4.crate) = 12858 +SHA256 (rust/crates/clap-4.5.47.crate) = 7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931 +SIZE (rust/crates/clap-4.5.47.crate) = 58354 +SHA256 (rust/crates/clap_builder-4.5.47.crate) = 2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6 +SIZE (rust/crates/clap_builder-4.5.47.crate) = 170016 +SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 +SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 SHA256 (rust/crates/cpufeatures-0.2.17.crate) = 59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280 @@ -77,10 +75,12 @@ SHA256 (rust/crates/dnsstamps-0.1.10.crate) = fa047b0ecdc7201c8009c4558f6182efdb SIZE (rust/crates/dnsstamps-0.1.10.crate) = 2912 SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 -SHA256 (rust/crates/errno-0.3.12.crate) = cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18 -SIZE (rust/crates/errno-0.3.12.crate) = 12423 +SHA256 (rust/crates/errno-0.3.13.crate) = 778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad +SIZE (rust/crates/errno-0.3.13.crate) = 12449 SHA256 (rust/crates/fiat-crypto-0.2.9.crate) = 28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d SIZE (rust/crates/fiat-crypto-0.2.9.crate) = 495390 +SHA256 (rust/crates/find-msvc-tools-0.1.0.crate) = e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650 +SIZE (rust/crates/find-msvc-tools-0.1.0.crate) = 29903 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/futures-0.3.31.crate) = 65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876 @@ -105,20 +105,22 @@ SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592 SIZE (rust/crates/getrandom-0.2.16.crate) = 40163 +SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4 +SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 SHA256 (rust/crates/ghash-0.5.1.crate) = f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1 SIZE (rust/crates/ghash-0.5.1.crate) = 9482 SHA256 (rust/crates/gimli-0.31.1.crate) = 07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f SIZE (rust/crates/gimli-0.31.1.crate) = 279515 -SHA256 (rust/crates/h2-0.3.26.crate) = 81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8 -SIZE (rust/crates/h2-0.3.26.crate) = 168315 -SHA256 (rust/crates/hashbrown-0.15.4.crate) = 5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5 -SIZE (rust/crates/hashbrown-0.15.4.crate) = 140447 +SHA256 (rust/crates/h2-0.3.27.crate) = 0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d +SIZE (rust/crates/h2-0.3.27.crate) = 169180 +SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 +SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 SHA256 (rust/crates/hkdf-0.12.4.crate) = 7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7 SIZE (rust/crates/hkdf-0.12.4.crate) = 171163 SHA256 (rust/crates/hmac-0.12.1.crate) = 6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e SIZE (rust/crates/hmac-0.12.1.crate) = 42657 -SHA256 (rust/crates/hpke-0.11.0.crate) = e04a5933a381bb81f00b083fce6b4528e16d735dbeecbb2bdb45e0dbbf3f7e17 -SIZE (rust/crates/hpke-0.11.0.crate) = 1745044 +SHA256 (rust/crates/hpke-0.13.0.crate) = f65d16b699dd1a1fa2d851c970b0c971b388eeeb40f744252b8de48860980c8f +SIZE (rust/crates/hpke-0.13.0.crate) = 1746660 SHA256 (rust/crates/http-0.2.12.crate) = 601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1 SIZE (rust/crates/http-0.2.12.crate) = 101964 SHA256 (rust/crates/http-body-0.4.6.crate) = 7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2 @@ -129,36 +131,38 @@ SHA256 (rust/crates/httpdate-1.0.3.crate) = df3b46402a9d5adb4c86a0cf463f42e19994 SIZE (rust/crates/httpdate-1.0.3.crate) = 10639 SHA256 (rust/crates/hyper-0.14.32.crate) = 41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7 SIZE (rust/crates/hyper-0.14.32.crate) = 199622 -SHA256 (rust/crates/indexmap-2.9.0.crate) = cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e -SIZE (rust/crates/indexmap-2.9.0.crate) = 91214 +SHA256 (rust/crates/indexmap-2.11.0.crate) = f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9 +SIZE (rust/crates/indexmap-2.11.0.crate) = 99851 SHA256 (rust/crates/inout-0.1.4.crate) = 879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01 SIZE (rust/crates/inout-0.1.4.crate) = 11280 +SHA256 (rust/crates/io-uring-0.7.10.crate) = 046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b +SIZE (rust/crates/io-uring-0.7.10.crate) = 103070 SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c SIZE (rust/crates/itoa-1.0.15.crate) = 11231 -SHA256 (rust/crates/libc-0.2.172.crate) = d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa -SIZE (rust/crates/libc-0.2.172.crate) = 791646 -SHA256 (rust/crates/libdoh-0.9.12.crate) = 96efefa223708b0731e7cdec6116f51cbf2cad72161de8e74e98cf7d5f66dc18 -SIZE (rust/crates/libdoh-0.9.12.crate) = 25590 -SHA256 (rust/crates/libmimalloc-sys-0.1.42.crate) = ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4 -SIZE (rust/crates/libmimalloc-sys-0.1.42.crate) = 224614 +SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 +SIZE (rust/crates/libc-0.2.175.crate) = 788728 +SHA256 (rust/crates/libdoh-0.9.15.crate) = 65935a21d8e402a3cd759ae4d0759d53699cffea302351118b4d8e7398884b8b +SIZE (rust/crates/libdoh-0.9.15.crate) = 27235 +SHA256 (rust/crates/libmimalloc-sys-0.1.44.crate) = 667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870 +SIZE (rust/crates/libmimalloc-sys-0.1.44.crate) = 451625 SHA256 (rust/crates/linux-raw-sys-0.9.4.crate) = cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12 SIZE (rust/crates/linux-raw-sys-0.9.4.crate) = 2311088 SHA256 (rust/crates/log-0.4.27.crate) = 13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94 SIZE (rust/crates/log-0.4.27.crate) = 48120 -SHA256 (rust/crates/memchr-2.7.4.crate) = 78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3 -SIZE (rust/crates/memchr-2.7.4.crate) = 96670 -SHA256 (rust/crates/mimalloc-0.1.46.crate) = 995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af -SIZE (rust/crates/mimalloc-0.1.46.crate) = 4601 -SHA256 (rust/crates/miniz_oxide-0.8.8.crate) = 3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a -SIZE (rust/crates/miniz_oxide-0.8.8.crate) = 67065 +SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 +SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/mimalloc-0.1.48.crate) = e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8 +SIZE (rust/crates/mimalloc-0.1.48.crate) = 4742 +SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 +SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c SIZE (rust/crates/mio-1.0.4.crate) = 104212 SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87 SIZE (rust/crates/object-0.36.7.crate) = 329938 -SHA256 (rust/crates/odoh-rs-1.0.3.crate) = 0e3f5faa30606eb30cd339fecfcf8cd690b3006cdad3153816499591d45b51dc -SIZE (rust/crates/odoh-rs-1.0.3.crate) = 26098 +SHA256 (rust/crates/odoh-rs-1.0.4.crate) = cbb89720b7dfdddc89bc7560669d41a0bb68eb64784a4aebd293308a489f3837 +SIZE (rust/crates/odoh-rs-1.0.4.crate) = 25887 SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad @@ -175,24 +179,28 @@ SHA256 (rust/crates/polyval-0.6.2.crate) = 9d1fe60d06143b2430aa532c94cfe9e297830 SIZE (rust/crates/polyval-0.6.2.crate) = 18425 SHA256 (rust/crates/ppv-lite86-0.2.21.crate) = 85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9 SIZE (rust/crates/ppv-lite86-0.2.21.crate) = 22522 -SHA256 (rust/crates/proc-macro2-1.0.95.crate) = 02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778 -SIZE (rust/crates/proc-macro2-1.0.95.crate) = 51820 +SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de +SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d SIZE (rust/crates/quote-1.0.40.crate) = 31063 -SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 -SIZE (rust/crates/rand-0.8.5.crate) = 87113 -SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 -SIZE (rust/crates/rand_chacha-0.3.1.crate) = 15251 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 +SHA256 (rust/crates/rand-0.9.2.crate) = 6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1 +SIZE (rust/crates/rand-0.9.2.crate) = 99930 +SHA256 (rust/crates/rand_chacha-0.9.0.crate) = d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb +SIZE (rust/crates/rand_chacha-0.9.0.crate) = 18258 SHA256 (rust/crates/rand_core-0.6.4.crate) = ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c SIZE (rust/crates/rand_core-0.6.4.crate) = 22666 +SHA256 (rust/crates/rand_core-0.9.3.crate) = 99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38 +SIZE (rust/crates/rand_core-0.9.3.crate) = 24543 SHA256 (rust/crates/ring-0.17.14.crate) = a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7 SIZE (rust/crates/ring-0.17.14.crate) = 1502610 -SHA256 (rust/crates/rustc-demangle-0.1.24.crate) = 719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f -SIZE (rust/crates/rustc-demangle-0.1.24.crate) = 29047 +SHA256 (rust/crates/rustc-demangle-0.1.26.crate) = 56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace +SIZE (rust/crates/rustc-demangle-0.1.26.crate) = 30340 SHA256 (rust/crates/rustc_version-0.4.1.crate) = cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92 SIZE (rust/crates/rustc_version-0.4.1.crate) = 12245 -SHA256 (rust/crates/rustix-1.0.7.crate) = c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266 -SIZE (rust/crates/rustix-1.0.7.crate) = 414500 +SHA256 (rust/crates/rustix-1.0.8.crate) = 11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8 +SIZE (rust/crates/rustix-1.0.8.crate) = 416688 SHA256 (rust/crates/rustls-0.21.12.crate) = 3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e SIZE (rust/crates/rustls-0.21.12.crate) = 285674 SHA256 (rust/crates/rustls-pemfile-1.0.4.crate) = 1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c @@ -209,34 +217,36 @@ SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854 SIZE (rust/crates/serde-1.0.219.crate) = 78983 SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00 SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 -SHA256 (rust/crates/serde_json-1.0.140.crate) = 20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373 -SIZE (rust/crates/serde_json-1.0.140.crate) = 154852 +SHA256 (rust/crates/serde_json-1.0.143.crate) = d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a +SIZE (rust/crates/serde_json-1.0.143.crate) = 155342 SHA256 (rust/crates/sha2-0.10.9.crate) = a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283 SIZE (rust/crates/sha2-0.10.9.crate) = 29271 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 -SHA256 (rust/crates/slab-0.4.9.crate) = 8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67 -SIZE (rust/crates/slab-0.4.9.crate) = 17108 +SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 +SIZE (rust/crates/slab-0.4.11.crate) = 18549 SHA256 (rust/crates/socket2-0.5.10.crate) = e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678 SIZE (rust/crates/socket2-0.5.10.crate) = 58169 +SHA256 (rust/crates/socket2-0.6.0.crate) = 233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807 +SIZE (rust/crates/socket2-0.6.0.crate) = 57974 SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f SIZE (rust/crates/strsim-0.11.1.crate) = 14266 SHA256 (rust/crates/subtle-2.6.1.crate) = 13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292 SIZE (rust/crates/subtle-2.6.1.crate) = 14562 -SHA256 (rust/crates/syn-2.0.101.crate) = 8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf -SIZE (rust/crates/syn-2.0.101.crate) = 299250 -SHA256 (rust/crates/terminal_size-0.4.2.crate) = 45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed -SIZE (rust/crates/terminal_size-0.4.2.crate) = 9976 +SHA256 (rust/crates/syn-2.0.106.crate) = ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6 +SIZE (rust/crates/syn-2.0.106.crate) = 301514 +SHA256 (rust/crates/terminal_size-0.4.3.crate) = 60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0 +SIZE (rust/crates/terminal_size-0.4.3.crate) = 10686 SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/tokio-1.45.1.crate) = 75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779 -SIZE (rust/crates/tokio-1.45.1.crate) = 811787 +SHA256 (rust/crates/tokio-1.47.1.crate) = 89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038 +SIZE (rust/crates/tokio-1.47.1.crate) = 829790 SHA256 (rust/crates/tokio-rustls-0.24.1.crate) = c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081 SIZE (rust/crates/tokio-rustls-0.24.1.crate) = 33049 -SHA256 (rust/crates/tokio-util-0.7.15.crate) = 66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df -SIZE (rust/crates/tokio-util-0.7.15.crate) = 124255 +SHA256 (rust/crates/tokio-util-0.7.16.crate) = 14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5 +SIZE (rust/crates/tokio-util-0.7.16.crate) = 127775 SHA256 (rust/crates/tower-service-0.3.3.crate) = 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 SIZE (rust/crates/tower-service-0.3.3.crate) = 6950 SHA256 (rust/crates/tracing-0.1.41.crate) = 784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0 @@ -261,36 +271,62 @@ SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853a SIZE (rust/crates/version_check-0.9.5.crate) = 15554 SHA256 (rust/crates/want-0.3.1.crate) = bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e SIZE (rust/crates/want-0.3.1.crate) = 6398 -SHA256 (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423 -SIZE (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 28131 +SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b +SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 +SHA256 (rust/crates/wasi-0.14.3+wasi-0.2.4.crate) = 6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95 +SIZE (rust/crates/wasi-0.14.3+wasi-0.2.4.crate) = 144010 +SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a +SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 +SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 +SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c +SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 +SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 +SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 +SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d +SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba +SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 +SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 +SHA256 (rust/crates/wit-bindgen-0.45.0.crate) = 052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814 +SIZE (rust/crates/wit-bindgen-0.45.0.crate) = 60405 SHA256 (rust/crates/x25519-dalek-2.0.1.crate) = c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277 SIZE (rust/crates/x25519-dalek-2.0.1.crate) = 87820 -SHA256 (rust/crates/zerocopy-0.8.25.crate) = a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb -SIZE (rust/crates/zerocopy-0.8.25.crate) = 252714 -SHA256 (rust/crates/zerocopy-derive-0.8.25.crate) = 28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef -SIZE (rust/crates/zerocopy-derive-0.8.25.crate) = 87671 +SHA256 (rust/crates/zerocopy-0.8.26.crate) = 1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f +SIZE (rust/crates/zerocopy-0.8.26.crate) = 249223 +SHA256 (rust/crates/zerocopy-derive-0.8.26.crate) = 9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181 +SIZE (rust/crates/zerocopy-derive-0.8.26.crate) = 88080 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 SHA256 (rust/crates/zeroize_derive-1.4.2.crate) = ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69 diff --git a/emulators/open-vm-kmod/Makefile b/emulators/open-vm-kmod/Makefile index a7c726caf9fe..2fc821071214 100644 --- a/emulators/open-vm-kmod/Makefile +++ b/emulators/open-vm-kmod/Makefile @@ -1,5 +1,5 @@ PORTNAME= open-vm-kmod -PORTVERSION= 12.5.2 +PORTVERSION= 13.0.5 DISTVERSIONPREFIX= stable- PORTEPOCH= 2 CATEGORIES= emulators @@ -10,8 +10,8 @@ WWW= https://github.com/vmware/open-vm-tools LICENSE= BSD2CLAUSE GPLv2 LICENSE_COMB= multi -LICENSE_FILE_GPLv2= ${WRKSRC}/vmmemctl/COPYING LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/vmblock/COPYING +LICENSE_FILE_GPLv2= ${WRKSRC}/vmmemctl/COPYING ONLY_FOR_ARCHS= aarch64 amd64 i386 @@ -21,8 +21,8 @@ USE_GITHUB= yes GH_ACCOUNT= vmware GH_PROJECT= open-vm-tools -WRKSRC_SUBDIR= open-vm-tools/modules/freebsd/ MAKE_ARGS= OVT_SOURCE_DIR=${WRKSRC:H:H:H} +WRKSRC_SUBDIR= open-vm-tools/modules/freebsd/ PLIST_FILES= ${KMODDIR}/vmblock.ko \ ${KMODDIR}/vmmemctl.ko diff --git a/emulators/open-vm-kmod/distinfo b/emulators/open-vm-kmod/distinfo index 884191452e52..b05fe8f3acc7 100644 --- a/emulators/open-vm-kmod/distinfo +++ b/emulators/open-vm-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750427304 -SHA256 (vmware-open-vm-tools-stable-12.5.2_GH0.tar.gz) = 9fa2ebda1aaf53c163a978832775d845378d9ce59032c07b1c63b84ba091610f -SIZE (vmware-open-vm-tools-stable-12.5.2_GH0.tar.gz) = 3004283 +TIMESTAMP = 1759280952 +SHA256 (vmware-open-vm-tools-stable-13.0.5_GH0.tar.gz) = 9d4aa767c2b2acec2d56bb50546ef1bb59283e608444d50ef55c97afcd445457 +SIZE (vmware-open-vm-tools-stable-13.0.5_GH0.tar.gz) = 2990133 diff --git a/emulators/open-vm-kmod/files/patch-vmblock_subr.c b/emulators/open-vm-kmod/files/patch-vmblock_subr.c new file mode 100644 index 000000000000..256772117d77 --- /dev/null +++ b/emulators/open-vm-kmod/files/patch-vmblock_subr.c @@ -0,0 +1,29 @@ +--- vmblock/subr.c.orig 2025-10-01 18:42:23 UTC ++++ vmblock/subr.c +@@ -208,7 +208,7 @@ VMBlockHashGet(struct mount *mp, // IN: vmblock + } + } + mtx_unlock(&hashMutex); +- return NULLVP; ++ return NULL; + } + + +@@ -254,7 +254,7 @@ VMBlockHashInsert(struct mount *mp, // IN: + } + LIST_INSERT_HEAD(hd, xp, hashEntry); + mtx_unlock(&hashMutex); +- return NULLVP; ++ return NULL; + } + + +@@ -465,7 +465,7 @@ VMBlockCheckVp(vp, fil, lno) + panic("VMBlockCheckVp"); + }; + #endif +- if (a->lowerVnode == NULLVP) { ++ if (a->lowerVnode == NULL) { + /* Should never happen */ + int i; u_long *p; + printf("vp = %p, ZERO ptr\n", (void *)vp); diff --git a/emulators/open-vm-kmod/files/patch-vmblock_vfsops.c b/emulators/open-vm-kmod/files/patch-vmblock_vfsops.c index 97840675e338..11207b5cb0e2 100644 --- a/emulators/open-vm-kmod/files/patch-vmblock_vfsops.c +++ b/emulators/open-vm-kmod/files/patch-vmblock_vfsops.c @@ -1,4 +1,4 @@ ---- vmblock/vfsops.c.orig 2024-10-10 15:05:07 UTC +--- vmblock/vfsops.c.orig 2025-10-01 18:44:42 UTC +++ vmblock/vfsops.c @@ -173,7 +173,6 @@ VMBlockVFSMount(struct mount *mp) // IN: mount( #endif @@ -8,3 +8,12 @@ uma_zfree(VMBlockPathnameZone, pathname); return error; } +@@ -354,7 +353,7 @@ VMBlockVFSRoot(struct mount *mp, // IN: vmblock + * Return locked reference to root. + */ + vp = MNTTOVMBLOCKMNT(mp)->rootVnode; +- VREF(vp); ++ vref(vp); + compat_vn_lock(vp, flags | LK_RETRY, compat_td); + *vpp = vp; + return 0; diff --git a/emulators/open-vm-kmod/files/patch-vmblock_vnops.c b/emulators/open-vm-kmod/files/patch-vmblock_vnops.c new file mode 100644 index 000000000000..64ebd25e1ce0 --- /dev/null +++ b/emulators/open-vm-kmod/files/patch-vmblock_vnops.c @@ -0,0 +1,41 @@ +--- vmblock/vnops.c.orig 2025-10-01 18:40:23 UTC ++++ vmblock/vnops.c +@@ -479,9 +479,9 @@ struct vop_generic_args { + * Check for and don't map any that aren't. (We must always map first + * vp or vclean fails.) + */ +- if (i && (*this_vp_p == NULLVP || ++ if (i && (*this_vp_p == NULL || + (*this_vp_p)->v_op != &VMBlockVnodeOps)) { +- old_vps[i] = NULLVP; ++ old_vps[i] = NULL; + } else { + old_vps[i] = *this_vp_p; + *(vps_p[i]) = VMBVPTOLOWERVP(*this_vp_p); +@@ -491,7 +491,7 @@ struct vop_generic_args { + * future.) + */ + if (reles & VDESC_VP0_WILLRELE) { +- VREF(*this_vp_p); ++ vref(*this_vp_p); + } + } + } +@@ -501,7 +501,7 @@ struct vop_generic_args { + * structure. + */ + if (vps_p[0] && *vps_p[0]) { +- error = VCALL(ap); ++ error = ap->a_desc->vdesc_call(ap); + } else { + printf("VMBlockVopBypass: no map for %s\n", descp->vdesc_name); + error = EINVAL; +@@ -681,7 +681,7 @@ struct vop_lookup_args { + */ + if (ldvp == lvp) { + *ap->a_vpp = dvp; +- VREF(dvp); ++ vref(dvp); + vrele(lvp); + } else { + error = VMBlockNodeGet(dvp->v_mount, lvp, &vp, pathname); diff --git a/emulators/open-vm-kmod/files/patch-vmmemctl_os.c b/emulators/open-vm-kmod/files/patch-vmmemctl_os.c index d083ec453d4f..899fd4d90a50 100644 --- a/emulators/open-vm-kmod/files/patch-vmmemctl_os.c +++ b/emulators/open-vm-kmod/files/patch-vmmemctl_os.c @@ -1,14 +1,12 @@ ---- vmmemctl/os.c.orig 2025-05-15 19:16:07 UTC +--- vmmemctl/os.c.orig 2025-09-30 06:45:41 UTC +++ vmmemctl/os.c @@ -91,8 +91,13 @@ MALLOC_DEFINE(M_VMMEMCTL, BALLOON_NAME, "vmmemctl meta /* * FreeBSD specific MACROS */ --#define VM_PAGE_LOCK(page) vm_page_lock(page); --#define VM_PAGE_UNLOCK(page) vm_page_unlock(page) +#if __FreeBSD_version < 1500046 -+#define VM_PAGE_LOCK(page) vm_page_tryxbusy(page); -+#define VM_PAGE_UNLOCK(page) vm_page_xunbusy(page) + #define VM_PAGE_LOCK(page) vm_page_lock(page); + #define VM_PAGE_UNLOCK(page) vm_page_unlock(page) +#else +#define VM_PAGE_LOCK(page) vm_page_tryxbusy(page); +#define VM_PAGE_UNLOCK(page) vm_page_xunbusy(page) diff --git a/emulators/open-vm-tools/Makefile b/emulators/open-vm-tools/Makefile index 845b3ee995b3..0170a949bc17 100644 --- a/emulators/open-vm-tools/Makefile +++ b/emulators/open-vm-tools/Makefile @@ -1,5 +1,5 @@ PORTNAME= open-vm-tools -PORTVERSION= 12.5.2 +PORTVERSION= 13.0.5 DISTVERSIONPREFIX= stable- PORTEPOCH= 2 CATEGORIES= emulators @@ -72,8 +72,16 @@ X11_USE= GNOME=gdkpixbuf,gdkpixbuf2xlib,gtk30,gtkmm30 \ X11_CONFIGURE_WITH= gtk3 gtkmm3 x post-patch: - @${REINPLACE_CMD} -e "s@%%PREFIX%%@${PREFIX}@"\ - ${WRKSRC}/lib/guestApp/guestApp.c + @${REINPLACE_CMD} -e "s@%%PREFIX%%@${PREFIX}@" \ + ${WRKSRC}/Makefile.am \ + ${WRKSRC}/lib/guestApp/guestApp.c \ + ${WRKSRC}/lib/misc/codeset.c \ + ${WRKSRC}/scripts/common/vm-support \ + ${WRKSRC}/services/plugins/componentMgr/svtminion.sh \ + ${WRKSRC}/services/vmtoolsd/Makefile.am \ + ${WRKSRC}/vgauth/common/prefs.h \ + ${WRKSRC}/vgauth/service/Makefile.am \ + ${WRKSRC}/vmware-user-suid-wrapper/wrapper.h post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/vmware-tools/modules/drivers diff --git a/emulators/open-vm-tools/distinfo b/emulators/open-vm-tools/distinfo index 38b3f66a1081..fdf03439d71a 100644 --- a/emulators/open-vm-tools/distinfo +++ b/emulators/open-vm-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750427284 -SHA256 (vmware-open-vm-tools-stable-12.5.2_GH0.tar.gz) = 9fa2ebda1aaf53c163a978832775d845378d9ce59032c07b1c63b84ba091610f -SIZE (vmware-open-vm-tools-stable-12.5.2_GH0.tar.gz) = 3004283 +TIMESTAMP = 1759281082 +SHA256 (vmware-open-vm-tools-stable-13.0.5_GH0.tar.gz) = 9d4aa767c2b2acec2d56bb50546ef1bb59283e608444d50ef55c97afcd445457 +SIZE (vmware-open-vm-tools-stable-13.0.5_GH0.tar.gz) = 2990133 diff --git a/emulators/open-vm-tools/files/patch-Makefile.am b/emulators/open-vm-tools/files/patch-Makefile.am new file mode 100644 index 000000000000..acda99766f9f --- /dev/null +++ b/emulators/open-vm-tools/files/patch-Makefile.am @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2025-06-19 04:05:18 UTC ++++ Makefile.am +@@ -77,6 +77,6 @@ endif + + + install-data-local: +- $(INSTALL) -d $(DESTDIR)/etc/vmware-tools/ +- $(INSTALL) -m 644 $(srcdir)/tools.conf $(DESTDIR)/etc/vmware-tools/tools.conf.example ++ $(INSTALL) -d $(DESTDIR)%%PREFIX%%/etc/vmware-tools/ ++ $(INSTALL) -m 644 $(srcdir)/tools.conf $(DESTDIR)%%PREFIX%%/etc/vmware-tools/tools.conf.sample + diff --git a/emulators/open-vm-tools/files/patch-lib_guestApp_guestApp.c b/emulators/open-vm-tools/files/patch-lib_guestApp_guestApp.c index 8dded6d07581..48c614b1ee30 100644 --- a/emulators/open-vm-tools/files/patch-lib_guestApp_guestApp.c +++ b/emulators/open-vm-tools/files/patch-lib_guestApp_guestApp.c @@ -1,4 +1,4 @@ ---- lib/guestApp/guestApp.c.orig 2024-10-10 15:05:07 UTC +--- lib/guestApp/guestApp.c.orig 2025-06-19 04:05:18 UTC +++ lib/guestApp/guestApp.c @@ -65,7 +65,7 @@ #elif defined __APPLE__ diff --git a/emulators/open-vm-tools/files/patch-lib_misc_codeset.c b/emulators/open-vm-tools/files/patch-lib_misc_codeset.c new file mode 100644 index 000000000000..2a3354fef566 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-lib_misc_codeset.c @@ -0,0 +1,11 @@ +--- lib/misc/codeset.c.orig 2025-06-19 04:05:18 UTC ++++ lib/misc/codeset.c +@@ -100,7 +100,7 @@ + # define POSIX_ICU_DIR DEFAULT_LIBDIRECTORY + #elif !defined _WIN32 + # if defined(VMX86_TOOLS) +-# define POSIX_ICU_DIR "/etc/vmware-tools" ++# define POSIX_ICU_DIR "%%PREFIX%%/etc/vmware-tools" + # else + # define POSIX_ICU_DIR "/etc/vmware" + # endif diff --git a/emulators/open-vm-tools/files/patch-pam_generic b/emulators/open-vm-tools/files/patch-pam_generic index 1954cc6cf818..bdafd4d15d59 100644 --- a/emulators/open-vm-tools/files/patch-pam_generic +++ b/emulators/open-vm-tools/files/patch-pam_generic @@ -1,8 +1,8 @@ ---- pam/generic.orig 2020-10-16 23:15:58 UTC +--- pam/generic.orig 2025-06-19 04:05:18 UTC +++ pam/generic @@ -1,9 +1,5 @@ # This is a generic pam config file for open-vm-tools - # See https://kb.vmware.com/s/article/78251 for advice to use + # See https://knowledge.broadcom.com/external/article?legacyId=78251 for advice to use # common authentication mechanisms. -auth required pam_shells.so -auth sufficient pam_unix.so shadow diff --git a/emulators/open-vm-tools/files/patch-scripts_common_vm-support b/emulators/open-vm-tools/files/patch-scripts_common_vm-support new file mode 100644 index 000000000000..9b8d1d2f5ac6 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-scripts_common_vm-support @@ -0,0 +1,11 @@ +--- scripts/common/vm-support.orig 2025-06-19 04:05:18 UTC ++++ scripts/common/vm-support +@@ -397,7 +397,7 @@ banner "Collecting support information..." + # Common stuff that we gather for all OSes. + runcmd "/tmp/vm-support-version.txt" echo vm-support version: $VER + +-addfiles /etc/vmware-tools ++addfiles %%PREFIX%%/etc/vmware-tools + addfiles /var/log/boot* + addfiles /var/log/secure* + addfiles /var/log/messages* diff --git a/emulators/open-vm-tools/files/patch-services_plugins_componentMgr_svtminion.sh b/emulators/open-vm-tools/files/patch-services_plugins_componentMgr_svtminion.sh new file mode 100644 index 000000000000..e78069d0d1c9 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-services_plugins_componentMgr_svtminion.sh @@ -0,0 +1,11 @@ +--- services/plugins/componentMgr/svtminion.sh.orig 2025-06-19 04:05:18 UTC ++++ services/plugins/componentMgr/svtminion.sh +@@ -120,7 +120,7 @@ list_of_onedir_locations_check[0]="${onedir_pre_3006_l + list_of_onedir_locations_check[1]="${onedir_post_3005_location}" + + ## VMware file and directory locations +-readonly vmtools_base_dir_etc="/etc/vmware-tools" ++readonly vmtools_base_dir_etc="%%PREFIX%%/etc/vmware-tools" + readonly vmtools_conf_file="tools.conf" + readonly vmtools_salt_minion_section_name="salt_minion" + diff --git a/emulators/open-vm-tools/files/patch-services_vmtoolsd_Makefile.am b/emulators/open-vm-tools/files/patch-services_vmtoolsd_Makefile.am index 3678de640c63..6d41f66c3e5c 100644 --- a/emulators/open-vm-tools/files/patch-services_vmtoolsd_Makefile.am +++ b/emulators/open-vm-tools/files/patch-services_vmtoolsd_Makefile.am @@ -1,11 +1,11 @@ ---- services/vmtoolsd/Makefile.am.orig 2024-10-10 15:05:07 UTC +--- services/vmtoolsd/Makefile.am.orig 2025-06-19 04:05:18 UTC +++ services/vmtoolsd/Makefile.am -@@ -81,7 +81,7 @@ install-exec-hook: +@@ -81,7 +81,7 @@ install-data-hook: @INSTVMSG@ vmtoolsd $(srcdir)/l10n $(DESTDIR)$(datadir) install-exec-hook: - $(INSTALL) -d $(DESTDIR)/etc/vmware-tools -+# $(INSTALL) -d $(DESTDIR)/etc/vmware-tools ++ $(INSTALL) -d $(DESTDIR)%%PREFIX%%/etc/vmware-tools $(INSTALL) -d $(DESTDIR)/$(PAM_PREFIX)/pam.d/ $(INSTALL) $(top_srcdir)/pam/generic $(DESTDIR)/$(PAM_PREFIX)/pam.d/vmtoolsd diff --git a/emulators/open-vm-tools/files/patch-vgauth_common_prefs.h b/emulators/open-vm-tools/files/patch-vgauth_common_prefs.h new file mode 100644 index 000000000000..31b2394e6d34 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-vgauth_common_prefs.h @@ -0,0 +1,20 @@ +--- vgauth/common/prefs.h.orig 2025-06-19 04:05:18 UTC ++++ vgauth/common/prefs.h +@@ -65,7 +65,7 @@ void Pref_LogAllEntries(const PrefHandle ph); + // fallback value if registry isn't set + #define VGAUTH_PREF_CONFIG_FILENAME "c:\\Program Files\\VMware\\VMware Tools\\vgauth.conf" + #else +-#define VGAUTH_PREF_CONFIG_FILENAME "/etc/vmware-tools/vgauth.conf" ++#define VGAUTH_PREF_CONFIG_FILENAME "%%PREFIX%%/etc/vmware-tools/vgauth.conf" + // XXX temp til installer tweaks its location + #define VGAUTH_PREF_CONFIG_FILENAME_OLD "/etc/vmware/vgauth.conf" + #endif +@@ -102,7 +102,7 @@ ticketTTL=3600 + auditSuccessEvents=true + + [localization] +-msgCatalog = /etc/vmware-tools/vgauth/messages ++msgCatalog = %%PREFIX%%/etc/vmware-tools/vgauth/messages + # EOF + @endverbatim + * See http://developer.gnome.org/glib/2.28/glib-Key-value-file-parser.html#glib-Key-value-file-parser.description diff --git a/emulators/open-vm-tools/files/patch-vgauth_service_Makefile.am b/emulators/open-vm-tools/files/patch-vgauth_service_Makefile.am new file mode 100644 index 000000000000..e71997971912 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-vgauth_service_Makefile.am @@ -0,0 +1,17 @@ +--- vgauth/service/Makefile.am.orig 2025-06-19 04:05:18 UTC ++++ vgauth/service/Makefile.am +@@ -45,7 +45,7 @@ VGAuthService_SOURCES += ../common/VGAuthUtil.c + VGAuthService_SOURCES += ../common/vmxlog.c + VGAuthService_SOURCES += ../common/vmxrpc.c + +-VGAuthServicedir = /etc/vmware-tools/vgauth/schemas ++VGAuthServicedir = %%PREFIX%%/etc/vmware-tools/vgauth/schemas + VGAuthService_SCRIPTS = + VGAuthService_SCRIPTS += ../serviceImpl/schemas/datatypes.dtd + VGAuthService_SCRIPTS += ../serviceImpl/schemas/saml-schema-assertion-2.0.xsd +@@ -93,4 +93,4 @@ VGAuthMsgDir = $(datadir)/open-vm-tools + install-data-hook: + @INSTVMSG@ VGAuthService $(srcdir)/l10n $(DESTDIR)$(datadir) + cat vgauth.conf | sed -e"s!@@VGAUTHSCHEMADIR@@!$(VGAuthServicedir)!" \ +- | sed -e"s!@@VGAUTHMSGDIR@@!$(VGAuthMsgDir)!" > $(DESTDIR)/etc/vmware-tools/vgauth.conf ++ | sed -e"s!@@VGAUTHMSGDIR@@!$(VGAuthMsgDir)!" > $(DESTDIR)%%PREFIX%%/etc/vmware-tools/vgauth.conf diff --git a/emulators/open-vm-tools/files/patch-vmware-user-suid-wrapper_wrapper.h b/emulators/open-vm-tools/files/patch-vmware-user-suid-wrapper_wrapper.h new file mode 100644 index 000000000000..568a224f1b07 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-vmware-user-suid-wrapper_wrapper.h @@ -0,0 +1,11 @@ +--- vmware-user-suid-wrapper/wrapper.h.orig 2025-06-19 04:05:18 UTC ++++ vmware-user-suid-wrapper/wrapper.h +@@ -43,7 +43,7 @@ + * in the latter. + */ + #ifdef USES_LOCATIONS_DB +-# define LOCATIONS_PATH "/etc/vmware-tools/locations" ++# define LOCATIONS_PATH "%%PREFIX%%/etc/vmware-tools/locations" + + /* + * Locations DB query selector. Values in this enum are used as array diff --git a/emulators/open-vm-tools/pkg-plist b/emulators/open-vm-tools/pkg-plist index 92ebcad1749b..a5a9f3428e99 100644 --- a/emulators/open-vm-tools/pkg-plist +++ b/emulators/open-vm-tools/pkg-plist @@ -1,4 +1,3 @@ -/etc/vmware-tools/tools.conf.example bin/vm-support %%FUSE%%bin/vmhgfs-fuse bin/vmtoolsd @@ -12,6 +11,7 @@ bin/vmware-toolbox-cmd %%FUSE%%bin/vmware-vmblock-fuse bin/vmware-xferlogs etc/pam.d/vmtoolsd +@sample etc/vmware-tools/tools.conf.sample %%X11%%etc/xdg/autostart/vmware-user.desktop %%DEPLOYPKG%%include/libDeployPkg/deployPkgFormat.h %%DEPLOYPKG%%include/libDeployPkg/deploypkg.h @@ -85,5 +85,4 @@ share/vmware-tools/suspend-vm-default @dir lib/vmware-tools/modules/input @dir %%DATADIR%%/scripts/vmware @dir %%DATADIR%%/tests -@dir /etc/vmware-tools @preunexec %%PREFIX%%/bin/vmware-rpctool 'tools.set.version 0' 2>/dev/null || /usr/bin/true diff --git a/lang/algol68g/Makefile b/lang/algol68g/Makefile index 60033bb4626f..ba68a2d62f43 100644 --- a/lang/algol68g/Makefile +++ b/lang/algol68g/Makefile @@ -1,6 +1,5 @@ PORTNAME= algol68g -PORTVERSION= 3.5.12 -PORTREVISION= 1 +PORTVERSION= 3.10.0 CATEGORIES= lang MASTER_SITES= https://jmvdveer.home.xs4all.nl/ LOCAL/danfe diff --git a/lang/algol68g/distinfo b/lang/algol68g/distinfo index 3be7cb50535f..61dce9eaebd2 100644 --- a/lang/algol68g/distinfo +++ b/lang/algol68g/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736695612 -SHA256 (algol68g-3.5.12.tar.gz) = 720ab4411d589180a85ba1d4c63c90b5a77e9be1b345e27c25ceb743d88cd71f -SIZE (algol68g-3.5.12.tar.gz) = 662372 +TIMESTAMP = 1759781013 +SHA256 (algol68g-3.10.0.tar.gz) = 54d6fd15cd0678576efa22e8c1940ad3b080f46cd2186f6bfbcd2ffda559f0c2 +SIZE (algol68g-3.10.0.tar.gz) = 672256 diff --git a/lang/algol68g/pkg-plist b/lang/algol68g/pkg-plist index 69d5a2b0e68e..7e50effae78c 100644 --- a/lang/algol68g/pkg-plist +++ b/lang/algol68g/pkg-plist @@ -2,6 +2,7 @@ bin/a68g include/algol68g/a68g-common.h include/algol68g/a68g-config.h include/algol68g/a68g-config.win32.h +include/algol68g/a68g-config.win64.h include/algol68g/a68g-defines.h include/algol68g/a68g-diagnostics.h include/algol68g/a68g-double.h diff --git a/lang/gcc13-devel/Makefile b/lang/gcc13-devel/Makefile index cf467d87a03c..1802432296c1 100644 --- a/lang/gcc13-devel/Makefile +++ b/lang/gcc13-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 13.4.1.s20250925 +PORTVERSION= 13.4.1.s20251002 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc13-devel/distinfo b/lang/gcc13-devel/distinfo index 205ac723c7d3..93c666b043ff 100644 --- a/lang/gcc13-devel/distinfo +++ b/lang/gcc13-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758883168 -SHA256 (gcc-13-20250925.tar.xz) = 884b6788640587faa5ef271ebc5654ac1ff0cdacb59a752bf9e66e38b19ce530 -SIZE (gcc-13-20250925.tar.xz) = 84597944 +TIMESTAMP = 1759480335 +SHA256 (gcc-13-20251002.tar.xz) = 1b1e6809e8c18929d43a10f237299347d57d6f4abfa91740b21e097cc441b60c +SIZE (gcc-13-20251002.tar.xz) = 84599604 diff --git a/lang/gcc14-devel/Makefile b/lang/gcc14-devel/Makefile index 46fd520e579c..e50c4d63bf8a 100644 --- a/lang/gcc14-devel/Makefile +++ b/lang/gcc14-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 14.3.1.s20250926 +PORTVERSION= 14.3.1.s20251003 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} diff --git a/lang/gcc14-devel/distinfo b/lang/gcc14-devel/distinfo index a7a73c916071..ebd51d276df5 100644 --- a/lang/gcc14-devel/distinfo +++ b/lang/gcc14-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758959784 -SHA256 (gcc-14-20250926.tar.xz) = 83336f1c94e7ffd5590d347fe30a0d33c45d216142612db23e066ccb727bb993 -SIZE (gcc-14-20250926.tar.xz) = 88365628 +TIMESTAMP = 1759565672 +SHA256 (gcc-14-20251003.tar.xz) = e119c3fa2516107e28b9f48c816362b1fff82ae3373929661f1a73d3054d18b1 +SIZE (gcc-14-20251003.tar.xz) = 88346112 diff --git a/lang/gcc15-devel/Makefile b/lang/gcc15-devel/Makefile index 3fde06f67220..54ba1c5db17d 100644 --- a/lang/gcc15-devel/Makefile +++ b/lang/gcc15-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 15.2.1.s20250927 +PORTVERSION= 15.2.1.s20251004 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc15-devel/distinfo b/lang/gcc15-devel/distinfo index 3f086f15a32c..7cc3b9221ab3 100644 --- a/lang/gcc15-devel/distinfo +++ b/lang/gcc15-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759225558 -SHA256 (gcc-15-20250927.tar.xz) = ee453b713689336a070acd7fe9b3dd276851ab708043fd956400c2db33a2a5f8 -SIZE (gcc-15-20250927.tar.xz) = 92319628 +TIMESTAMP = 1759653883 +SHA256 (gcc-15-20251004.tar.xz) = 19ae971850907bb8fbd1e76354dcc5333273dd81942d40fcd0a1a6796cefc289 +SIZE (gcc-15-20251004.tar.xz) = 92342084 diff --git a/lang/gcc16-devel/Makefile b/lang/gcc16-devel/Makefile index 9d2a474d9df5..a677854c4914 100644 --- a/lang/gcc16-devel/Makefile +++ b/lang/gcc16-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 16.0.0.s20250928 +PORTVERSION= 16.0.0.s20251005 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc16-devel/distinfo b/lang/gcc16-devel/distinfo index 6610feb59e7e..1b12c8014d93 100644 --- a/lang/gcc16-devel/distinfo +++ b/lang/gcc16-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759225720 -SHA256 (gcc-16-20250928.tar.xz) = cc0709722224a378d0b99b1c720eed539b92566205742429b717f4df7d6c5f4a -SIZE (gcc-16-20250928.tar.xz) = 95726148 +TIMESTAMP = 1759824831 +SHA256 (gcc-16-20251005.tar.xz) = e2e3d3a8908840d810a1325e67d818171f741a736857c3678d64509c66e994be +SIZE (gcc-16-20251005.tar.xz) = 95768580 diff --git a/lang/gnat12/Makefile b/lang/gnat12/Makefile index 63e6fbb1acb7..20a99fa79573 100644 --- a/lang/gnat12/Makefile +++ b/lang/gnat12/Makefile @@ -68,7 +68,7 @@ OPTIONS_DEFINE_powerpc64+= MULTILIB .endif OPTIONS_RADIO= BOOTSTRAP OPTIONS_RADIO_BOOTSTRAP= GCC6AUX PREVASSET -OPTIONS_DEFAULT= PREVASSET +OPTIONS_DEFAULT= ${"${OSVERSION:M1600*}" == "":?PREVASSET:GCC6AUX} .if defined(PACKAGE_BUILDING) OPTIONS_DEFAULT+= ASSETS .endif diff --git a/lang/gnat13/distinfo b/lang/gnat13/distinfo index 5847f36d6dc5..763a16776e4f 100644 --- a/lang/gnat13/distinfo +++ b/lang/gnat13/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1708188304 +TIMESTAMP = 1759852299 SHA256 (gcc-13.2.0.tar.xz) = e275e76442a6067341a27f04c5c6b83d8613144004c0413528863dc6b5c743da SIZE (gcc-13.2.0.tar.xz) = 87858592 SHA256 (gnat-aarch64-freebsd.13-12.2.0_6.tar.xz) = 5632d44659109b4487ac4f9658fab83eb88ceb1bef2e2171c8fc6426475154ec @@ -19,3 +19,5 @@ SHA256 (gnat-x86_64-freebsd.14-12.2.0_6.tar.xz) = a02e07d8e00caf3975549cac6b86b0 SIZE (gnat-x86_64-freebsd.14-12.2.0_6.tar.xz) = 90319148 SHA256 (gnat-x86_64-freebsd.15-12.2.0_6.tar.xz) = a486e0257eadcc1f90770df06d849978d070551b929f347e906030632374f6a2 SIZE (gnat-x86_64-freebsd.15-12.2.0_6.tar.xz) = 90213972 +SHA256 (gnat-x86_64-freebsd.16-12.3.0_1.tar.xz) = 72eb49140589ee3c7039d332a81704a4ca11a036d31ab30616b8896e689dd716 +SIZE (gnat-x86_64-freebsd.16-12.3.0_1.tar.xz) = 90849324 diff --git a/mail/abook/Makefile b/mail/abook/Makefile index 538c1e38c60f..c35c03754f85 100644 --- a/mail/abook/Makefile +++ b/mail/abook/Makefile @@ -4,7 +4,7 @@ PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://abook.sourceforge.net/devel/ -MAINTAINER= bapt@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Addressbook program with mutt mail client support WWW= http://abook.sourceforge.net/ diff --git a/math/saga/Makefile b/math/saga/Makefile index 8e869336d669..e16e3851a601 100644 --- a/math/saga/Makefile +++ b/math/saga/Makefile @@ -1,5 +1,5 @@ PORTNAME= saga -PORTVERSION= 9.9.2 +PORTVERSION= 9.9.3 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]\.[[:digit:]]*$//}/SAGA%20-%20${PORTVERSION} diff --git a/math/saga/distinfo b/math/saga/distinfo index df962faec2c0..bf6da4e6f8fe 100644 --- a/math/saga/distinfo +++ b/math/saga/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758222321 -SHA256 (saga-9.9.2.tar.gz) = 7c19c7a28b5737076707e4e704c4bb53ba0f5a1b37a7b705bcf55b008c100811 -SIZE (saga-9.9.2.tar.gz) = 10726929 +TIMESTAMP = 1759774852 +SHA256 (saga-9.9.3.tar.gz) = eb0c8051fe03cb8d4e107aa56354fcc21fd10a63de09ba0371c5fb89ea973dda +SIZE (saga-9.9.3.tar.gz) = 10719389 diff --git a/misc/Makefile b/misc/Makefile index c19991989023..8de27d8946be 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -637,6 +637,7 @@ SUBDIR += rubygem-rabbit SUBDIR += rubygem-vpim SUBDIR += rump + SUBDIR += rustlings SUBDIR += ruut SUBDIR += schilytools SUBDIR += sdformat diff --git a/misc/rustlings/Makefile b/misc/rustlings/Makefile new file mode 100644 index 000000000000..e8a779cf9d26 --- /dev/null +++ b/misc/rustlings/Makefile @@ -0,0 +1,19 @@ +PORTNAME= rustlings +DISTVERSIONPREFIX= v +DISTVERSION= 6.5.0 +CATEGORIES= misc + +MAINTAINER= adamw@FreeBSD.org +COMMENT= Small exercises to get you used to reading and writing Rust code +WWW= https://rustlings.rust-lang.org + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= rust-lang + +PLIST_FILES= bin/rustlings + +.include <bsd.port.mk> diff --git a/misc/rustlings/Makefile.crates b/misc/rustlings/Makefile.crates new file mode 100644 index 000000000000..7a4e8067472a --- /dev/null +++ b/misc/rustlings/Makefile.crates @@ -0,0 +1,100 @@ +CARGO_CRATES= anstream-0.6.20 \ + anstyle-1.0.11 \ + anstyle-parse-0.2.7 \ + anstyle-query-1.1.4 \ + anstyle-wincon-3.0.10 \ + anyhow-1.0.99 \ + autocfg-1.5.0 \ + bitflags-1.3.2 \ + bitflags-2.9.2 \ + cfg-if-1.0.3 \ + clap-4.5.45 \ + clap_builder-4.5.44 \ + clap_derive-4.5.45 \ + clap_lex-0.7.5 \ + colorchoice-1.0.4 \ + crossterm-0.29.0 \ + crossterm_winapi-0.9.1 \ + document-features-0.2.11 \ + equivalent-1.0.2 \ + errno-0.3.13 \ + fastrand-2.3.0 \ + fsevent-sys-4.1.0 \ + getrandom-0.3.3 \ + hashbrown-0.15.5 \ + heck-0.5.0 \ + indexmap-2.10.0 \ + inotify-0.11.0 \ + inotify-sys-0.1.5 \ + is_terminal_polyfill-1.70.1 \ + itoa-1.0.15 \ + kqueue-1.1.1 \ + kqueue-sys-1.0.4 \ + libc-0.2.175 \ + linux-raw-sys-0.9.4 \ + litrs-0.4.2 \ + lock_api-0.4.13 \ + log-0.4.27 \ + memchr-2.7.5 \ + mio-1.0.4 \ + notify-8.2.0 \ + notify-types-2.0.0 \ + once_cell-1.21.3 \ + once_cell_polyfill-1.70.1 \ + parking_lot-0.12.4 \ + parking_lot_core-0.9.11 \ + proc-macro2-1.0.101 \ + quote-1.0.40 \ + r-efi-5.3.0 \ + redox_syscall-0.5.17 \ + rustix-1.0.8 \ + ryu-1.0.20 \ + same-file-1.0.6 \ + scopeguard-1.2.0 \ + serde-1.0.219 \ + serde_derive-1.0.219 \ + serde_json-1.0.143 \ + serde_spanned-1.0.0 \ + signal-hook-0.3.18 \ + signal-hook-mio-0.2.4 \ + signal-hook-registry-1.4.6 \ + smallvec-1.15.1 \ + strsim-0.11.1 \ + syn-2.0.106 \ + tempfile-3.21.0 \ + toml-0.9.5 \ + toml_datetime-0.7.0 \ + toml_parser-1.0.2 \ + toml_writer-1.0.2 \ + unicode-ident-1.0.18 \ + utf8parse-0.2.2 \ + walkdir-2.5.0 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasi-0.14.2+wasi-0.2.4 \ + winapi-0.3.9 \ + winapi-i686-pc-windows-gnu-0.4.0 \ + winapi-util-0.1.10 \ + winapi-x86_64-pc-windows-gnu-0.4.0 \ + windows-link-0.1.3 \ + windows-sys-0.59.0 \ + windows-sys-0.60.2 \ + windows-targets-0.52.6 \ + windows-targets-0.53.3 \ + windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.0 \ + windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.0 \ + windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.0 \ + windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.0 \ + windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.0 \ + windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.0 \ + windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.0 \ + windows_x86_64_msvc-0.52.6 \ + windows_x86_64_msvc-0.53.0 \ + winnow-0.7.12 \ + wit-bindgen-rt-0.39.0 diff --git a/misc/rustlings/distinfo b/misc/rustlings/distinfo new file mode 100644 index 000000000000..25a5fcac8fa7 --- /dev/null +++ b/misc/rustlings/distinfo @@ -0,0 +1,203 @@ +TIMESTAMP = 1759506656 +SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 +SIZE (rust/crates/anstream-0.6.20.crate) = 28797 +SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd +SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 +SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 +SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 +SIZE (rust/crates/anstyle-query-1.1.4.crate) = 10192 +SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a +SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 +SHA256 (rust/crates/anyhow-1.0.99.crate) = b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100 +SIZE (rust/crates/anyhow-1.0.99.crate) = 53809 +SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 +SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 +SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a +SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 +SHA256 (rust/crates/bitflags-2.9.2.crate) = 6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29 +SIZE (rust/crates/bitflags-2.9.2.crate) = 47977 +SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 +SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 +SHA256 (rust/crates/clap-4.5.45.crate) = 1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318 +SIZE (rust/crates/clap-4.5.45.crate) = 58337 +SHA256 (rust/crates/clap_builder-4.5.44.crate) = b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8 +SIZE (rust/crates/clap_builder-4.5.44.crate) = 169799 +SHA256 (rust/crates/clap_derive-4.5.45.crate) = 14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6 +SIZE (rust/crates/clap_derive-4.5.45.crate) = 33545 +SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 +SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 +SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 +SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 +SHA256 (rust/crates/crossterm-0.29.0.crate) = d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b +SIZE (rust/crates/crossterm-0.29.0.crate) = 136635 +SHA256 (rust/crates/crossterm_winapi-0.9.1.crate) = acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b +SIZE (rust/crates/crossterm_winapi-0.9.1.crate) = 16027 +SHA256 (rust/crates/document-features-0.2.11.crate) = 95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d +SIZE (rust/crates/document-features-0.2.11.crate) = 14640 +SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f +SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 +SHA256 (rust/crates/errno-0.3.13.crate) = 778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad +SIZE (rust/crates/errno-0.3.13.crate) = 12449 +SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be +SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 +SHA256 (rust/crates/fsevent-sys-4.1.0.crate) = 76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2 +SIZE (rust/crates/fsevent-sys-4.1.0.crate) = 4620 +SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4 +SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 +SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 +SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 +SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea +SIZE (rust/crates/heck-0.5.0.crate) = 11517 +SHA256 (rust/crates/indexmap-2.10.0.crate) = fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661 +SIZE (rust/crates/indexmap-2.10.0.crate) = 95836 +SHA256 (rust/crates/inotify-0.11.0.crate) = f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3 +SIZE (rust/crates/inotify-0.11.0.crate) = 26241 +SHA256 (rust/crates/inotify-sys-0.1.5.crate) = e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb +SIZE (rust/crates/inotify-sys-0.1.5.crate) = 6965 +SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf +SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 +SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c +SIZE (rust/crates/itoa-1.0.15.crate) = 11231 +SHA256 (rust/crates/kqueue-1.1.1.crate) = eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a +SIZE (rust/crates/kqueue-1.1.1.crate) = 21504 +SHA256 (rust/crates/kqueue-sys-1.0.4.crate) = ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b +SIZE (rust/crates/kqueue-sys-1.0.4.crate) = 7160 +SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 +SIZE (rust/crates/libc-0.2.175.crate) = 788728 +SHA256 (rust/crates/linux-raw-sys-0.9.4.crate) = cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12 +SIZE (rust/crates/linux-raw-sys-0.9.4.crate) = 2311088 +SHA256 (rust/crates/litrs-0.4.2.crate) = f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed +SIZE (rust/crates/litrs-0.4.2.crate) = 43399 +SHA256 (rust/crates/lock_api-0.4.13.crate) = 96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765 +SIZE (rust/crates/lock_api-0.4.13.crate) = 28565 +SHA256 (rust/crates/log-0.4.27.crate) = 13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94 +SIZE (rust/crates/log-0.4.27.crate) = 48120 +SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 +SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c +SIZE (rust/crates/mio-1.0.4.crate) = 104212 +SHA256 (rust/crates/notify-8.2.0.crate) = 4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3 +SIZE (rust/crates/notify-8.2.0.crate) = 39067 +SHA256 (rust/crates/notify-types-2.0.0.crate) = 5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d +SIZE (rust/crates/notify-types-2.0.0.crate) = 14495 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 +SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad +SIZE (rust/crates/once_cell_polyfill-1.70.1.crate) = 7510 +SHA256 (rust/crates/parking_lot-0.12.4.crate) = 70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13 +SIZE (rust/crates/parking_lot-0.12.4.crate) = 46779 +SHA256 (rust/crates/parking_lot_core-0.9.11.crate) = bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5 +SIZE (rust/crates/parking_lot_core-0.9.11.crate) = 34773 +SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de +SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 +SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d +SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 +SHA256 (rust/crates/redox_syscall-0.5.17.crate) = 5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77 +SIZE (rust/crates/redox_syscall-0.5.17.crate) = 30002 +SHA256 (rust/crates/rustix-1.0.8.crate) = 11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8 +SIZE (rust/crates/rustix-1.0.8.crate) = 416688 +SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f +SIZE (rust/crates/ryu-1.0.20.crate) = 48738 +SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 +SIZE (rust/crates/same-file-1.0.6.crate) = 10183 +SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 +SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 +SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6 +SIZE (rust/crates/serde-1.0.219.crate) = 78983 +SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00 +SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 +SHA256 (rust/crates/serde_json-1.0.143.crate) = d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a +SIZE (rust/crates/serde_json-1.0.143.crate) = 155342 +SHA256 (rust/crates/serde_spanned-1.0.0.crate) = 40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83 +SIZE (rust/crates/serde_spanned-1.0.0.crate) = 10956 +SHA256 (rust/crates/signal-hook-0.3.18.crate) = d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2 +SIZE (rust/crates/signal-hook-0.3.18.crate) = 50862 +SHA256 (rust/crates/signal-hook-mio-0.2.4.crate) = 34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd +SIZE (rust/crates/signal-hook-mio-0.2.4.crate) = 9314 +SHA256 (rust/crates/signal-hook-registry-1.4.6.crate) = b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b +SIZE (rust/crates/signal-hook-registry-1.4.6.crate) = 19277 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 +SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f +SIZE (rust/crates/strsim-0.11.1.crate) = 14266 +SHA256 (rust/crates/syn-2.0.106.crate) = ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6 +SIZE (rust/crates/syn-2.0.106.crate) = 301514 +SHA256 (rust/crates/tempfile-3.21.0.crate) = 15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e +SIZE (rust/crates/tempfile-3.21.0.crate) = 42581 +SHA256 (rust/crates/toml-0.9.5.crate) = 75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8 +SIZE (rust/crates/toml-0.9.5.crate) = 56833 +SHA256 (rust/crates/toml_datetime-0.7.0.crate) = bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3 +SIZE (rust/crates/toml_datetime-0.7.0.crate) = 18108 +SHA256 (rust/crates/toml_parser-1.0.2.crate) = b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10 +SIZE (rust/crates/toml_parser-1.0.2.crate) = 35241 +SHA256 (rust/crates/toml_writer-1.0.2.crate) = fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64 +SIZE (rust/crates/toml_writer-1.0.2.crate) = 16988 +SHA256 (rust/crates/unicode-ident-1.0.18.crate) = 5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512 +SIZE (rust/crates/unicode-ident-1.0.18.crate) = 47743 +SHA256 (rust/crates/utf8parse-0.2.2.crate) = 06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821 +SIZE (rust/crates/utf8parse-0.2.2.crate) = 13499 +SHA256 (rust/crates/walkdir-2.5.0.crate) = 29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b +SIZE (rust/crates/walkdir-2.5.0.crate) = 23951 +SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b +SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 +SHA256 (rust/crates/wasi-0.14.2+wasi-0.2.4.crate) = 9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3 +SIZE (rust/crates/wasi-0.14.2+wasi-0.2.4.crate) = 140921 +SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 +SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 +SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 +SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 +SHA256 (rust/crates/winapi-util-0.1.10.crate) = 0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22 +SIZE (rust/crates/winapi-util-0.1.10.crate) = 13370 +SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f +SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 +SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a +SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 +SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b +SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 +SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 +SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 +SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 +SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 +SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 +SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c +SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 +SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b +SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 +SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 +SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 +SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 +SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 +SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 +SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 +SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d +SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 +SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 +SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba +SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d +SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 +SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec +SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 +SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 +SHA256 (rust/crates/winnow-0.7.12.crate) = f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95 +SIZE (rust/crates/winnow-0.7.12.crate) = 174403 +SHA256 (rust/crates/wit-bindgen-rt-0.39.0.crate) = 6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1 +SIZE (rust/crates/wit-bindgen-rt-0.39.0.crate) = 12241 +SHA256 (rust-lang-rustlings-v6.5.0_GH0.tar.gz) = d3b394c77145b272bba4f4b94435dd6b1a6accb9e2531238391c5fa42ccb348d +SIZE (rust-lang-rustlings-v6.5.0_GH0.tar.gz) = 153369 diff --git a/misc/rustlings/pkg-descr b/misc/rustlings/pkg-descr new file mode 100644 index 000000000000..33f537765f7a --- /dev/null +++ b/misc/rustlings/pkg-descr @@ -0,0 +1,4 @@ +Rustlings is an interactive corpus of bite-sized exercises to get you used to +reading and writing Rust code. Written and maintained by the Rust community, +it is a companion app to the official Rust book +(https://doc.rust-lang.org/book). diff --git a/misc/rustlings/pkg-message b/misc/rustlings/pkg-message new file mode 100644 index 000000000000..611788c448b9 --- /dev/null +++ b/misc/rustlings/pkg-message @@ -0,0 +1,22 @@ +[ +{ + type: install, + message: <<EOM +=========================================================== + + Before running `rustlings` for the first time, you need to initialize the + directory structure and prepare the exercises. To do that, run: + + $ cd /a/good/plate/for/exercises + $ rustlings init + + $ cd rustlings + $ rustlings + + For more information, visit the Rustlings website: + https://rustlings.rust-lang.org/ + +=========================================================== +EOM +} +] diff --git a/net-im/openfire/distinfo b/net-im/openfire/distinfo index c8a92f8f61e9..49fc92b76cc9 100644 --- a/net-im/openfire/distinfo +++ b/net-im/openfire/distinfo @@ -1,5 +1,5 @@ TIMESTAMP = 1759301369 SHA256 (igniterealtime-Openfire-v5.0.2_GH0.tar.gz) = 54bafb098995414d17ef6378f35d46928ae54f727cc82195061a7b5957b9cee4 SIZE (igniterealtime-Openfire-v5.0.2_GH0.tar.gz) = 9750506 -SHA256 (openfire-5.0.2-deps.tar.gz) = 54bafb098995414d17ef6378f35d46928ae54f727cc82195061a7b5957b9cee4 +SHA256 (openfire-5.0.2-deps.tar.gz) = 9234eb87bfa61bfb131cbc1a5442cc9dbf8d6ce7282e4ddea9e337931f888e9b SIZE (openfire-5.0.2-deps.tar.gz) = 230509278 diff --git a/net-im/snac/Makefile b/net-im/snac/Makefile index ddfcebc9b088..01ed5ecc0bb4 100644 --- a/net-im/snac/Makefile +++ b/net-im/snac/Makefile @@ -1,5 +1,5 @@ PORTNAME= snac -DISTVERSION= 2.81 +DISTVERSION= 2.83 CATEGORIES= net-im www MASTER_SITES= https://codeberg.org/grunfink/snac2/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ diff --git a/net-im/snac/distinfo b/net-im/snac/distinfo index 415a033e9a0d..9c71592469c7 100644 --- a/net-im/snac/distinfo +++ b/net-im/snac/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754057014 -SHA256 (snac-2.81.tar.gz) = 49a394b90d9988d62b0e4311ad507f6d160a86afc9d44293b5ac7abdd3529122 -SIZE (snac-2.81.tar.gz) = 282870 +TIMESTAMP = 1759763139 +SHA256 (snac-2.83.tar.gz) = 9d3b3732c500f35c94581be7dbb0b6fd359d4e0def3e1f8ef3b0442b19869c5b +SIZE (snac-2.83.tar.gz) = 295898 diff --git a/net-im/telegram-desktop/Makefile b/net-im/telegram-desktop/Makefile index 98a17466bc50..f827fded2c41 100644 --- a/net-im/telegram-desktop/Makefile +++ b/net-im/telegram-desktop/Makefile @@ -1,6 +1,5 @@ PORTNAME= telegram-desktop -DISTVERSION= 6.1.3 -PORTREVISION= 3 +DISTVERSION= 6.1.4 CATEGORIES= net-im MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/v${DISTVERSION}/ DISTNAME= tdesktop-${DISTVERSION}-full @@ -92,7 +91,7 @@ SYSTEM_FONTS_DESC= Use system fonts instead of bundled patched ones ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio -SYSTEM_FONTS_CMAKE_BOOL_OFF= DESKTOP_APP_USE_PACKAGED_FONTS +SYSTEM_FONTS_CMAKE_BOOL= DESKTOP_APP_USE_PACKAGED_FONTS WAYLAND_USE= qt=wayland X11_CMAKE_BOOL_OFF= DESKTOP_APP_DISABLE_X11_INTEGRATION X11_USES= xorg diff --git a/net-im/telegram-desktop/distinfo b/net-im/telegram-desktop/distinfo index 176f9eef6a4b..9703e81c52a1 100644 --- a/net-im/telegram-desktop/distinfo +++ b/net-im/telegram-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757286512 -SHA256 (tdesktop-6.1.3-full.tar.gz) = 1c6a531abf106d5f4b6d9179fc802f93cb8ab62630cc07e73d64688780125869 -SIZE (tdesktop-6.1.3-full.tar.gz) = 75264355 +TIMESTAMP = 1759777765 +SHA256 (tdesktop-6.1.4-full.tar.gz) = 0dc2a36eea9e5f71892530b5c8218274b16999ba6050a396a9dc4dc052033f83 +SIZE (tdesktop-6.1.4-full.tar.gz) = 75288745 diff --git a/net-im/telegram-desktop/files/patch-Telegram_lib__webview_webview_platform_linux_webview__linux__webkitgtk__library.cpp b/net-im/telegram-desktop/files/patch-Telegram_lib__webview_webview_platform_linux_webview__linux__webkitgtk__library.cpp index 9b56c747b4ee..f8ac064f626b 100644 --- a/net-im/telegram-desktop/files/patch-Telegram_lib__webview_webview_platform_linux_webview__linux__webkitgtk__library.cpp +++ b/net-im/telegram-desktop/files/patch-Telegram_lib__webview_webview_platform_linux_webview__linux__webkitgtk__library.cpp @@ -1,9 +1,9 @@ ---- Telegram/lib_webview/webview/platform/linux/webview_linux_webkitgtk_library.cpp.orig 2024-06-07 13:31:52 UTC +--- Telegram/lib_webview/webview/platform/linux/webview_linux_webkitgtk_library.cpp.orig 2025-10-03 07:06:44 UTC +++ Telegram/lib_webview/webview/platform/linux/webview_linux_webkitgtk_library.cpp -@@ -12,10 +12,10 @@ namespace Webview::WebKitGTK::Library { +@@ -12,10 +12,10 @@ ResolveResult Resolve(const Platform &platform) { - ResolveResult Resolve(bool wayland) { - const auto lib = (wayland + ResolveResult Resolve(const Platform &platform) { + const auto lib = (platform != Platform::X11 - ? base::Platform::LoadLibrary("libwebkitgtk-6.0.so.4", RTLD_NODELETE) + ? base::Platform::LoadLibrary("libwebkitgtk-6.0.so", RTLD_NODELETE) : nullptr) diff --git a/net-p2p/jackett/Makefile b/net-p2p/jackett/Makefile index 23259180f5cc..a2a01c3d251d 100644 --- a/net-p2p/jackett/Makefile +++ b/net-p2p/jackett/Makefile @@ -1,6 +1,6 @@ PORTNAME= jackett DISTVERSIONPREFIX= v -DISTVERSION= 0.23.59 +DISTVERSION= 0.24.72 CATEGORIES= net-p2p MAINTAINER= tremere@cainites.net @@ -36,8 +36,6 @@ DOTNET_CMD= ${SETENV} HOME=${WRKDIR} ${LOCALBASE}/bin/dotnet post-patch: ${REINPLACE_CMD} "s/0.0.0/${DISTVERSION}/" \ ${WRKSRC}/src/Jackett.Common/Jackett.Common.csproj - ${REINPLACE_CMD} "s/net8.0/net9.0/g" \ - ${WRKSRC}/src/Jackett.Server/Jackett.Server.csproj do-build: cd ${WRKSRC}/src && \ diff --git a/net-p2p/jackett/Makefile.nuget b/net-p2p/jackett/Makefile.nuget index 29b578f69e01..d29d836ad360 100644 --- a/net-p2p/jackett/Makefile.nuget +++ b/net-p2p/jackett/Makefile.nuget @@ -32,7 +32,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.AspNetCore.Http:2.3.0 \ Microsoft.AspNetCore.HttpOverrides:2.3.0 \ Microsoft.AspNetCore.JsonPatch:2.3.0 \ - Microsoft.AspNetCore.JsonPatch:8.0.20 \ + Microsoft.AspNetCore.JsonPatch:9.0.9 \ Microsoft.AspNetCore.Localization:2.3.0 \ Microsoft.AspNetCore.Mvc.Abstractions:2.3.0 \ Microsoft.AspNetCore.Mvc.ApiExplorer:2.3.0 \ @@ -41,7 +41,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.AspNetCore.Mvc.DataAnnotations:2.3.0 \ Microsoft.AspNetCore.Mvc.Formatters.Json:2.3.0 \ Microsoft.AspNetCore.Mvc.Localization:2.3.0 \ - Microsoft.AspNetCore.Mvc.NewtonsoftJson:8.0.20 \ + Microsoft.AspNetCore.Mvc.NewtonsoftJson:9.0.9 \ Microsoft.AspNetCore.Mvc.Razor.Extensions:2.3.0 \ Microsoft.AspNetCore.Mvc.Razor:2.3.0 \ Microsoft.AspNetCore.Mvc.RazorPages:2.3.0 \ @@ -66,7 +66,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.AspNetCore.StaticFiles:2.3.0 \ Microsoft.AspNetCore.WebUtilities:2.3.0 \ Microsoft.AspNetCore:2.3.0 \ - Microsoft.Bcl.AsyncInterfaces:8.0.0 \ + Microsoft.Bcl.AsyncInterfaces:9.0.9 \ Microsoft.Bcl.TimeProvider:8.0.0 \ Microsoft.CodeAnalysis.Analyzers:1.1.0 \ Microsoft.CodeAnalysis.Common:2.8.2 \ @@ -78,6 +78,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.Extensions.Caching.Abstractions:8.0.0 \ Microsoft.Extensions.Caching.Memory:8.0.1 \ Microsoft.Extensions.Configuration.Abstractions:8.0.0 \ + Microsoft.Extensions.Configuration.Abstractions:9.0.9 \ Microsoft.Extensions.Configuration.Binder:8.0.2 \ Microsoft.Extensions.Configuration.CommandLine:8.0.0 \ Microsoft.Extensions.Configuration.EnvironmentVariables:8.0.0 \ @@ -85,6 +86,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.Extensions.Configuration.Json:8.0.1 \ Microsoft.Extensions.Configuration.UserSecrets:8.0.1 \ Microsoft.Extensions.Configuration:8.0.0 \ + Microsoft.Extensions.Configuration:9.0.9 \ Microsoft.Extensions.DependencyInjection.Abstractions:8.0.0 \ Microsoft.Extensions.DependencyInjection.Abstractions:8.0.2 \ Microsoft.Extensions.DependencyInjection:8.0.0 \ @@ -109,6 +111,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ Microsoft.Extensions.Options.ConfigurationExtensions:8.0.0 \ Microsoft.Extensions.Options:8.0.2 \ Microsoft.Extensions.Primitives:8.0.0 \ + Microsoft.Extensions.Primitives:9.0.9 \ Microsoft.Extensions.WebEncoders:8.0.11 \ Microsoft.Net.Http.Headers:2.3.0 \ Microsoft.NETCore.Platforms:1.1.0 \ @@ -138,7 +141,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ System.Diagnostics.Debug:4.3.0 \ System.Diagnostics.DiagnosticSource:7.0.2 \ System.Diagnostics.DiagnosticSource:8.0.1 \ - System.Diagnostics.EventLog:8.0.1 \ + System.Diagnostics.EventLog:9.0.9 \ System.Diagnostics.FileVersionInfo:4.3.0 \ System.Diagnostics.StackTrace:4.3.0 \ System.Diagnostics.Tools:4.3.0 \ @@ -150,7 +153,7 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ System.IO.FileSystem:4.3.0 \ System.IO.Pipelines:4.6.0 \ System.IO.Pipelines:5.0.1 \ - System.IO.Pipelines:8.0.0 \ + System.IO.Pipelines:9.0.9 \ System.IO:4.3.0 \ System.Linq.Expressions:4.3.0 \ System.Linq:4.3.0 \ @@ -173,16 +176,17 @@ NUGET_NUPKGS= AngleSharp.Xml:1.0.0 \ System.Security.Cryptography.Cng:5.0.0 \ System.Security.Cryptography.Encoding:4.3.0 \ System.Security.Cryptography.Primitives:4.3.0 \ - System.Security.Cryptography.ProtectedData:8.0.0 \ + System.Security.Cryptography.ProtectedData:9.0.9 \ System.Security.Cryptography.X509Certificates:4.3.0 \ System.Security.Cryptography.Xml:8.0.2 \ System.Security.Principal.Windows:5.0.0 \ - System.ServiceProcess.ServiceController:8.0.1 \ - System.Text.Encoding.CodePages:8.0.0 \ + System.ServiceProcess.ServiceController:9.0.9 \ + System.Text.Encoding.CodePages:9.0.9 \ System.Text.Encoding.Extensions:4.3.0 \ System.Text.Encoding:4.3.0 \ System.Text.Encodings.Web:8.0.0 \ - System.Text.Json:8.0.6 \ + System.Text.Encodings.Web:9.0.9 \ + System.Text.Json:9.0.9 \ System.Threading.Tasks.Extensions:4.5.4 \ System.Threading.Tasks.Extensions:4.6.0 \ System.Threading.Tasks.Parallel:4.3.0 \ diff --git a/net-p2p/jackett/distinfo b/net-p2p/jackett/distinfo index 370b8ea27faf..753278e05cb5 100644 --- a/net-p2p/jackett/distinfo +++ b/net-p2p/jackett/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1758694964 +TIMESTAMP = 1759658727 SHA256 (nuget/anglesharp.xml.1.0.0.nupkg) = 533c57587eaa1b6044007fd42e8b069149f646182150e82ec954cf625efcb293 SIZE (nuget/anglesharp.xml.1.0.0.nupkg) = 223916 SHA256 (nuget/anglesharp.1.3.0.nupkg) = c6af86d9ff450aa4ba3e32207c37598d54686b154c892c8e5c2ecab4cccca4f5 @@ -65,8 +65,8 @@ SHA256 (nuget/microsoft.aspnetcore.httpoverrides.2.3.0.nupkg) = c6acc57aa3a7be82 SIZE (nuget/microsoft.aspnetcore.httpoverrides.2.3.0.nupkg) = 46764 SHA256 (nuget/microsoft.aspnetcore.jsonpatch.2.3.0.nupkg) = 77a507078b166bb7334c80b8187c1d4213abbd5d89a473e6a139631b1c757677 SIZE (nuget/microsoft.aspnetcore.jsonpatch.2.3.0.nupkg) = 56781 -SHA256 (nuget/microsoft.aspnetcore.jsonpatch.8.0.20.nupkg) = 7c799d38fdedb1a82dadec6241fd521b5cf3ffbaff2ab292f1521566e4a1c421 -SIZE (nuget/microsoft.aspnetcore.jsonpatch.8.0.20.nupkg) = 146495 +SHA256 (nuget/microsoft.aspnetcore.jsonpatch.9.0.9.nupkg) = 3a7991be248aaa5ae6724c43f49c5eb3c70cc9f234a27eb340183e8f89088e6e +SIZE (nuget/microsoft.aspnetcore.jsonpatch.9.0.9.nupkg) = 142538 SHA256 (nuget/microsoft.aspnetcore.localization.2.3.0.nupkg) = e66c42a1361af0ab26ad332f2f17199e325df86dd0c6b53202b2dad618eb38a8 SIZE (nuget/microsoft.aspnetcore.localization.2.3.0.nupkg) = 48328 SHA256 (nuget/microsoft.aspnetcore.mvc.abstractions.2.3.0.nupkg) = 9f1b80fbb762f224f8142bb5d1e8a355182b6b0ed0610ae140f541c3de327583 @@ -83,8 +83,8 @@ SHA256 (nuget/microsoft.aspnetcore.mvc.formatters.json.2.3.0.nupkg) = 9083925a2b SIZE (nuget/microsoft.aspnetcore.mvc.formatters.json.2.3.0.nupkg) = 53459 SHA256 (nuget/microsoft.aspnetcore.mvc.localization.2.3.0.nupkg) = 9ad5fe66c3b4e4aba11c297b6daf5604fcf129b38183279c6114d6f21638ed4b SIZE (nuget/microsoft.aspnetcore.mvc.localization.2.3.0.nupkg) = 48688 -SHA256 (nuget/microsoft.aspnetcore.mvc.newtonsoftjson.8.0.20.nupkg) = 06e851f1129e4a69decda781e8b7f08ed228f9b903ec70b8bea59a708da757a6 -SIZE (nuget/microsoft.aspnetcore.mvc.newtonsoftjson.8.0.20.nupkg) = 82149 +SHA256 (nuget/microsoft.aspnetcore.mvc.newtonsoftjson.9.0.9.nupkg) = 2c9024f8ab8bae5203a5a674a6d5715759734b09bd94b1257497884085fa411f +SIZE (nuget/microsoft.aspnetcore.mvc.newtonsoftjson.9.0.9.nupkg) = 80011 SHA256 (nuget/microsoft.aspnetcore.mvc.razor.extensions.2.3.0.nupkg) = ee371a0b9cb725c57708c76f848c046107b268fc2c2b266219d202233a0c7a1c SIZE (nuget/microsoft.aspnetcore.mvc.razor.extensions.2.3.0.nupkg) = 104833 SHA256 (nuget/microsoft.aspnetcore.mvc.razor.2.3.0.nupkg) = 562c8d5ad58ce8e89a534cc3737eb6b956fd25004a2e0e9bc6d7bceaec8a61b8 @@ -133,8 +133,8 @@ SHA256 (nuget/microsoft.aspnetcore.webutilities.2.3.0.nupkg) = a093043f8e10f4296 SIZE (nuget/microsoft.aspnetcore.webutilities.2.3.0.nupkg) = 63465 SHA256 (nuget/microsoft.aspnetcore.2.3.0.nupkg) = 5dac1e814db92163b5bb7ec0827f4c3cf51f574cffd663d579a42459dcd080de SIZE (nuget/microsoft.aspnetcore.2.3.0.nupkg) = 41992 -SHA256 (nuget/microsoft.bcl.asyncinterfaces.8.0.0.nupkg) = f5a5a68b03092ab2abf68843d4a4aea25dfbcbe8dd0f13c625cb779b6fc1927c -SIZE (nuget/microsoft.bcl.asyncinterfaces.8.0.0.nupkg) = 99740 +SHA256 (nuget/microsoft.bcl.asyncinterfaces.9.0.9.nupkg) = 2676345c6b99d15c46410bc28a275604a0139943489dc3c1ae3a71db9ad68cbf +SIZE (nuget/microsoft.bcl.asyncinterfaces.9.0.9.nupkg) = 98173 SHA256 (nuget/microsoft.bcl.timeprovider.8.0.0.nupkg) = 7c1bc34970d22183334daf3e03ef7c2aa8445d83fa135ef02e8f943709727f85 SIZE (nuget/microsoft.bcl.timeprovider.8.0.0.nupkg) = 105522 SHA256 (nuget/microsoft.csharp.4.7.0.nupkg) = 127927bf646c145ebc9443ddadfe4cf81a55d641e82d3551029294c2e93fa63d @@ -157,6 +157,8 @@ SHA256 (nuget/microsoft.extensions.caching.memory.8.0.1.nupkg) = e50d2fcc7a3766f SIZE (nuget/microsoft.extensions.caching.memory.8.0.1.nupkg) = 197330 SHA256 (nuget/microsoft.extensions.configuration.abstractions.8.0.0.nupkg) = e1e0690e47fb309a334d99cec10bf071f81129019c3577b42bf905fa1e5197ca SIZE (nuget/microsoft.extensions.configuration.abstractions.8.0.0.nupkg) = 149230 +SHA256 (nuget/microsoft.extensions.configuration.abstractions.9.0.9.nupkg) = 4268be7edbb5eeaa9554727e4a02af2eb5c21c90eb3f98786604df9600d68337 +SIZE (nuget/microsoft.extensions.configuration.abstractions.9.0.9.nupkg) = 127755 SHA256 (nuget/microsoft.extensions.configuration.binder.8.0.2.nupkg) = 68607456ea02df861a74012aaf0a1a5cb739aa56b9e69b300d5db12d2991ed21 SIZE (nuget/microsoft.extensions.configuration.binder.8.0.2.nupkg) = 389312 SHA256 (nuget/microsoft.extensions.configuration.commandline.8.0.0.nupkg) = 7e63c2fe8f12fb0793b50256ca4a671879ba00a554db5c5813f09a1d853bce08 @@ -171,6 +173,8 @@ SHA256 (nuget/microsoft.extensions.configuration.usersecrets.8.0.1.nupkg) = c86b SIZE (nuget/microsoft.extensions.configuration.usersecrets.8.0.1.nupkg) = 141387 SHA256 (nuget/microsoft.extensions.configuration.8.0.0.nupkg) = f413ec012971ad5f229663028dd6f74e251c9b9bc56719019c023f7cd0521320 SIZE (nuget/microsoft.extensions.configuration.8.0.0.nupkg) = 191129 +SHA256 (nuget/microsoft.extensions.configuration.9.0.9.nupkg) = d3fe15befd9da973f3c5ab2c6c2e33aed15aa8d3bd490487e3b5f14a42fac91a +SIZE (nuget/microsoft.extensions.configuration.9.0.9.nupkg) = 160169 SHA256 (nuget/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg) = ef92b31065a36d110b7332690a226e6fe96d35430c6f3e40ff529053ee5d80ff SIZE (nuget/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg) = 276886 SHA256 (nuget/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg) = 51f2df1100245f10da54f0bb7e813f277155117777d4fbbab902214e27372606 @@ -219,6 +223,8 @@ SHA256 (nuget/microsoft.extensions.options.8.0.2.nupkg) = 02372575d75d76d37ff5a1 SIZE (nuget/microsoft.extensions.options.8.0.2.nupkg) = 494417 SHA256 (nuget/microsoft.extensions.primitives.8.0.0.nupkg) = 154f2a8f70d1f1b0dd73573e59e199c7f3c265eaaa9ddc1e64cf5ea5ca578d2a SIZE (nuget/microsoft.extensions.primitives.8.0.0.nupkg) = 209772 +SHA256 (nuget/microsoft.extensions.primitives.9.0.9.nupkg) = 6c2778063e6e3f8913d210afb342d94bc215a84b69388ca14a26b2e628c96c10 +SIZE (nuget/microsoft.extensions.primitives.9.0.9.nupkg) = 176250 SHA256 (nuget/microsoft.extensions.webencoders.8.0.11.nupkg) = cdc6d6c434244246557948ceb2ca9e275b773bbd12964ec55a7ea3ffc2317e01 SIZE (nuget/microsoft.extensions.webencoders.8.0.11.nupkg) = 87480 SHA256 (nuget/microsoft.netcore.platforms.1.1.0.nupkg) = 15e338d24b5c39b4099389cc612841eb51ff13c07bb4829f97d39b27420e7023 @@ -277,8 +283,8 @@ SHA256 (nuget/system.diagnostics.diagnosticsource.7.0.2.nupkg) = f146b07bb996390 SIZE (nuget/system.diagnostics.diagnosticsource.7.0.2.nupkg) = 398733 SHA256 (nuget/system.diagnostics.diagnosticsource.8.0.1.nupkg) = ce6c078dc26029c6e49307a91f4dfc421727b16309707cacf8f11b1460b4260a SIZE (nuget/system.diagnostics.diagnosticsource.8.0.1.nupkg) = 517990 -SHA256 (nuget/system.diagnostics.eventlog.8.0.1.nupkg) = cefa9def6a7081c1a86b59c7dd94f50b498ff64e77bc52c9ebdaf9302435b1a0 -SIZE (nuget/system.diagnostics.eventlog.8.0.1.nupkg) = 538290 +SHA256 (nuget/system.diagnostics.eventlog.9.0.9.nupkg) = 55e27c6964cddefeaab24790506035cf8273872851e538b98cf4f472234cd2c4 +SIZE (nuget/system.diagnostics.eventlog.9.0.9.nupkg) = 400886 SHA256 (nuget/system.diagnostics.fileversioninfo.4.3.0.nupkg) = 272a8e7f9fe5b1434b32922a2bc5df7dc153c41eaf1d6cc6587b2c9a88e89024 SIZE (nuget/system.diagnostics.fileversioninfo.4.3.0.nupkg) = 138783 SHA256 (nuget/system.diagnostics.stacktrace.4.3.0.nupkg) = 4dfabb17ad4dd157ee8d5c88e40f4c66fc967b04391dea41d5fd54301324502b @@ -301,8 +307,8 @@ SHA256 (nuget/system.io.pipelines.4.6.0.nupkg) = 702b45990964d1314159b64b561fdcd SIZE (nuget/system.io.pipelines.4.6.0.nupkg) = 140958 SHA256 (nuget/system.io.pipelines.5.0.1.nupkg) = db34f9b818b2626fa32c8a09a6920a26db53b6970c34ac5decb8b44045636eff SIZE (nuget/system.io.pipelines.5.0.1.nupkg) = 193681 -SHA256 (nuget/system.io.pipelines.8.0.0.nupkg) = 2dda41d6ce2f433b0e3836b188ab2d2e4b39ed7f434c3e43e9c3f1f03135c301 -SIZE (nuget/system.io.pipelines.8.0.0.nupkg) = 267394 +SHA256 (nuget/system.io.pipelines.9.0.9.nupkg) = 6d132dd226f42b02b31d781e0176607a0a2ee5e5fc96c9bcd04bb7f1b1c1c41b +SIZE (nuget/system.io.pipelines.9.0.9.nupkg) = 223679 SHA256 (nuget/system.io.4.3.0.nupkg) = aeeca74077a414fe703eb0e257284d891217799fc8f4da632b9a54f873c38916 SIZE (nuget/system.io.4.3.0.nupkg) = 703652 SHA256 (nuget/system.linq.expressions.4.3.0.nupkg) = fb7a6f85963bae2a7c1c26df7542f38e50bd14f645a58a10c6191cb859b6c24f @@ -347,26 +353,28 @@ SHA256 (nuget/system.security.cryptography.encoding.4.3.0.nupkg) = 62e81ef3d37a3 SIZE (nuget/system.security.cryptography.encoding.4.3.0.nupkg) = 144382 SHA256 (nuget/system.security.cryptography.primitives.4.3.0.nupkg) = 7e7162ec1dd29d58f96be05b8179db8e718dbd6ac2114e87a7fc23b235b3df5f SIZE (nuget/system.security.cryptography.primitives.4.3.0.nupkg) = 81382 -SHA256 (nuget/system.security.cryptography.protecteddata.8.0.0.nupkg) = 7dbd296bdb10c4dfa6af4be75e0d4881bc78f4268ea92f860e44df58d6e852fb -SIZE (nuget/system.security.cryptography.protecteddata.8.0.0.nupkg) = 148572 +SHA256 (nuget/system.security.cryptography.protecteddata.9.0.9.nupkg) = bf9fa4ac5a818cc94f9c8f71708f46130e61e37a9ad7f964d4cb82efeb787967 +SIZE (nuget/system.security.cryptography.protecteddata.9.0.9.nupkg) = 127252 SHA256 (nuget/system.security.cryptography.x509certificates.4.3.0.nupkg) = 306dd5fe8c03876ef718250fb061ab68dc1a56973276ea65dc4b4f5e3e93546d SIZE (nuget/system.security.cryptography.x509certificates.4.3.0.nupkg) = 706727 SHA256 (nuget/system.security.cryptography.xml.8.0.2.nupkg) = f530a6572301e3e072fe2a54f2f7580ed4a7c35b6491e6e75d7551753efcfb6f SIZE (nuget/system.security.cryptography.xml.8.0.2.nupkg) = 465309 SHA256 (nuget/system.security.principal.windows.5.0.0.nupkg) = 081390c25f6f78592b28ada853c24514488a221fe9f9a24efaaf5373643ff3d6 SIZE (nuget/system.security.principal.windows.5.0.0.nupkg) = 535022 -SHA256 (nuget/system.serviceprocess.servicecontroller.8.0.1.nupkg) = d9c5d3ccd3b25ea2629c53f375527d1aeeaaac5b7271f8afbbb4470f304989cf -SIZE (nuget/system.serviceprocess.servicecontroller.8.0.1.nupkg) = 296621 -SHA256 (nuget/system.text.encoding.codepages.8.0.0.nupkg) = 7e308b41cd4f456d08c7921995d8345cabfe2750ea3d27eef698ccc8d069edd1 -SIZE (nuget/system.text.encoding.codepages.8.0.0.nupkg) = 4260927 +SHA256 (nuget/system.serviceprocess.servicecontroller.9.0.9.nupkg) = 9578a6aaa878bda6ad7b6caeb28fa4d5a0f73be4747669fde8e1516b311a99ae +SIZE (nuget/system.serviceprocess.servicecontroller.9.0.9.nupkg) = 228590 +SHA256 (nuget/system.text.encoding.codepages.9.0.9.nupkg) = 094418ab9e595533d276223b6d79bc4cd8058eeb1d8817d3d0995408ebb64946 +SIZE (nuget/system.text.encoding.codepages.9.0.9.nupkg) = 3219649 SHA256 (nuget/system.text.encoding.extensions.4.3.0.nupkg) = bee7c75e0f1000ac4796e8cf1c772bb46c00a859ac083e872a37c30221f20187 SIZE (nuget/system.text.encoding.extensions.4.3.0.nupkg) = 244195 SHA256 (nuget/system.text.encoding.4.3.0.nupkg) = 19cb475462d901afebaa404d86c0469ec89674acafe950ee6d8a4692e3a404b8 SIZE (nuget/system.text.encoding.4.3.0.nupkg) = 327281 SHA256 (nuget/system.text.encodings.web.8.0.0.nupkg) = 21442442457da68d4b0b442caab8a5ab03733ef9dcfb8795beafa10afabc7ef1 SIZE (nuget/system.text.encodings.web.8.0.0.nupkg) = 374440 -SHA256 (nuget/system.text.json.8.0.6.nupkg) = a83dd61778d03bdf932ee056c09873de228302b26a7118b2ec476b09086bb5eb -SIZE (nuget/system.text.json.8.0.6.nupkg) = 1989416 +SHA256 (nuget/system.text.encodings.web.9.0.9.nupkg) = 7ae62b2402a24c30a3fd17f5295588e88a298435fcdbcc794fd02cf6f01ff350 +SIZE (nuget/system.text.encodings.web.9.0.9.nupkg) = 293570 +SHA256 (nuget/system.text.json.9.0.9.nupkg) = 23e18281765952d800b5af7804806acbbd879d92777a0ccd04e4f19d5cb652bf +SIZE (nuget/system.text.json.9.0.9.nupkg) = 1877447 SHA256 (nuget/system.threading.tasks.extensions.4.5.4.nupkg) = a304a963cc0796c5179f9c6b7d8022bbce3b2fa7c029eb6196f631f7b462d678 SIZE (nuget/system.threading.tasks.extensions.4.5.4.nupkg) = 89582 SHA256 (nuget/system.threading.tasks.extensions.4.6.0.nupkg) = 3b0201d1da5c767c9fbd35148fa8107ca5b65c5da95ac421ca4c0cd473421ea6 @@ -393,5 +401,5 @@ SHA256 (nuget/system.xml.xmldocument.4.3.0.nupkg) = 91bb95e18eeb54991f329d8a8288 SIZE (nuget/system.xml.xmldocument.4.3.0.nupkg) = 285212 SHA256 (nuget/yamldotnet.16.3.0.nupkg) = e068bcc1243c46c8bfdfe2f27a026bfff03cde7c67d9f37c2cdd70bd24a9dfd4 SIZE (nuget/yamldotnet.16.3.0.nupkg) = 776880 -SHA256 (Jackett-Jackett-v0.23.59_GH0.tar.gz) = 0574b5b95ff1937da3f45e79cbc2bb730d21063896c2f015171597e018f2a36c -SIZE (Jackett-Jackett-v0.23.59_GH0.tar.gz) = 3643571 +SHA256 (Jackett-Jackett-v0.24.72_GH0.tar.gz) = 4505944c206fd4b63b077a4875e79d6b990b64248bea094f89ae1fe4532f32a2 +SIZE (Jackett-Jackett-v0.24.72_GH0.tar.gz) = 3646047 diff --git a/net-p2p/jackett/pkg-plist b/net-p2p/jackett/pkg-plist index c410a8bca7e2..495e6cb6085d 100644 --- a/net-p2p/jackett/pkg-plist +++ b/net-p2p/jackett/pkg-plist @@ -72,8 +72,6 @@ %%DATADIR%%/Definitions/aidoruonline.yml %%DATADIR%%/Definitions/aither-api.yml %%DATADIR%%/Definitions/amigosshare.yml -%%DATADIR%%/Definitions/anime-time.yml -%%DATADIR%%/Definitions/anime-timel.yml %%DATADIR%%/Definitions/animelayer.yml %%DATADIR%%/Definitions/animelovers-api.yml %%DATADIR%%/Definitions/animetorrentsro.yml @@ -180,6 +178,7 @@ %%DATADIR%%/Definitions/empornium.yml %%DATADIR%%/Definitions/empornium2fa.yml %%DATADIR%%/Definitions/emuwarez.yml +%%DATADIR%%/Definitions/esharenet.yml %%DATADIR%%/Definitions/estone.yml %%DATADIR%%/Definitions/ex-torrenty.yml %%DATADIR%%/Definitions/exitorrent-org.yml @@ -271,7 +270,6 @@ %%DATADIR%%/Definitions/internetarchive.yml %%DATADIR%%/Definitions/isohunt2.yml %%DATADIR%%/Definitions/itatorrents.yml -%%DATADIR%%/Definitions/itorrent.yml %%DATADIR%%/Definitions/jme-reunit3d-api.yml %%DATADIR%%/Definitions/joyhd.yml %%DATADIR%%/Definitions/jpopsuki.yml @@ -347,6 +345,7 @@ %%DATADIR%%/Definitions/newstudiol.yml %%DATADIR%%/Definitions/nicept.yml %%DATADIR%%/Definitions/nipponsei.yml +%%DATADIR%%/Definitions/nirvana.yml %%DATADIR%%/Definitions/noname-club.yml %%DATADIR%%/Definitions/noname-clubl.yml %%DATADIR%%/Definitions/nordicquality.yml @@ -383,7 +382,6 @@ %%DATADIR%%/Definitions/pornolab.yml %%DATADIR%%/Definitions/pornotorrent.yml %%DATADIR%%/Definitions/pornrips.yml -%%DATADIR%%/Definitions/pornxlab.yml %%DATADIR%%/Definitions/portugas-api.yml %%DATADIR%%/Definitions/postman.yml %%DATADIR%%/Definitions/postman-api.yml diff --git a/net/redpanda-connect/Makefile b/net/redpanda-connect/Makefile index bf8ce201e519..3ce393dca89b 100644 --- a/net/redpanda-connect/Makefile +++ b/net/redpanda-connect/Makefile @@ -1,6 +1,6 @@ PORTNAME= connect DISTVERSIONPREFIX= v -DISTVERSION= 4.64.0 +DISTVERSION= 4.66.1 CATEGORIES= net PKGNAMEPREFIX= redpanda- @@ -45,6 +45,10 @@ EXTRA_PATCHES= ${FILESDIR}/extra-patch-public_components_all_package.go .include <bsd.port.pre.mk> +post-patch: + @${CP} ${WRKSRC}/vendor/github.com/AthenZ/athenz/libs/go/sia/util/os_util_linux.go \ + ${WRKSRC}/vendor/github.com/AthenZ/athenz/libs/go/sia/util/os_util_freebsd.go + post-install: @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${FILESDIR}/config.yaml ${STAGEDIR}${ETCDIR}/config.yaml.sample diff --git a/net/redpanda-connect/distinfo b/net/redpanda-connect/distinfo index 783c714fe080..17dfea732433 100644 --- a/net/redpanda-connect/distinfo +++ b/net/redpanda-connect/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1758379887 -SHA256 (go/net_redpanda-connect/connect-v4.64.0/v4.64.0.mod) = f9049bd61732599d3c0441e864ee335ea8a12bfdf2dd870aaba0f3849f14a788 -SIZE (go/net_redpanda-connect/connect-v4.64.0/v4.64.0.mod) = 24593 -SHA256 (go/net_redpanda-connect/connect-v4.64.0/v4.64.0.zip) = 46f0047a31dfa9d819ea26bd8a42c6c6156c395364c6604198098f6b429b259d -SIZE (go/net_redpanda-connect/connect-v4.64.0/v4.64.0.zip) = 2861513 +TIMESTAMP = 1759770855 +SHA256 (go/net_redpanda-connect/connect-v4.66.1/v4.66.1.mod) = 2c679f01737fff938ced0cdfc1e35df7207f0309d8738e990ec90ba7d7105ded +SIZE (go/net_redpanda-connect/connect-v4.66.1/v4.66.1.mod) = 25201 +SHA256 (go/net_redpanda-connect/connect-v4.66.1/v4.66.1.zip) = f6b436391c0c66a8ff66bd6727a6809b289be7941cc78cb02119cc884e2808d5 +SIZE (go/net_redpanda-connect/connect-v4.66.1/v4.66.1.zip) = 2937551 diff --git a/net/redpanda-connect/files/extra-patch-public_components_all_package.go b/net/redpanda-connect/files/extra-patch-public_components_all_package.go index 0e489a4c3db2..3a8bcb14165f 100644 --- a/net/redpanda-connect/files/extra-patch-public_components_all_package.go +++ b/net/redpanda-connect/files/extra-patch-public_components_all_package.go @@ -1,6 +1,6 @@ --- public/components/all/package.go.orig +++ public/components/all/package.go -@@ -15,16 +15,4 @@ +@@ -15,18 +15,4 @@ import ( // Import all community components. _ "github.com/redpanda-data/connect/v4/public/components/community" @@ -11,9 +11,11 @@ - _ "github.com/redpanda-data/connect/v4/public/components/google" - _ "github.com/redpanda-data/connect/v4/public/components/kafka/enterprise" - _ "github.com/redpanda-data/connect/v4/public/components/mongodb/enterprise" +- _ "github.com/redpanda-data/connect/v4/public/components/mssqlserver" - _ "github.com/redpanda-data/connect/v4/public/components/mysql" - _ "github.com/redpanda-data/connect/v4/public/components/postgresql" - _ "github.com/redpanda-data/connect/v4/public/components/slack" - _ "github.com/redpanda-data/connect/v4/public/components/snowflake" - _ "github.com/redpanda-data/connect/v4/public/components/splunk" +- _ "github.com/redpanda-data/connect/v4/public/components/tigerbeetle" ) diff --git a/net/routinator/Makefile b/net/routinator/Makefile index 5ed8506e2482..5196926fc3bb 100644 --- a/net/routinator/Makefile +++ b/net/routinator/Makefile @@ -1,7 +1,6 @@ PORTNAME= routinator DISTVERSIONPREFIX= v -DISTVERSION= 0.14.2 -PORTREVISION= 5 +DISTVERSION= 0.15.0 CATEGORIES= net MAINTAINER= jaap@NLnetLabs.nl diff --git a/net/routinator/Makefile.crates b/net/routinator/Makefile.crates index df626466cd6a..ac7954c082cf 100644 --- a/net/routinator/Makefile.crates +++ b/net/routinator/Makefile.crates @@ -1,51 +1,52 @@ CARGO_CRATES= addr2line-0.24.2 \ - adler2-2.0.0 \ - android-tzdata-0.1.1 \ + adler2-2.0.1 \ android_system_properties-0.1.5 \ - anstream-0.6.18 \ - anstyle-1.0.10 \ - anstyle-parse-0.2.6 \ - anstyle-query-1.1.2 \ - anstyle-wincon-3.0.7 \ - arbitrary-1.4.1 \ - async-compression-0.4.18 \ - autocfg-1.4.0 \ - backtrace-0.3.74 \ + anstream-0.6.20 \ + anstyle-1.0.11 \ + anstyle-parse-0.2.7 \ + anstyle-query-1.1.4 \ + anstyle-wincon-3.0.10 \ + arbitrary-1.4.2 \ + arc-swap-1.7.1 \ + async-compression-0.4.30 \ + atomic-waker-1.1.2 \ + autocfg-1.5.0 \ + backtrace-0.3.75 \ base64-0.22.1 \ - bcder-0.7.5 \ - bitflags-2.8.0 \ - bumpalo-3.16.0 \ - byteorder-1.5.0 \ - bytes-1.9.0 \ - cc-1.2.10 \ - cfg-if-1.0.0 \ + bcder-0.7.6 \ + bitflags-2.9.4 \ + bumpalo-3.19.0 \ + bytes-1.10.1 \ + cc-1.2.37 \ + cfg-if-1.0.3 \ cfg_aliases-0.2.1 \ - chrono-0.4.39 \ - clap-4.5.27 \ - clap_builder-4.5.27 \ - clap_derive-4.5.24 \ - clap_lex-0.7.4 \ - colorchoice-1.0.3 \ + chrono-0.4.42 \ + clap-4.5.47 \ + clap_builder-4.5.47 \ + clap_derive-4.5.47 \ + clap_lex-0.7.5 \ + colorchoice-1.0.4 \ + compression-codecs-0.4.30 \ + compression-core-0.4.29 \ core-foundation-0.9.4 \ core-foundation-sys-0.8.7 \ - crc32fast-1.4.2 \ + crc32fast-1.5.0 \ crossbeam-queue-0.3.12 \ crossbeam-utils-0.8.21 \ - deranged-0.3.11 \ - derive_arbitrary-1.4.1 \ + deranged-0.5.3 \ + derive_arbitrary-1.4.2 \ dirs-6.0.0 \ dirs-sys-0.5.0 \ displaydoc-0.2.5 \ - either-1.13.0 \ - equivalent-1.0.1 \ - errno-0.3.10 \ - error-chain-0.12.4 \ + equivalent-1.0.2 \ + errno-0.3.14 \ fastrand-2.3.0 \ - flate2-1.0.35 \ + find-msvc-tools-0.1.1 \ + flate2-1.1.2 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ - form_urlencoded-1.2.1 \ + form_urlencoded-1.2.2 \ futures-0.3.31 \ futures-channel-0.3.31 \ futures-core-0.3.31 \ @@ -55,185 +56,202 @@ CARGO_CRATES= addr2line-0.24.2 \ futures-sink-0.3.31 \ futures-task-0.3.31 \ futures-util-0.3.31 \ - getrandom-0.2.15 \ + getrandom-0.2.16 \ + getrandom-0.3.3 \ gimli-0.31.1 \ - hashbrown-0.15.2 \ + hashbrown-0.15.5 \ heck-0.5.0 \ - hostname-0.3.1 \ - http-1.2.0 \ + hostname-0.4.1 \ + http-1.3.1 \ http-body-1.0.1 \ - http-body-util-0.1.2 \ - httparse-1.9.5 \ + http-body-util-0.1.3 \ + httparse-1.10.1 \ httpdate-1.0.3 \ - hyper-1.5.2 \ - hyper-rustls-0.27.5 \ + hyper-1.7.0 \ + hyper-rustls-0.27.7 \ hyper-tls-0.6.0 \ - hyper-util-0.1.10 \ - iana-time-zone-0.1.61 \ + hyper-util-0.1.17 \ + iana-time-zone-0.1.64 \ iana-time-zone-haiku-0.1.2 \ - icu_collections-1.5.0 \ - icu_locid-1.5.0 \ - icu_locid_transform-1.5.0 \ - icu_locid_transform_data-1.5.0 \ - icu_normalizer-1.5.0 \ - icu_normalizer_data-1.5.0 \ - icu_properties-1.5.1 \ - icu_properties_data-1.5.0 \ - icu_provider-1.5.0 \ - icu_provider_macros-1.5.0 \ - idna-1.0.3 \ - idna_adapter-1.2.0 \ - indexmap-2.7.1 \ + icu_collections-2.0.0 \ + icu_locale_core-2.0.0 \ + icu_normalizer-2.0.0 \ + icu_normalizer_data-2.0.0 \ + icu_properties-2.0.1 \ + icu_properties_data-2.0.1 \ + icu_provider-2.0.0 \ + idna-1.1.0 \ + idna_adapter-1.2.1 \ + indexmap-2.11.3 \ + io-uring-0.7.10 \ ipnet-2.11.0 \ + iri-string-0.7.8 \ is_terminal_polyfill-1.70.1 \ - itoa-1.0.14 \ - js-sys-0.3.77 \ - libc-0.2.169 \ - libredox-0.1.3 \ - linux-raw-sys-0.4.15 \ + itoa-1.0.15 \ + js-sys-0.3.80 \ + libc-0.2.175 \ + libredox-0.1.10 \ + linux-raw-sys-0.11.0 \ listenfd-1.0.2 \ - litemap-0.7.4 \ - log-0.4.25 \ - match_cfg-0.1.0 \ - memchr-2.7.4 \ + litemap-0.8.0 \ + log-0.4.28 \ + lru-slab-0.1.2 \ + memchr-2.7.5 \ memoffset-0.9.1 \ - mime-0.3.17 \ - miniz_oxide-0.8.3 \ - mio-1.0.3 \ - native-tls-0.2.12 \ - nix-0.27.1 \ + miniz_oxide-0.8.9 \ + mio-1.0.4 \ + native-tls-0.2.14 \ + nix-0.30.1 \ num-conv-0.1.0 \ num-traits-0.2.19 \ num_threads-0.1.7 \ object-0.36.7 \ - once_cell-1.20.2 \ - openssl-0.10.68 \ + once_cell-1.21.3 \ + once_cell_polyfill-1.70.1 \ + openssl-0.10.73 \ openssl-macros-0.1.1 \ - openssl-probe-0.1.5 \ - openssl-sys-0.9.104 \ + openssl-probe-0.1.6 \ + openssl-sys-0.9.109 \ option-ext-0.2.0 \ - percent-encoding-2.3.1 \ + percent-encoding-2.3.2 \ pin-project-lite-0.2.16 \ pin-utils-0.1.0 \ - pkg-config-0.3.31 \ + pkg-config-0.3.32 \ + potential_utf-0.1.3 \ powerfmt-0.2.0 \ - ppv-lite86-0.2.20 \ - proc-macro2-1.0.93 \ - quick-xml-0.31.0 \ - quinn-0.11.6 \ - quinn-proto-0.11.9 \ - quinn-udp-0.5.9 \ - quote-1.0.38 \ - rand-0.8.5 \ - rand_chacha-0.3.1 \ - rand_core-0.6.4 \ - redox_users-0.5.0 \ - reqwest-0.12.12 \ - ring-0.17.8 \ - rpki-0.18.5 \ - rustc-demangle-0.1.24 \ - rustc-hash-2.1.0 \ - rustix-0.38.44 \ - rustls-0.23.21 \ + ppv-lite86-0.2.21 \ + proc-macro2-1.0.101 \ + quick-xml-0.38.3 \ + quinn-0.11.9 \ + quinn-proto-0.11.13 \ + quinn-udp-0.5.14 \ + quote-1.0.40 \ + r-efi-5.3.0 \ + rand-0.9.2 \ + rand_chacha-0.9.0 \ + rand_core-0.9.3 \ + redox_users-0.5.2 \ + reqwest-0.12.23 \ + ring-0.17.14 \ + rpki-0.19.0 \ + rustc-demangle-0.1.26 \ + rustc-hash-2.1.1 \ + rustix-1.1.2 \ + rustls-0.23.31 \ rustls-pemfile-2.2.0 \ - rustls-pki-types-1.10.1 \ - rustls-webpki-0.102.8 \ - rustversion-1.0.19 \ - ryu-1.0.18 \ - schannel-0.1.27 \ + rustls-pki-types-1.12.0 \ + rustls-webpki-0.103.6 \ + rustversion-1.0.22 \ + ryu-1.0.20 \ + schannel-0.1.28 \ security-framework-2.11.1 \ - security-framework-sys-2.14.0 \ - serde-1.0.217 \ - serde_derive-1.0.217 \ - serde_json-1.0.137 \ + security-framework-sys-2.15.0 \ + serde-1.0.225 \ + serde_core-1.0.225 \ + serde_derive-1.0.225 \ + serde_json-1.0.145 \ serde_urlencoded-0.7.1 \ shlex-1.3.0 \ - signal-hook-registry-1.4.2 \ + signal-hook-registry-1.4.6 \ siphasher-1.0.1 \ - slab-0.4.9 \ - smallvec-1.13.2 \ - socket2-0.5.8 \ - spin-0.9.8 \ + slab-0.4.11 \ + smallvec-1.15.1 \ + socket2-0.6.0 \ stable_deref_trait-1.2.0 \ strsim-0.11.1 \ subtle-2.6.1 \ - syn-2.0.96 \ + syn-2.0.106 \ sync_wrapper-1.0.2 \ - synstructure-0.13.1 \ - syslog-6.1.1 \ - tempfile-3.15.0 \ - terminal_size-0.4.1 \ - thiserror-1.0.69 \ - thiserror-2.0.11 \ - thiserror-impl-1.0.69 \ - thiserror-impl-2.0.11 \ - time-0.3.37 \ - time-core-0.1.2 \ - time-macros-0.2.19 \ - tinystr-0.7.6 \ - tinyvec-1.8.1 \ + synstructure-0.13.2 \ + syslog-7.0.0 \ + tempfile-3.22.0 \ + terminal_size-0.4.3 \ + thiserror-2.0.16 \ + thiserror-impl-2.0.16 \ + time-0.3.43 \ + time-core-0.1.6 \ + time-macros-0.2.24 \ + tinystr-0.8.1 \ + tinyvec-1.10.0 \ tinyvec_macros-0.1.1 \ - tokio-1.43.0 \ + tokio-1.47.1 \ tokio-macros-2.5.0 \ tokio-native-tls-0.3.1 \ - tokio-rustls-0.26.1 \ - tokio-socks-0.5.2 \ - tokio-util-0.7.13 \ - toml_datetime-0.6.8 \ - toml_edit-0.22.22 \ + tokio-rustls-0.26.3 \ + tokio-util-0.7.16 \ + toml_datetime-0.7.1 \ + toml_edit-0.23.5 \ + toml_parser-1.0.2 \ + toml_writer-1.0.2 \ tower-0.5.2 \ + tower-http-0.6.6 \ tower-layer-0.3.3 \ tower-service-0.3.3 \ tracing-0.1.41 \ - tracing-core-0.1.33 \ + tracing-core-0.1.34 \ try-lock-0.2.5 \ - unicode-ident-1.0.14 \ + unicode-ident-1.0.19 \ untrusted-0.9.0 \ - url-2.5.4 \ - utf16_iter-1.0.5 \ + url-2.5.7 \ utf8_iter-1.0.4 \ utf8parse-0.2.2 \ - uuid-1.12.1 \ + uuid-1.18.1 \ vcpkg-0.2.15 \ - version_check-0.9.5 \ want-0.3.1 \ - wasi-0.11.0+wasi-snapshot-preview1 \ - wasm-bindgen-0.2.100 \ - wasm-bindgen-backend-0.2.100 \ - wasm-bindgen-futures-0.4.50 \ - wasm-bindgen-macro-0.2.100 \ - wasm-bindgen-macro-support-0.2.100 \ - wasm-bindgen-shared-0.2.100 \ - web-sys-0.3.77 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasi-0.14.7+wasi-0.2.4 \ + wasip2-1.0.1+wasi-0.2.4 \ + wasm-bindgen-0.2.103 \ + wasm-bindgen-backend-0.2.103 \ + wasm-bindgen-futures-0.4.53 \ + wasm-bindgen-macro-0.2.103 \ + wasm-bindgen-macro-support-0.2.103 \ + wasm-bindgen-shared-0.2.103 \ + web-sys-0.3.80 \ web-time-1.1.0 \ - webpki-roots-0.26.7 \ + webpki-roots-1.0.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ - windows-core-0.52.0 \ - windows-registry-0.2.0 \ - windows-result-0.2.0 \ - windows-strings-0.1.0 \ + windows-core-0.62.0 \ + windows-implement-0.60.0 \ + windows-interface-0.59.1 \ + windows-link-0.1.3 \ + windows-link-0.2.0 \ + windows-result-0.4.0 \ + windows-strings-0.5.0 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ + windows-sys-0.60.2 \ + windows-sys-0.61.0 \ windows-targets-0.52.6 \ + windows-targets-0.53.3 \ windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.0 \ windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.0 \ windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.0 \ windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.0 \ windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.0 \ windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.0 \ windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.0 \ windows_x86_64_msvc-0.52.6 \ - winnow-0.6.24 \ - write16-1.0.0 \ - writeable-0.5.5 \ - yoke-0.7.5 \ - yoke-derive-0.7.5 \ - zerocopy-0.7.35 \ - zerocopy-derive-0.7.35 \ - zerofrom-0.1.5 \ - zerofrom-derive-0.1.5 \ + windows_x86_64_msvc-0.53.0 \ + winnow-0.7.13 \ + wit-bindgen-0.46.0 \ + writeable-0.6.1 \ + yoke-0.8.0 \ + yoke-derive-0.8.0 \ + zerocopy-0.8.27 \ + zerocopy-derive-0.8.27 \ + zerofrom-0.1.6 \ + zerofrom-derive-0.1.6 \ zeroize-1.8.1 \ - zerovec-0.10.4 \ - zerovec-derive-0.10.3 + zerotrie-0.2.2 \ + zerovec-0.11.4 \ + zerovec-derive-0.11.1 diff --git a/net/routinator/distinfo b/net/routinator/distinfo index a886319ea47e..6c43c8c4688b 100644 --- a/net/routinator/distinfo +++ b/net/routinator/distinfo @@ -1,100 +1,102 @@ -TIMESTAMP = 1741116035 +TIMESTAMP = 1759233400 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 -SHA256 (rust/crates/adler2-2.0.0.crate) = 512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627 -SIZE (rust/crates/adler2-2.0.0.crate) = 13529 -SHA256 (rust/crates/android-tzdata-0.1.1.crate) = e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0 -SIZE (rust/crates/android-tzdata-0.1.1.crate) = 7674 +SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa +SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 -SHA256 (rust/crates/anstream-0.6.18.crate) = 8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b -SIZE (rust/crates/anstream-0.6.18.crate) = 29681 -SHA256 (rust/crates/anstyle-1.0.10.crate) = 55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9 -SIZE (rust/crates/anstyle-1.0.10.crate) = 15725 -SHA256 (rust/crates/anstyle-parse-0.2.6.crate) = 3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9 -SIZE (rust/crates/anstyle-parse-0.2.6.crate) = 22343 -SHA256 (rust/crates/anstyle-query-1.1.2.crate) = 79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c -SIZE (rust/crates/anstyle-query-1.1.2.crate) = 9969 -SHA256 (rust/crates/anstyle-wincon-3.0.7.crate) = ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e -SIZE (rust/crates/anstyle-wincon-3.0.7.crate) = 12400 -SHA256 (rust/crates/arbitrary-1.4.1.crate) = dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223 -SIZE (rust/crates/arbitrary-1.4.1.crate) = 36816 -SHA256 (rust/crates/async-compression-0.4.18.crate) = df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522 -SIZE (rust/crates/async-compression-0.4.18.crate) = 111919 -SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26 -SIZE (rust/crates/autocfg-1.4.0.crate) = 17712 -SHA256 (rust/crates/backtrace-0.3.74.crate) = 8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a -SIZE (rust/crates/backtrace-0.3.74.crate) = 88516 +SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 +SIZE (rust/crates/anstream-0.6.20.crate) = 28797 +SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd +SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 +SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 +SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 +SIZE (rust/crates/anstyle-query-1.1.4.crate) = 10192 +SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a +SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 +SHA256 (rust/crates/arbitrary-1.4.2.crate) = c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1 +SIZE (rust/crates/arbitrary-1.4.2.crate) = 38307 +SHA256 (rust/crates/arc-swap-1.7.1.crate) = 69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457 +SIZE (rust/crates/arc-swap-1.7.1.crate) = 68512 +SHA256 (rust/crates/async-compression-0.4.30.crate) = 977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23 +SIZE (rust/crates/async-compression-0.4.30.crate) = 98817 +SHA256 (rust/crates/atomic-waker-1.1.2.crate) = 1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0 +SIZE (rust/crates/atomic-waker-1.1.2.crate) = 12422 +SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 +SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 +SHA256 (rust/crates/backtrace-0.3.75.crate) = 6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002 +SIZE (rust/crates/backtrace-0.3.75.crate) = 92665 SHA256 (rust/crates/base64-0.22.1.crate) = 72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6 SIZE (rust/crates/base64-0.22.1.crate) = 81597 -SHA256 (rust/crates/bcder-0.7.5.crate) = 89ffdaa8c6398acd07176317eb6c1f9082869dd1cc3fee7c72c6354866b928cc -SIZE (rust/crates/bcder-0.7.5.crate) = 63794 -SHA256 (rust/crates/bitflags-2.8.0.crate) = 8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36 -SIZE (rust/crates/bitflags-2.8.0.crate) = 47482 -SHA256 (rust/crates/bumpalo-3.16.0.crate) = 79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c -SIZE (rust/crates/bumpalo-3.16.0.crate) = 85677 -SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b -SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 -SHA256 (rust/crates/bytes-1.9.0.crate) = 325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b -SIZE (rust/crates/bytes-1.9.0.crate) = 67320 -SHA256 (rust/crates/cc-1.2.10.crate) = 13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229 -SIZE (rust/crates/cc-1.2.10.crate) = 101251 -SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd -SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 +SHA256 (rust/crates/bcder-0.7.6.crate) = 1f7c42c9913f68cf9390a225e81ad56a5c515347287eb98baa710090ca1de86d +SIZE (rust/crates/bcder-0.7.6.crate) = 64022 +SHA256 (rust/crates/bitflags-2.9.4.crate) = 2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394 +SIZE (rust/crates/bitflags-2.9.4.crate) = 47950 +SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43 +SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 +SHA256 (rust/crates/bytes-1.10.1.crate) = d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a +SIZE (rust/crates/bytes-1.10.1.crate) = 76779 +SHA256 (rust/crates/cc-1.2.37.crate) = 65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44 +SIZE (rust/crates/cc-1.2.37.crate) = 90111 +SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 +SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724 SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355 -SHA256 (rust/crates/chrono-0.4.39.crate) = 7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825 -SIZE (rust/crates/chrono-0.4.39.crate) = 222248 -SHA256 (rust/crates/clap-4.5.27.crate) = 769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796 -SIZE (rust/crates/clap-4.5.27.crate) = 55737 -SHA256 (rust/crates/clap_builder-4.5.27.crate) = 1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7 -SIZE (rust/crates/clap_builder-4.5.27.crate) = 168024 -SHA256 (rust/crates/clap_derive-4.5.24.crate) = 54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c -SIZE (rust/crates/clap_derive-4.5.24.crate) = 30669 -SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 -SIZE (rust/crates/clap_lex-0.7.4.crate) = 12858 -SHA256 (rust/crates/colorchoice-1.0.3.crate) = 5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990 -SIZE (rust/crates/colorchoice-1.0.3.crate) = 7923 +SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 +SIZE (rust/crates/chrono-0.4.42.crate) = 238174 +SHA256 (rust/crates/clap-4.5.47.crate) = 7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931 +SIZE (rust/crates/clap-4.5.47.crate) = 58354 +SHA256 (rust/crates/clap_builder-4.5.47.crate) = 2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6 +SIZE (rust/crates/clap_builder-4.5.47.crate) = 170016 +SHA256 (rust/crates/clap_derive-4.5.47.crate) = bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c +SIZE (rust/crates/clap_derive-4.5.47.crate) = 33550 +SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 +SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 +SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 +SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 +SHA256 (rust/crates/compression-codecs-0.4.30.crate) = 485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64 +SIZE (rust/crates/compression-codecs-0.4.30.crate) = 22516 +SHA256 (rust/crates/compression-core-0.4.29.crate) = e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb +SIZE (rust/crates/compression-core-0.4.29.crate) = 4321 SHA256 (rust/crates/core-foundation-0.9.4.crate) = 91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f SIZE (rust/crates/core-foundation-0.9.4.crate) = 27743 SHA256 (rust/crates/core-foundation-sys-0.8.7.crate) = 773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b SIZE (rust/crates/core-foundation-sys-0.8.7.crate) = 37712 -SHA256 (rust/crates/crc32fast-1.4.2.crate) = a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3 -SIZE (rust/crates/crc32fast-1.4.2.crate) = 38491 +SHA256 (rust/crates/crc32fast-1.5.0.crate) = 9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511 +SIZE (rust/crates/crc32fast-1.5.0.crate) = 40723 SHA256 (rust/crates/crossbeam-queue-0.3.12.crate) = 0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115 SIZE (rust/crates/crossbeam-queue-0.3.12.crate) = 16270 SHA256 (rust/crates/crossbeam-utils-0.8.21.crate) = d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28 SIZE (rust/crates/crossbeam-utils-0.8.21.crate) = 42691 -SHA256 (rust/crates/deranged-0.3.11.crate) = b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4 -SIZE (rust/crates/deranged-0.3.11.crate) = 18043 -SHA256 (rust/crates/derive_arbitrary-1.4.1.crate) = 30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800 -SIZE (rust/crates/derive_arbitrary-1.4.1.crate) = 11521 +SHA256 (rust/crates/deranged-0.5.3.crate) = d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc +SIZE (rust/crates/deranged-0.5.3.crate) = 24353 +SHA256 (rust/crates/derive_arbitrary-1.4.2.crate) = 1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a +SIZE (rust/crates/derive_arbitrary-1.4.2.crate) = 12290 SHA256 (rust/crates/dirs-6.0.0.crate) = c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e SIZE (rust/crates/dirs-6.0.0.crate) = 14190 SHA256 (rust/crates/dirs-sys-0.5.0.crate) = e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab SIZE (rust/crates/dirs-sys-0.5.0.crate) = 10157 SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0 SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 -SHA256 (rust/crates/either-1.13.0.crate) = 60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0 -SIZE (rust/crates/either-1.13.0.crate) = 19169 -SHA256 (rust/crates/equivalent-1.0.1.crate) = 5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5 -SIZE (rust/crates/equivalent-1.0.1.crate) = 6615 -SHA256 (rust/crates/errno-0.3.10.crate) = 33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d -SIZE (rust/crates/errno-0.3.10.crate) = 11824 -SHA256 (rust/crates/error-chain-0.12.4.crate) = 2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc -SIZE (rust/crates/error-chain-0.12.4.crate) = 29274 +SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f +SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 +SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb +SIZE (rust/crates/errno-0.3.14.crate) = 12002 SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 -SHA256 (rust/crates/flate2-1.0.35.crate) = c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c -SIZE (rust/crates/flate2-1.0.35.crate) = 109188 +SHA256 (rust/crates/find-msvc-tools-0.1.1.crate) = 7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d +SIZE (rust/crates/find-msvc-tools-0.1.1.crate) = 30228 +SHA256 (rust/crates/flate2-1.1.2.crate) = 4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d +SIZE (rust/crates/flate2-1.1.2.crate) = 76495 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/foreign-types-0.3.2.crate) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 SIZE (rust/crates/foreign-types-0.3.2.crate) = 7504 SHA256 (rust/crates/foreign-types-shared-0.1.1.crate) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b SIZE (rust/crates/foreign-types-shared-0.1.1.crate) = 5672 -SHA256 (rust/crates/form_urlencoded-1.2.1.crate) = e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456 -SIZE (rust/crates/form_urlencoded-1.2.1.crate) = 8969 +SHA256 (rust/crates/form_urlencoded-1.2.2.crate) = cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf +SIZE (rust/crates/form_urlencoded-1.2.2.crate) = 9347 SHA256 (rust/crates/futures-0.3.31.crate) = 65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876 SIZE (rust/crates/futures-0.3.31.crate) = 54953 SHA256 (rust/crates/futures-channel-0.3.31.crate) = 2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10 @@ -113,100 +115,98 @@ SHA256 (rust/crates/futures-task-0.3.31.crate) = f90f7dce0722e95104fcb095585910c SIZE (rust/crates/futures-task-0.3.31.crate) = 11217 SHA256 (rust/crates/futures-util-0.3.31.crate) = 9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81 SIZE (rust/crates/futures-util-0.3.31.crate) = 162124 -SHA256 (rust/crates/getrandom-0.2.15.crate) = c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7 -SIZE (rust/crates/getrandom-0.2.15.crate) = 37163 +SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592 +SIZE (rust/crates/getrandom-0.2.16.crate) = 40163 +SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4 +SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 SHA256 (rust/crates/gimli-0.31.1.crate) = 07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f SIZE (rust/crates/gimli-0.31.1.crate) = 279515 -SHA256 (rust/crates/hashbrown-0.15.2.crate) = bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289 -SIZE (rust/crates/hashbrown-0.15.2.crate) = 138478 +SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 +SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea SIZE (rust/crates/heck-0.5.0.crate) = 11517 -SHA256 (rust/crates/hostname-0.3.1.crate) = 3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867 -SIZE (rust/crates/hostname-0.3.1.crate) = 9272 -SHA256 (rust/crates/http-1.2.0.crate) = f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea -SIZE (rust/crates/http-1.2.0.crate) = 105932 +SHA256 (rust/crates/hostname-0.4.1.crate) = a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65 +SIZE (rust/crates/hostname-0.4.1.crate) = 13819 +SHA256 (rust/crates/http-1.3.1.crate) = f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565 +SIZE (rust/crates/http-1.3.1.crate) = 106063 SHA256 (rust/crates/http-body-1.0.1.crate) = 1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184 SIZE (rust/crates/http-body-1.0.1.crate) = 6125 -SHA256 (rust/crates/http-body-util-0.1.2.crate) = 793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f -SIZE (rust/crates/http-body-util-0.1.2.crate) = 12821 -SHA256 (rust/crates/httparse-1.9.5.crate) = 7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946 -SIZE (rust/crates/httparse-1.9.5.crate) = 39029 +SHA256 (rust/crates/http-body-util-0.1.3.crate) = b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a +SIZE (rust/crates/http-body-util-0.1.3.crate) = 16975 +SHA256 (rust/crates/httparse-1.10.1.crate) = 6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87 +SIZE (rust/crates/httparse-1.10.1.crate) = 45190 SHA256 (rust/crates/httpdate-1.0.3.crate) = df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9 SIZE (rust/crates/httpdate-1.0.3.crate) = 10639 -SHA256 (rust/crates/hyper-1.5.2.crate) = 256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0 -SIZE (rust/crates/hyper-1.5.2.crate) = 152817 -SHA256 (rust/crates/hyper-rustls-0.27.5.crate) = 2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2 -SIZE (rust/crates/hyper-rustls-0.27.5.crate) = 34660 +SHA256 (rust/crates/hyper-1.7.0.crate) = eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e +SIZE (rust/crates/hyper-1.7.0.crate) = 157006 +SHA256 (rust/crates/hyper-rustls-0.27.7.crate) = e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58 +SIZE (rust/crates/hyper-rustls-0.27.7.crate) = 35435 SHA256 (rust/crates/hyper-tls-0.6.0.crate) = 70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0 SIZE (rust/crates/hyper-tls-0.6.0.crate) = 15052 -SHA256 (rust/crates/hyper-util-0.1.10.crate) = df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4 -SIZE (rust/crates/hyper-util-0.1.10.crate) = 72887 -SHA256 (rust/crates/iana-time-zone-0.1.61.crate) = 235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220 -SIZE (rust/crates/iana-time-zone-0.1.61.crate) = 27685 +SHA256 (rust/crates/hyper-util-0.1.17.crate) = 3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8 +SIZE (rust/crates/hyper-util-0.1.17.crate) = 100999 +SHA256 (rust/crates/iana-time-zone-0.1.64.crate) = 33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb +SIZE (rust/crates/iana-time-zone-0.1.64.crate) = 33152 SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185 -SHA256 (rust/crates/icu_collections-1.5.0.crate) = db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526 -SIZE (rust/crates/icu_collections-1.5.0.crate) = 82762 -SHA256 (rust/crates/icu_locid-1.5.0.crate) = 13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637 -SIZE (rust/crates/icu_locid-1.5.0.crate) = 55131 -SHA256 (rust/crates/icu_locid_transform-1.5.0.crate) = 01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e -SIZE (rust/crates/icu_locid_transform-1.5.0.crate) = 29094 -SHA256 (rust/crates/icu_locid_transform_data-1.5.0.crate) = fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e -SIZE (rust/crates/icu_locid_transform_data-1.5.0.crate) = 44727 -SHA256 (rust/crates/icu_normalizer-1.5.0.crate) = 19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f -SIZE (rust/crates/icu_normalizer-1.5.0.crate) = 53113 -SHA256 (rust/crates/icu_normalizer_data-1.5.0.crate) = f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516 -SIZE (rust/crates/icu_normalizer_data-1.5.0.crate) = 50561 -SHA256 (rust/crates/icu_properties-1.5.1.crate) = 93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5 -SIZE (rust/crates/icu_properties-1.5.1.crate) = 64479 -SHA256 (rust/crates/icu_properties_data-1.5.0.crate) = 67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569 -SIZE (rust/crates/icu_properties_data-1.5.0.crate) = 227993 -SHA256 (rust/crates/icu_provider-1.5.0.crate) = 6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9 -SIZE (rust/crates/icu_provider-1.5.0.crate) = 52722 -SHA256 (rust/crates/icu_provider_macros-1.5.0.crate) = 1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6 -SIZE (rust/crates/icu_provider_macros-1.5.0.crate) = 6436 -SHA256 (rust/crates/idna-1.0.3.crate) = 686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e -SIZE (rust/crates/idna-1.0.3.crate) = 142515 -SHA256 (rust/crates/idna_adapter-1.2.0.crate) = daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71 -SIZE (rust/crates/idna_adapter-1.2.0.crate) = 8206 -SHA256 (rust/crates/indexmap-2.7.1.crate) = 8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652 -SIZE (rust/crates/indexmap-2.7.1.crate) = 88644 +SHA256 (rust/crates/icu_collections-2.0.0.crate) = 200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47 +SIZE (rust/crates/icu_collections-2.0.0.crate) = 83033 +SHA256 (rust/crates/icu_locale_core-2.0.0.crate) = 0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a +SIZE (rust/crates/icu_locale_core-2.0.0.crate) = 74430 +SHA256 (rust/crates/icu_normalizer-2.0.0.crate) = 436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979 +SIZE (rust/crates/icu_normalizer-2.0.0.crate) = 61543 +SHA256 (rust/crates/icu_normalizer_data-2.0.0.crate) = 00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3 +SIZE (rust/crates/icu_normalizer_data-2.0.0.crate) = 68101 +SHA256 (rust/crates/icu_properties-2.0.1.crate) = 016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b +SIZE (rust/crates/icu_properties-2.0.1.crate) = 58165 +SHA256 (rust/crates/icu_properties_data-2.0.1.crate) = 298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632 +SIZE (rust/crates/icu_properties_data-2.0.1.crate) = 159735 +SHA256 (rust/crates/icu_provider-2.0.0.crate) = 03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af +SIZE (rust/crates/icu_provider-2.0.0.crate) = 50966 +SHA256 (rust/crates/idna-1.1.0.crate) = 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de +SIZE (rust/crates/idna-1.1.0.crate) = 148747 +SHA256 (rust/crates/idna_adapter-1.2.1.crate) = 3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344 +SIZE (rust/crates/idna_adapter-1.2.1.crate) = 10389 +SHA256 (rust/crates/indexmap-2.11.3.crate) = 92119844f513ffa41556430369ab02c295a3578af21cf945caa3e9e0c2481ac3 +SIZE (rust/crates/indexmap-2.11.3.crate) = 100271 +SHA256 (rust/crates/io-uring-0.7.10.crate) = 046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b +SIZE (rust/crates/io-uring-0.7.10.crate) = 103070 SHA256 (rust/crates/ipnet-2.11.0.crate) = 469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130 SIZE (rust/crates/ipnet-2.11.0.crate) = 29718 +SHA256 (rust/crates/iri-string-0.7.8.crate) = dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2 +SIZE (rust/crates/iri-string-0.7.8.crate) = 141493 SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 -SHA256 (rust/crates/itoa-1.0.14.crate) = d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674 -SIZE (rust/crates/itoa-1.0.14.crate) = 11210 -SHA256 (rust/crates/js-sys-0.3.77.crate) = 1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f -SIZE (rust/crates/js-sys-0.3.77.crate) = 55538 -SHA256 (rust/crates/libc-0.2.169.crate) = b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a -SIZE (rust/crates/libc-0.2.169.crate) = 757901 -SHA256 (rust/crates/libredox-0.1.3.crate) = c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d -SIZE (rust/crates/libredox-0.1.3.crate) = 6068 -SHA256 (rust/crates/linux-raw-sys-0.4.15.crate) = d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab -SIZE (rust/crates/linux-raw-sys-0.4.15.crate) = 2150898 +SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c +SIZE (rust/crates/itoa-1.0.15.crate) = 11231 +SHA256 (rust/crates/js-sys-0.3.80.crate) = 852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e +SIZE (rust/crates/js-sys-0.3.80.crate) = 56202 +SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 +SIZE (rust/crates/libc-0.2.175.crate) = 788728 +SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb +SIZE (rust/crates/libredox-0.1.10.crate) = 7332 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 SHA256 (rust/crates/listenfd-1.0.2.crate) = b87bc54a4629b4294d0b3ef041b64c40c611097a677d9dc07b2c67739fe39dba SIZE (rust/crates/listenfd-1.0.2.crate) = 18792 -SHA256 (rust/crates/litemap-0.7.4.crate) = 4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104 -SIZE (rust/crates/litemap-0.7.4.crate) = 28257 -SHA256 (rust/crates/log-0.4.25.crate) = 04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f -SIZE (rust/crates/log-0.4.25.crate) = 44876 -SHA256 (rust/crates/match_cfg-0.1.0.crate) = ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4 -SIZE (rust/crates/match_cfg-0.1.0.crate) = 7153 -SHA256 (rust/crates/memchr-2.7.4.crate) = 78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3 -SIZE (rust/crates/memchr-2.7.4.crate) = 96670 +SHA256 (rust/crates/litemap-0.8.0.crate) = 241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956 +SIZE (rust/crates/litemap-0.8.0.crate) = 34344 +SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 +SIZE (rust/crates/log-0.4.28.crate) = 51131 +SHA256 (rust/crates/lru-slab-0.1.2.crate) = 112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154 +SIZE (rust/crates/lru-slab-0.1.2.crate) = 9090 +SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 +SIZE (rust/crates/memchr-2.7.5.crate) = 97603 SHA256 (rust/crates/memoffset-0.9.1.crate) = 488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a SIZE (rust/crates/memoffset-0.9.1.crate) = 9032 -SHA256 (rust/crates/mime-0.3.17.crate) = 6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a -SIZE (rust/crates/mime-0.3.17.crate) = 15712 -SHA256 (rust/crates/miniz_oxide-0.8.3.crate) = b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924 -SIZE (rust/crates/miniz_oxide-0.8.3.crate) = 61827 -SHA256 (rust/crates/mio-1.0.3.crate) = 2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd -SIZE (rust/crates/mio-1.0.3.crate) = 103703 -SHA256 (rust/crates/native-tls-0.2.12.crate) = a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466 -SIZE (rust/crates/native-tls-0.2.12.crate) = 29517 -SHA256 (rust/crates/nix-0.27.1.crate) = 2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053 -SIZE (rust/crates/nix-0.27.1.crate) = 286494 +SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 +SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 +SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c +SIZE (rust/crates/mio-1.0.4.crate) = 104212 +SHA256 (rust/crates/native-tls-0.2.14.crate) = 87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e +SIZE (rust/crates/native-tls-0.2.14.crate) = 29385 +SHA256 (rust/crates/nix-0.30.1.crate) = 74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6 +SIZE (rust/crates/nix-0.30.1.crate) = 342015 SHA256 (rust/crates/num-conv-0.1.0.crate) = 51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9 SIZE (rust/crates/num-conv-0.1.0.crate) = 7444 SHA256 (rust/crates/num-traits-0.2.19.crate) = 071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841 @@ -215,267 +215,303 @@ SHA256 (rust/crates/num_threads-0.1.7.crate) = 5c7398b9c8b70908f6371f47ed3673790 SIZE (rust/crates/num_threads-0.1.7.crate) = 7455 SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87 SIZE (rust/crates/object-0.36.7.crate) = 329938 -SHA256 (rust/crates/once_cell-1.20.2.crate) = 1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775 -SIZE (rust/crates/once_cell-1.20.2.crate) = 33394 -SHA256 (rust/crates/openssl-0.10.68.crate) = 6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5 -SIZE (rust/crates/openssl-0.10.68.crate) = 276578 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 +SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad +SIZE (rust/crates/once_cell_polyfill-1.70.1.crate) = 7510 +SHA256 (rust/crates/openssl-0.10.73.crate) = 8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8 +SIZE (rust/crates/openssl-0.10.73.crate) = 283994 SHA256 (rust/crates/openssl-macros-0.1.1.crate) = a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c SIZE (rust/crates/openssl-macros-0.1.1.crate) = 5601 -SHA256 (rust/crates/openssl-probe-0.1.5.crate) = ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf -SIZE (rust/crates/openssl-probe-0.1.5.crate) = 7227 -SHA256 (rust/crates/openssl-sys-0.9.104.crate) = 45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741 -SIZE (rust/crates/openssl-sys-0.9.104.crate) = 72287 +SHA256 (rust/crates/openssl-probe-0.1.6.crate) = d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e +SIZE (rust/crates/openssl-probe-0.1.6.crate) = 8128 +SHA256 (rust/crates/openssl-sys-0.9.109.crate) = 90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571 +SIZE (rust/crates/openssl-sys-0.9.109.crate) = 78247 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 -SHA256 (rust/crates/percent-encoding-2.3.1.crate) = e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e -SIZE (rust/crates/percent-encoding-2.3.1.crate) = 10235 +SHA256 (rust/crates/percent-encoding-2.3.2.crate) = 9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220 +SIZE (rust/crates/percent-encoding-2.3.2.crate) = 11583 SHA256 (rust/crates/pin-project-lite-0.2.16.crate) = 3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b SIZE (rust/crates/pin-project-lite-0.2.16.crate) = 30504 SHA256 (rust/crates/pin-utils-0.1.0.crate) = 8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184 SIZE (rust/crates/pin-utils-0.1.0.crate) = 7580 -SHA256 (rust/crates/pkg-config-0.3.31.crate) = 953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2 -SIZE (rust/crates/pkg-config-0.3.31.crate) = 20880 +SHA256 (rust/crates/pkg-config-0.3.32.crate) = 7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c +SIZE (rust/crates/pkg-config-0.3.32.crate) = 21370 +SHA256 (rust/crates/potential_utf-0.1.3.crate) = 84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a +SIZE (rust/crates/potential_utf-0.1.3.crate) = 9698 SHA256 (rust/crates/powerfmt-0.2.0.crate) = 439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391 SIZE (rust/crates/powerfmt-0.2.0.crate) = 15165 -SHA256 (rust/crates/ppv-lite86-0.2.20.crate) = 77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04 -SIZE (rust/crates/ppv-lite86-0.2.20.crate) = 22478 -SHA256 (rust/crates/proc-macro2-1.0.93.crate) = 60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99 -SIZE (rust/crates/proc-macro2-1.0.93.crate) = 52388 -SHA256 (rust/crates/quick-xml-0.31.0.crate) = 1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33 -SIZE (rust/crates/quick-xml-0.31.0.crate) = 172236 -SHA256 (rust/crates/quinn-0.11.6.crate) = 62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef -SIZE (rust/crates/quinn-0.11.6.crate) = 78222 -SHA256 (rust/crates/quinn-proto-0.11.9.crate) = a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d -SIZE (rust/crates/quinn-proto-0.11.9.crate) = 209286 -SHA256 (rust/crates/quinn-udp-0.5.9.crate) = 1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904 -SIZE (rust/crates/quinn-udp-0.5.9.crate) = 25342 -SHA256 (rust/crates/quote-1.0.38.crate) = 0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc -SIZE (rust/crates/quote-1.0.38.crate) = 31252 -SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 -SIZE (rust/crates/rand-0.8.5.crate) = 87113 -SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 -SIZE (rust/crates/rand_chacha-0.3.1.crate) = 15251 -SHA256 (rust/crates/rand_core-0.6.4.crate) = ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c -SIZE (rust/crates/rand_core-0.6.4.crate) = 22666 -SHA256 (rust/crates/redox_users-0.5.0.crate) = dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b -SIZE (rust/crates/redox_users-0.5.0.crate) = 15586 -SHA256 (rust/crates/reqwest-0.12.12.crate) = 43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da -SIZE (rust/crates/reqwest-0.12.12.crate) = 193321 -SHA256 (rust/crates/ring-0.17.8.crate) = c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d -SIZE (rust/crates/ring-0.17.8.crate) = 4188554 -SHA256 (rust/crates/rpki-0.18.5.crate) = a20b4c3d0ee54ae5623463c84d032786805f12d139df93539434e45be11db659 -SIZE (rust/crates/rpki-0.18.5.crate) = 760696 -SHA256 (rust/crates/rustc-demangle-0.1.24.crate) = 719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f -SIZE (rust/crates/rustc-demangle-0.1.24.crate) = 29047 -SHA256 (rust/crates/rustc-hash-2.1.0.crate) = c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497 -SIZE (rust/crates/rustc-hash-2.1.0.crate) = 13316 -SHA256 (rust/crates/rustix-0.38.44.crate) = fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154 -SIZE (rust/crates/rustix-0.38.44.crate) = 379347 -SHA256 (rust/crates/rustls-0.23.21.crate) = 8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8 -SIZE (rust/crates/rustls-0.23.21.crate) = 337106 +SHA256 (rust/crates/ppv-lite86-0.2.21.crate) = 85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9 +SIZE (rust/crates/ppv-lite86-0.2.21.crate) = 22522 +SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de +SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 +SHA256 (rust/crates/quick-xml-0.38.3.crate) = 42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89 +SIZE (rust/crates/quick-xml-0.38.3.crate) = 204498 +SHA256 (rust/crates/quinn-0.11.9.crate) = b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20 +SIZE (rust/crates/quinn-0.11.9.crate) = 83606 +SHA256 (rust/crates/quinn-proto-0.11.13.crate) = f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31 +SIZE (rust/crates/quinn-proto-0.11.13.crate) = 243837 +SHA256 (rust/crates/quinn-udp-0.5.14.crate) = addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd +SIZE (rust/crates/quinn-udp-0.5.14.crate) = 33436 +SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d +SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 +SHA256 (rust/crates/rand-0.9.2.crate) = 6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1 +SIZE (rust/crates/rand-0.9.2.crate) = 99930 +SHA256 (rust/crates/rand_chacha-0.9.0.crate) = d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb +SIZE (rust/crates/rand_chacha-0.9.0.crate) = 18258 +SHA256 (rust/crates/rand_core-0.9.3.crate) = 99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38 +SIZE (rust/crates/rand_core-0.9.3.crate) = 24543 +SHA256 (rust/crates/redox_users-0.5.2.crate) = a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac +SIZE (rust/crates/redox_users-0.5.2.crate) = 17280 +SHA256 (rust/crates/reqwest-0.12.23.crate) = d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb +SIZE (rust/crates/reqwest-0.12.23.crate) = 161307 +SHA256 (rust/crates/ring-0.17.14.crate) = a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7 +SIZE (rust/crates/ring-0.17.14.crate) = 1502610 +SHA256 (rust/crates/rpki-0.19.0.crate) = 602dddc0f34c108efad9314544e38b4b0d91c7d9c4e1a5060a045e440fd62f0c +SIZE (rust/crates/rpki-0.19.0.crate) = 769979 +SHA256 (rust/crates/rustc-demangle-0.1.26.crate) = 56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace +SIZE (rust/crates/rustc-demangle-0.1.26.crate) = 30340 +SHA256 (rust/crates/rustc-hash-2.1.1.crate) = 357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d +SIZE (rust/crates/rustc-hash-2.1.1.crate) = 14154 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 +SHA256 (rust/crates/rustls-0.23.31.crate) = c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc +SIZE (rust/crates/rustls-0.23.31.crate) = 371259 SHA256 (rust/crates/rustls-pemfile-2.2.0.crate) = dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50 SIZE (rust/crates/rustls-pemfile-2.2.0.crate) = 25849 -SHA256 (rust/crates/rustls-pki-types-1.10.1.crate) = d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37 -SIZE (rust/crates/rustls-pki-types-1.10.1.crate) = 58944 -SHA256 (rust/crates/rustls-webpki-0.102.8.crate) = 64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9 -SIZE (rust/crates/rustls-webpki-0.102.8.crate) = 204327 -SHA256 (rust/crates/rustversion-1.0.19.crate) = f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4 -SIZE (rust/crates/rustversion-1.0.19.crate) = 20616 -SHA256 (rust/crates/ryu-1.0.18.crate) = f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f -SIZE (rust/crates/ryu-1.0.18.crate) = 47713 -SHA256 (rust/crates/schannel-0.1.27.crate) = 1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d -SIZE (rust/crates/schannel-0.1.27.crate) = 42772 +SHA256 (rust/crates/rustls-pki-types-1.12.0.crate) = 229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79 +SIZE (rust/crates/rustls-pki-types-1.12.0.crate) = 64740 +SHA256 (rust/crates/rustls-webpki-0.103.6.crate) = 8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb +SIZE (rust/crates/rustls-webpki-0.103.6.crate) = 85224 +SHA256 (rust/crates/rustversion-1.0.22.crate) = b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d +SIZE (rust/crates/rustversion-1.0.22.crate) = 21096 +SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f +SIZE (rust/crates/ryu-1.0.20.crate) = 48738 +SHA256 (rust/crates/schannel-0.1.28.crate) = 891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1 +SIZE (rust/crates/schannel-0.1.28.crate) = 42312 SHA256 (rust/crates/security-framework-2.11.1.crate) = 897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02 SIZE (rust/crates/security-framework-2.11.1.crate) = 80188 -SHA256 (rust/crates/security-framework-sys-2.14.0.crate) = 49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32 -SIZE (rust/crates/security-framework-sys-2.14.0.crate) = 20537 -SHA256 (rust/crates/serde-1.0.217.crate) = 02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70 -SIZE (rust/crates/serde-1.0.217.crate) = 79019 -SHA256 (rust/crates/serde_derive-1.0.217.crate) = 5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0 -SIZE (rust/crates/serde_derive-1.0.217.crate) = 57749 -SHA256 (rust/crates/serde_json-1.0.137.crate) = 930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b -SIZE (rust/crates/serde_json-1.0.137.crate) = 154512 +SHA256 (rust/crates/security-framework-sys-2.15.0.crate) = cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0 +SIZE (rust/crates/security-framework-sys-2.15.0.crate) = 20718 +SHA256 (rust/crates/serde-1.0.225.crate) = fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d +SIZE (rust/crates/serde-1.0.225.crate) = 28467 +SHA256 (rust/crates/serde_core-1.0.225.crate) = 659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383 +SIZE (rust/crates/serde_core-1.0.225.crate) = 63004 +SHA256 (rust/crates/serde_derive-1.0.225.crate) = 0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516 +SIZE (rust/crates/serde_derive-1.0.225.crate) = 58560 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 SHA256 (rust/crates/serde_urlencoded-0.7.1.crate) = d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd SIZE (rust/crates/serde_urlencoded-0.7.1.crate) = 12822 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 -SHA256 (rust/crates/signal-hook-registry-1.4.2.crate) = a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1 -SIZE (rust/crates/signal-hook-registry-1.4.2.crate) = 18064 +SHA256 (rust/crates/signal-hook-registry-1.4.6.crate) = b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b +SIZE (rust/crates/signal-hook-registry-1.4.6.crate) = 19277 SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 -SHA256 (rust/crates/slab-0.4.9.crate) = 8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67 -SIZE (rust/crates/slab-0.4.9.crate) = 17108 -SHA256 (rust/crates/smallvec-1.13.2.crate) = 3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67 -SIZE (rust/crates/smallvec-1.13.2.crate) = 35216 -SHA256 (rust/crates/socket2-0.5.8.crate) = c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8 -SIZE (rust/crates/socket2-0.5.8.crate) = 56309 -SHA256 (rust/crates/spin-0.9.8.crate) = 6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67 -SIZE (rust/crates/spin-0.9.8.crate) = 38958 +SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 +SIZE (rust/crates/slab-0.4.11.crate) = 18549 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 +SHA256 (rust/crates/socket2-0.6.0.crate) = 233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807 +SIZE (rust/crates/socket2-0.6.0.crate) = 57974 SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3 SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f SIZE (rust/crates/strsim-0.11.1.crate) = 14266 SHA256 (rust/crates/subtle-2.6.1.crate) = 13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292 SIZE (rust/crates/subtle-2.6.1.crate) = 14562 -SHA256 (rust/crates/syn-2.0.96.crate) = d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80 -SIZE (rust/crates/syn-2.0.96.crate) = 297497 +SHA256 (rust/crates/syn-2.0.106.crate) = ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6 +SIZE (rust/crates/syn-2.0.106.crate) = 301514 SHA256 (rust/crates/sync_wrapper-1.0.2.crate) = 0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263 SIZE (rust/crates/sync_wrapper-1.0.2.crate) = 6958 -SHA256 (rust/crates/synstructure-0.13.1.crate) = c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971 -SIZE (rust/crates/synstructure-0.13.1.crate) = 18327 -SHA256 (rust/crates/syslog-6.1.1.crate) = dfc7e95b5b795122fafe6519e27629b5ab4232c73ebb2428f568e82b1a457ad3 -SIZE (rust/crates/syslog-6.1.1.crate) = 10017 -SHA256 (rust/crates/tempfile-3.15.0.crate) = 9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704 -SIZE (rust/crates/tempfile-3.15.0.crate) = 35693 -SHA256 (rust/crates/terminal_size-0.4.1.crate) = 5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9 -SIZE (rust/crates/terminal_size-0.4.1.crate) = 10037 -SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 -SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 -SHA256 (rust/crates/thiserror-2.0.11.crate) = d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc -SIZE (rust/crates/thiserror-2.0.11.crate) = 28648 -SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 -SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/thiserror-impl-2.0.11.crate) = 26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2 -SIZE (rust/crates/thiserror-impl-2.0.11.crate) = 21067 -SHA256 (rust/crates/time-0.3.37.crate) = 35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21 -SIZE (rust/crates/time-0.3.37.crate) = 123257 -SHA256 (rust/crates/time-core-0.1.2.crate) = ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3 -SIZE (rust/crates/time-core-0.1.2.crate) = 7191 -SHA256 (rust/crates/time-macros-0.2.19.crate) = 2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de -SIZE (rust/crates/time-macros-0.2.19.crate) = 24268 -SHA256 (rust/crates/tinystr-0.7.6.crate) = 9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f -SIZE (rust/crates/tinystr-0.7.6.crate) = 16971 -SHA256 (rust/crates/tinyvec-1.8.1.crate) = 022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8 -SIZE (rust/crates/tinyvec-1.8.1.crate) = 47269 +SHA256 (rust/crates/synstructure-0.13.2.crate) = 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 +SIZE (rust/crates/synstructure-0.13.2.crate) = 18950 +SHA256 (rust/crates/syslog-7.0.0.crate) = 019f1500a13379b7d051455df397c75770de6311a7a188a699499502704d9f10 +SIZE (rust/crates/syslog-7.0.0.crate) = 12968 +SHA256 (rust/crates/tempfile-3.22.0.crate) = 84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53 +SIZE (rust/crates/tempfile-3.22.0.crate) = 43044 +SHA256 (rust/crates/terminal_size-0.4.3.crate) = 60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0 +SIZE (rust/crates/terminal_size-0.4.3.crate) = 10686 +SHA256 (rust/crates/thiserror-2.0.16.crate) = 3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0 +SIZE (rust/crates/thiserror-2.0.16.crate) = 29095 +SHA256 (rust/crates/thiserror-impl-2.0.16.crate) = 6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960 +SIZE (rust/crates/thiserror-impl-2.0.16.crate) = 21214 +SHA256 (rust/crates/time-0.3.43.crate) = 83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031 +SIZE (rust/crates/time-0.3.43.crate) = 142912 +SHA256 (rust/crates/time-core-0.1.6.crate) = 40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b +SIZE (rust/crates/time-core-0.1.6.crate) = 9105 +SHA256 (rust/crates/time-macros-0.2.24.crate) = 30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3 +SIZE (rust/crates/time-macros-0.2.24.crate) = 24715 +SHA256 (rust/crates/tinystr-0.8.1.crate) = 5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b +SIZE (rust/crates/tinystr-0.8.1.crate) = 23333 +SHA256 (rust/crates/tinyvec-1.10.0.crate) = bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa +SIZE (rust/crates/tinyvec-1.10.0.crate) = 51996 SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20 SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 -SHA256 (rust/crates/tokio-1.43.0.crate) = 3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e -SIZE (rust/crates/tokio-1.43.0.crate) = 817422 +SHA256 (rust/crates/tokio-1.47.1.crate) = 89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038 +SIZE (rust/crates/tokio-1.47.1.crate) = 829790 SHA256 (rust/crates/tokio-macros-2.5.0.crate) = 6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8 SIZE (rust/crates/tokio-macros-2.5.0.crate) = 12617 SHA256 (rust/crates/tokio-native-tls-0.3.1.crate) = bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2 SIZE (rust/crates/tokio-native-tls-0.3.1.crate) = 20676 -SHA256 (rust/crates/tokio-rustls-0.26.1.crate) = 5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37 -SIZE (rust/crates/tokio-rustls-0.26.1.crate) = 31214 -SHA256 (rust/crates/tokio-socks-0.5.2.crate) = 0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f -SIZE (rust/crates/tokio-socks-0.5.2.crate) = 22102 -SHA256 (rust/crates/tokio-util-0.7.13.crate) = d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078 -SIZE (rust/crates/tokio-util-0.7.13.crate) = 115191 -SHA256 (rust/crates/toml_datetime-0.6.8.crate) = 0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41 -SIZE (rust/crates/toml_datetime-0.6.8.crate) = 12028 -SHA256 (rust/crates/toml_edit-0.22.22.crate) = 4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5 -SIZE (rust/crates/toml_edit-0.22.22.crate) = 106387 +SHA256 (rust/crates/tokio-rustls-0.26.3.crate) = 05f63835928ca123f1bef57abbcd23bb2ba0ac9ae1235f1e65bda0d06e7786bd +SIZE (rust/crates/tokio-rustls-0.26.3.crate) = 35073 +SHA256 (rust/crates/tokio-util-0.7.16.crate) = 14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5 +SIZE (rust/crates/tokio-util-0.7.16.crate) = 127775 +SHA256 (rust/crates/toml_datetime-0.7.1.crate) = a197c0ec7d131bfc6f7e82c8442ba1595aeab35da7adbf05b6b73cd06a16b6be +SIZE (rust/crates/toml_datetime-0.7.1.crate) = 18127 +SHA256 (rust/crates/toml_edit-0.23.5.crate) = c2ad0b7ae9cfeef5605163839cb9221f453399f15cfb5c10be9885fcf56611f9 +SIZE (rust/crates/toml_edit-0.23.5.crate) = 66458 +SHA256 (rust/crates/toml_parser-1.0.2.crate) = b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10 +SIZE (rust/crates/toml_parser-1.0.2.crate) = 35241 +SHA256 (rust/crates/toml_writer-1.0.2.crate) = fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64 +SIZE (rust/crates/toml_writer-1.0.2.crate) = 16988 SHA256 (rust/crates/tower-0.5.2.crate) = d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9 SIZE (rust/crates/tower-0.5.2.crate) = 109417 +SHA256 (rust/crates/tower-http-0.6.6.crate) = adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2 +SIZE (rust/crates/tower-http-0.6.6.crate) = 133515 SHA256 (rust/crates/tower-layer-0.3.3.crate) = 121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e SIZE (rust/crates/tower-layer-0.3.3.crate) = 6180 SHA256 (rust/crates/tower-service-0.3.3.crate) = 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 SIZE (rust/crates/tower-service-0.3.3.crate) = 6950 SHA256 (rust/crates/tracing-0.1.41.crate) = 784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0 SIZE (rust/crates/tracing-0.1.41.crate) = 82448 -SHA256 (rust/crates/tracing-core-0.1.33.crate) = e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c -SIZE (rust/crates/tracing-core-0.1.33.crate) = 63434 +SHA256 (rust/crates/tracing-core-0.1.34.crate) = b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678 +SIZE (rust/crates/tracing-core-0.1.34.crate) = 63760 SHA256 (rust/crates/try-lock-0.2.5.crate) = e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b SIZE (rust/crates/try-lock-0.2.5.crate) = 4314 -SHA256 (rust/crates/unicode-ident-1.0.14.crate) = adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83 -SIZE (rust/crates/unicode-ident-1.0.14.crate) = 47547 +SHA256 (rust/crates/unicode-ident-1.0.19.crate) = f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d +SIZE (rust/crates/unicode-ident-1.0.19.crate) = 47480 SHA256 (rust/crates/untrusted-0.9.0.crate) = 8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1 SIZE (rust/crates/untrusted-0.9.0.crate) = 14447 -SHA256 (rust/crates/url-2.5.4.crate) = 32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60 -SIZE (rust/crates/url-2.5.4.crate) = 81097 -SHA256 (rust/crates/utf16_iter-1.0.5.crate) = c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246 -SIZE (rust/crates/utf16_iter-1.0.5.crate) = 9736 +SHA256 (rust/crates/url-2.5.7.crate) = 08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b +SIZE (rust/crates/url-2.5.7.crate) = 87907 SHA256 (rust/crates/utf8_iter-1.0.4.crate) = b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be SIZE (rust/crates/utf8_iter-1.0.4.crate) = 10437 SHA256 (rust/crates/utf8parse-0.2.2.crate) = 06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821 SIZE (rust/crates/utf8parse-0.2.2.crate) = 13499 -SHA256 (rust/crates/uuid-1.12.1.crate) = b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b -SIZE (rust/crates/uuid-1.12.1.crate) = 48851 +SHA256 (rust/crates/uuid-1.18.1.crate) = 2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2 +SIZE (rust/crates/uuid-1.18.1.crate) = 60468 SHA256 (rust/crates/vcpkg-0.2.15.crate) = accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426 SIZE (rust/crates/vcpkg-0.2.15.crate) = 228735 -SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a -SIZE (rust/crates/version_check-0.9.5.crate) = 15554 SHA256 (rust/crates/want-0.3.1.crate) = bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e SIZE (rust/crates/want-0.3.1.crate) = 6398 -SHA256 (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423 -SIZE (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 28131 -SHA256 (rust/crates/wasm-bindgen-0.2.100.crate) = 1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5 -SIZE (rust/crates/wasm-bindgen-0.2.100.crate) = 48288 -SHA256 (rust/crates/wasm-bindgen-backend-0.2.100.crate) = 2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6 -SIZE (rust/crates/wasm-bindgen-backend-0.2.100.crate) = 32111 -SHA256 (rust/crates/wasm-bindgen-futures-0.4.50.crate) = 555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61 -SIZE (rust/crates/wasm-bindgen-futures-0.4.50.crate) = 16181 -SHA256 (rust/crates/wasm-bindgen-macro-0.2.100.crate) = 7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407 -SIZE (rust/crates/wasm-bindgen-macro-0.2.100.crate) = 9663 -SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de -SIZE (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 26243 -SHA256 (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d -SIZE (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 8570 -SHA256 (rust/crates/web-sys-0.3.77.crate) = 33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2 -SIZE (rust/crates/web-sys-0.3.77.crate) = 638246 +SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b +SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 +SHA256 (rust/crates/wasi-0.14.7+wasi-0.2.4.crate) = 883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c +SIZE (rust/crates/wasi-0.14.7+wasi-0.2.4.crate) = 18219 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 +SHA256 (rust/crates/wasm-bindgen-0.2.103.crate) = ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819 +SIZE (rust/crates/wasm-bindgen-0.2.103.crate) = 47309 +SHA256 (rust/crates/wasm-bindgen-backend-0.2.103.crate) = 0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c +SIZE (rust/crates/wasm-bindgen-backend-0.2.103.crate) = 32238 +SHA256 (rust/crates/wasm-bindgen-futures-0.4.53.crate) = a0b221ff421256839509adbb55998214a70d829d3a28c69b4a6672e9d2a42f67 +SIZE (rust/crates/wasm-bindgen-futures-0.4.53.crate) = 16321 +SHA256 (rust/crates/wasm-bindgen-macro-0.2.103.crate) = fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0 +SIZE (rust/crates/wasm-bindgen-macro-0.2.103.crate) = 9382 +SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.103.crate) = ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32 +SIZE (rust/crates/wasm-bindgen-macro-support-0.2.103.crate) = 26418 +SHA256 (rust/crates/wasm-bindgen-shared-0.2.103.crate) = 293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf +SIZE (rust/crates/wasm-bindgen-shared-0.2.103.crate) = 9060 +SHA256 (rust/crates/web-sys-0.3.80.crate) = fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc +SIZE (rust/crates/web-sys-0.3.80.crate) = 641763 SHA256 (rust/crates/web-time-1.1.0.crate) = 5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb SIZE (rust/crates/web-time-1.1.0.crate) = 18026 -SHA256 (rust/crates/webpki-roots-0.26.7.crate) = 5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e -SIZE (rust/crates/webpki-roots-0.26.7.crate) = 249392 +SHA256 (rust/crates/webpki-roots-1.0.2.crate) = 7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2 +SIZE (rust/crates/webpki-roots-1.0.2.crate) = 255109 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 -SHA256 (rust/crates/windows-core-0.52.0.crate) = 33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9 -SIZE (rust/crates/windows-core-0.52.0.crate) = 42154 -SHA256 (rust/crates/windows-registry-0.2.0.crate) = e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0 -SIZE (rust/crates/windows-registry-0.2.0.crate) = 10470 -SHA256 (rust/crates/windows-result-0.2.0.crate) = 1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e -SIZE (rust/crates/windows-result-0.2.0.crate) = 12756 -SHA256 (rust/crates/windows-strings-0.1.0.crate) = 4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10 -SIZE (rust/crates/windows-strings-0.1.0.crate) = 13832 +SHA256 (rust/crates/windows-core-0.62.0.crate) = 57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c +SIZE (rust/crates/windows-core-0.62.0.crate) = 36955 +SHA256 (rust/crates/windows-implement-0.60.0.crate) = a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836 +SIZE (rust/crates/windows-implement-0.60.0.crate) = 15073 +SHA256 (rust/crates/windows-interface-0.59.1.crate) = bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8 +SIZE (rust/crates/windows-interface-0.59.1.crate) = 11735 +SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a +SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 +SHA256 (rust/crates/windows-link-0.2.0.crate) = 45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65 +SIZE (rust/crates/windows-link-0.2.0.crate) = 6170 +SHA256 (rust/crates/windows-result-0.4.0.crate) = 7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f +SIZE (rust/crates/windows-result-0.4.0.crate) = 13420 +SHA256 (rust/crates/windows-strings-0.5.0.crate) = 7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda +SIZE (rust/crates/windows-strings-0.5.0.crate) = 13992 SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.0.crate) = e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa +SIZE (rust/crates/windows-sys-0.61.0.crate) = 2517134 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 +SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 +SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c +SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 +SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 +SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 +SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d +SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba +SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/winnow-0.6.24.crate) = c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a -SIZE (rust/crates/winnow-0.6.24.crate) = 165680 -SHA256 (rust/crates/write16-1.0.0.crate) = d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936 -SIZE (rust/crates/write16-1.0.0.crate) = 7218 -SHA256 (rust/crates/writeable-0.5.5.crate) = 1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51 -SIZE (rust/crates/writeable-0.5.5.crate) = 22354 -SHA256 (rust/crates/yoke-0.7.5.crate) = 120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40 -SIZE (rust/crates/yoke-0.7.5.crate) = 29673 -SHA256 (rust/crates/yoke-derive-0.7.5.crate) = 2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154 -SIZE (rust/crates/yoke-derive-0.7.5.crate) = 7525 -SHA256 (rust/crates/zerocopy-0.7.35.crate) = 1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0 -SIZE (rust/crates/zerocopy-0.7.35.crate) = 152645 -SHA256 (rust/crates/zerocopy-derive-0.7.35.crate) = fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e -SIZE (rust/crates/zerocopy-derive-0.7.35.crate) = 37829 -SHA256 (rust/crates/zerofrom-0.1.5.crate) = cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e -SIZE (rust/crates/zerofrom-0.1.5.crate) = 5091 -SHA256 (rust/crates/zerofrom-derive-0.1.5.crate) = 595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808 -SIZE (rust/crates/zerofrom-derive-0.1.5.crate) = 8285 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 +SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 +SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf +SIZE (rust/crates/winnow-0.7.13.crate) = 174454 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 +SHA256 (rust/crates/writeable-0.6.1.crate) = ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb +SIZE (rust/crates/writeable-0.6.1.crate) = 24068 +SHA256 (rust/crates/yoke-0.8.0.crate) = 5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc +SIZE (rust/crates/yoke-0.8.0.crate) = 28726 +SHA256 (rust/crates/yoke-derive-0.8.0.crate) = 38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6 +SIZE (rust/crates/yoke-derive-0.8.0.crate) = 7521 +SHA256 (rust/crates/zerocopy-0.8.27.crate) = 0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c +SIZE (rust/crates/zerocopy-0.8.27.crate) = 252663 +SHA256 (rust/crates/zerocopy-derive-0.8.27.crate) = 88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831 +SIZE (rust/crates/zerocopy-derive-0.8.27.crate) = 89827 +SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5 +SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 +SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 +SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 -SHA256 (rust/crates/zerovec-0.10.4.crate) = aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079 -SIZE (rust/crates/zerovec-0.10.4.crate) = 126398 -SHA256 (rust/crates/zerovec-derive-0.10.3.crate) = 6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6 -SIZE (rust/crates/zerovec-derive-0.10.3.crate) = 19438 -SHA256 (NLnetLabs-routinator-v0.14.2_GH0.tar.gz) = fe89be1da8a8b3467c627010c0a5dae241beceffc427c17ef16501adddebb6ad -SIZE (NLnetLabs-routinator-v0.14.2_GH0.tar.gz) = 5550847 +SHA256 (rust/crates/zerotrie-0.2.2.crate) = 36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595 +SIZE (rust/crates/zerotrie-0.2.2.crate) = 74423 +SHA256 (rust/crates/zerovec-0.11.4.crate) = e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b +SIZE (rust/crates/zerovec-0.11.4.crate) = 125080 +SHA256 (rust/crates/zerovec-derive-0.11.1.crate) = 5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f +SIZE (rust/crates/zerovec-derive-0.11.1.crate) = 21294 +SHA256 (NLnetLabs-routinator-v0.15.0_GH0.tar.gz) = c56998f42ece7fb700db04e8f48bcc62a4d0811578a2f94490db4d0ed3762d0a +SIZE (NLnetLabs-routinator-v0.15.0_GH0.tar.gz) = 5651364 diff --git a/security/Makefile b/security/Makefile index 44333c31f3b1..c49e8676f481 100644 --- a/security/Makefile +++ b/security/Makefile @@ -895,6 +895,7 @@ SUBDIR += py-bcrypt SUBDIR += py-bitbox02 SUBDIR += py-btchip-python + SUBDIR += py-cart SUBDIR += py-cerealizer SUBDIR += py-cert-human SUBDIR += py-certbot diff --git a/security/py-cart/Makefile b/security/py-cart/Makefile new file mode 100644 index 000000000000..28b846d349a5 --- /dev/null +++ b/security/py-cart/Makefile @@ -0,0 +1,24 @@ +PORTNAME= cart +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.3 +CATEGORIES= security python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= CaRT Neutering format +WWW= https://github.com/CybercentreCanada/cart + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist concurrent distutils unittest + +USE_GITHUB= yes +GH_ACCOUNT= CybercentreCanada + +# tests as of 1.2.3: 11 passed, 0 failed (8.309s) + +.include <bsd.port.mk> diff --git a/security/py-cart/distinfo b/security/py-cart/distinfo new file mode 100644 index 000000000000..c6fafa96ae72 --- /dev/null +++ b/security/py-cart/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759797601 +SHA256 (CybercentreCanada-cart-v1.2.3_GH0.tar.gz) = 4b2921931b95c4a5ba81d690f8dc3107a0a1fab04470c146251faf6d6ed1a151 +SIZE (CybercentreCanada-cart-v1.2.3_GH0.tar.gz) = 16176 diff --git a/security/py-cart/pkg-descr b/security/py-cart/pkg-descr new file mode 100644 index 000000000000..9801710bc60c --- /dev/null +++ b/security/py-cart/pkg-descr @@ -0,0 +1,3 @@ +Compressed and RC4 Transport (CaRT) Neutering format. This is a file format that +is used to neuter malware files for distribution in the malware analyst +community. diff --git a/security/vuxml/vuln/2025.xml b/security/vuxml/vuln/2025.xml index 68f0dfd0ba24..40c4f7ffc7bb 100644 --- a/security/vuxml/vuln/2025.xml +++ b/security/vuxml/vuln/2025.xml @@ -1,3 +1,79 @@ + <vuln vid="f60c790a-a394-11f0-9617-b42e991fc52e"> + <topic>Mozilla -- Incorrect boundary conditions</topic> + <affects> + <package> + <name>firefox</name> + <range><lt>143.0.0,2</lt></range> + </package> + <package> + <name>firefox-esr</name> + <range><lt>140.3</lt></range> + </package> + <package> + <name>thunderbird</name> + <range><lt>143.0</lt></range> + </package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>security@mozilla.org reports:</p> + <blockquote cite="https://bugzilla.mozilla.org/show_bug.cgi?id=1979502"> + <p>The vulnerability has been assessed to have moderate + impact on affected systems, potentially allowing attackers + to exploit incorrect boundary conditions in the JavaScript + Garbage Collection component. In Thunderbird specifically, + these flaws cannot be exploited through email as scripting + is disabled when reading mail, but remain potential risks in + browser or browser-like contexts </p> + </blockquote> + </body> + </description> + <references> + <cvename>CVE-2025-10532</cvename> + <url>https://nvd.nist.gov/vuln/detail/CVE-2025-10532</url> + </references> + <dates> + <discovery>2025-09-16</discovery> + <entry>2025-10-07</entry> + </dates> + </vuln> + + <vuln vid="a240c31b-a394-11f0-9617-b42e991fc52e"> + <topic>Mozilla -- mitigation bypass vulnerability</topic> + <affects> + <package> + <name>firefox</name> + <range><lt>143.0,2</lt></range> + </package> + <package> + <name>thunderbird</name> + <range><lt>143.0</lt></range> + </package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>security@mozilla.org reports:</p> + <blockquote cite="https://bugzilla.mozilla.org/show_bug.cgi?id=1978453"> + <p>The vulnerability has been rated as having moderate + impact, affecting both confidentiality and integrity + with low severity, while having no impact on + availability. For Thunderbird specifically, the + vulnerability cannot be exploited through email as + scripting is disabled when reading mail, but remains a + potential risk in browser or browser-like contexts </p> + </blockquote> + </body> + </description> + <references> + <cvename>CVE-2025-10531</cvename> + <url>https://nvd.nist.gov/vuln/detail/CVE-2025-10531</url> + </references> + <dates> + <discovery>2025-09-16</discovery> + <entry>2025-10-07</entry> + </dates> + </vuln> + <vuln vid="f2de2f64-a2cc-11f0-8402-b42e991fc52e"> <topic>Mozilla -- Sandbox escape due to use-after-free</topic> <affects> @@ -45,10 +121,6 @@ <name>mongodb70</name> <range><lt>7.0.22</lt></range> </package> - <package> - <name>mongodb80</name> - <range><lt>8.1.2</lt></range> - </package> </affects> <description> <body xmlns="http://www.w3.org/1999/xhtml"> @@ -70,6 +142,7 @@ <dates> <discovery>2025-09-05</discovery> <entry>2025-10-06</entry> + <modified>2025-10-07</modified> </dates> </vuln> @@ -147,36 +220,6 @@ </dates> </vuln> - <vuln vid="92880bca-a2c9-11f0-8402-b42e991fc52e"> - <topic>mongodb -- Certain Queries May Cause MongoDB Server to Crash</topic> - <affects> - <package> - <name>mongodb80</name> - <range><lt>8.1.0</lt></range> - </package> - </affects> - <description> - <body xmlns="http://www.w3.org/1999/xhtml"> - <p>cna@mongodb.com reports:</p> - <blockquote cite="https://jira.mongodb.org/browse/SERVER-102693"> - <p>An authorized user can issue queries with duplicate _id fields, - that leads to unexpected behavior in MongoDB Server, which may - result to crash. This issue can only be triggered by authorized - users and cause Denial of Service. This issue affects MongoDB - Server v8.1 version 8.1.0.</p> - </blockquote> - </body> - </description> - <references> - <cvename>CVE-2025-7259</cvename> - <url>https://nvd.nist.gov/vuln/detail/CVE-2025-7259</url> - </references> - <dates> - <discovery>2025-07-07</discovery> - <entry>2025-10-06</entry> - </dates> - </vuln> - <vuln vid="a9dc3c61-a20f-11f0-91d8-b42e991fc52e"> <topic>mongodb -- MongoDB Server access to non-initialized memory</topic> <affects> diff --git a/sysutils/mise/Makefile b/sysutils/mise/Makefile index f4f897c97b2b..21b3d88aada4 100644 --- a/sysutils/mise/Makefile +++ b/sysutils/mise/Makefile @@ -1,6 +1,6 @@ PORTNAME= mise DISTVERSIONPREFIX= v -DISTVERSION= 2025.9.16 +DISTVERSION= 2025.10.4 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org @@ -26,7 +26,7 @@ USE_GITHUB= yes GH_ACCOUNT= jdx CARGO_BUILDDEP= no -CARGO_CRATES= addr2line-0.24.2 \ +CARGO_CRATES= addr2line-0.25.1 \ adler2-2.0.1 \ aead-0.5.2 \ aes-0.8.4 \ @@ -41,7 +41,7 @@ CARGO_CRATES= addr2line-0.24.2 \ ansi-str-0.9.0 \ ansitok-0.3.0 \ anstream-0.6.20 \ - anstyle-1.0.11 \ + anstyle-1.0.13 \ anstyle-parse-0.2.7 \ anstyle-query-1.1.4 \ anstyle-wincon-3.0.10 \ @@ -56,24 +56,24 @@ CARGO_CRATES= addr2line-0.24.2 \ assert-json-diff-2.0.2 \ async-backtrace-0.2.7 \ async-backtrace-attributes-0.2.7 \ - async-compression-0.4.30 \ + async-compression-0.4.32 \ async-recursion-1.1.1 \ async-trait-0.1.89 \ atomic-waker-1.1.2 \ autocfg-1.5.0 \ - aws-lc-fips-sys-0.13.7 \ - aws-lc-rs-1.14.0 \ - aws-lc-sys-0.31.0 \ - backtrace-0.3.75 \ + aws-lc-fips-sys-0.13.8 \ + aws-lc-rs-1.14.1 \ + aws-lc-sys-0.32.2 \ + backtrace-0.3.76 \ base16ct-0.2.0 \ base64-0.13.1 \ base64-0.21.7 \ base64-0.22.1 \ base64ct-1.8.0 \ basic-toml-0.1.10 \ + bcrypt-pbkdf-0.10.0 \ bech32-0.9.1 \ beef-0.5.2 \ - bindgen-0.69.5 \ bindgen-0.72.1 \ binstall-tar-0.4.42 \ bit-set-0.6.0 \ @@ -82,6 +82,7 @@ CARGO_CRATES= addr2line-0.24.2 \ blake3-1.8.2 \ block-buffer-0.10.4 \ block-padding-0.3.3 \ + blowfish-0.9.1 \ bstr-1.12.0 \ built-0.8.0 \ bumpalo-3.19.0 \ @@ -95,7 +96,7 @@ CARGO_CRATES= addr2line-0.24.2 \ calm_io-0.1.1 \ calmio_filters-0.1.0 \ cbc-0.1.2 \ - cc-1.2.38 \ + cc-1.2.39 \ cesu8-1.1.0 \ cexpr-0.6.0 \ cfg-if-1.0.3 \ @@ -123,7 +124,7 @@ CARGO_CRATES= addr2line-0.24.2 \ colored-3.0.0 \ combine-4.6.7 \ comfy-table-7.2.1 \ - compression-codecs-0.4.30 \ + compression-codecs-0.4.31 \ compression-core-0.4.29 \ confique-0.3.1 \ confique-macro-0.0.12 \ @@ -170,11 +171,11 @@ CARGO_CRATES= addr2line-0.24.2 \ deadpool-runtime-0.1.4 \ decoded-char-0.1.1 \ deflate64-0.1.9 \ - demand-1.7.0 \ + demand-1.7.2 \ der-0.7.10 \ der-parser-10.0.0 \ der_derive-0.7.3 \ - deranged-0.5.3 \ + deranged-0.5.4 \ derive_arbitrary-1.4.2 \ derive_builder-0.20.2 \ derive_builder_core-0.20.2 \ @@ -253,7 +254,7 @@ CARGO_CRATES= addr2line-0.24.2 \ getrandom-0.3.3 \ getset-0.1.6 \ ghash-0.5.1 \ - gimli-0.31.1 \ + gimli-0.32.3 \ gix-0.73.0 \ gix-actor-0.35.4 \ gix-archive-0.22.0 \ @@ -357,7 +358,7 @@ CARGO_CRATES= addr2line-0.24.2 \ ignore-0.4.23 \ imara-diff-0.1.8 \ impl-tools-0.10.3 \ - impl-tools-lib-0.11.3 \ + impl-tools-lib-0.11.4 \ indenter-0.3.4 \ indexmap-1.9.3 \ indexmap-2.11.4 \ @@ -375,7 +376,6 @@ CARGO_CRATES= addr2line-0.24.2 \ iri-string-0.7.8 \ is_terminal_polyfill-1.70.1 \ itertools-0.10.5 \ - itertools-0.12.1 \ itertools-0.13.0 \ itertools-0.14.0 \ itoa-1.0.15 \ @@ -386,7 +386,7 @@ CARGO_CRATES= addr2line-0.24.2 \ jni-0.21.1 \ jni-sys-0.3.0 \ jobserver-0.1.34 \ - js-sys-0.3.80 \ + js-sys-0.3.81 \ json-number-0.4.9 \ json-syntax-0.12.5 \ junction-1.3.0 \ @@ -396,21 +396,19 @@ CARGO_CRATES= addr2line-0.24.2 \ lazy-regex-3.4.1 \ lazy-regex-proc_macros-3.4.1 \ lazy_static-1.5.0 \ - lazycell-1.3.0 \ - lexical-7.0.4 \ - lexical-core-1.0.5 \ - lexical-parse-float-1.0.5 \ - lexical-parse-integer-1.0.5 \ - lexical-util-1.0.6 \ - lexical-write-float-1.0.5 \ - lexical-write-integer-1.0.5 \ + lexical-7.0.5 \ + lexical-core-1.0.6 \ + lexical-parse-float-1.0.6 \ + lexical-parse-integer-1.0.6 \ + lexical-util-1.0.7 \ + lexical-write-float-1.0.6 \ + lexical-write-integer-1.0.6 \ libbz2-rs-sys-0.2.2 \ - libc-0.2.175 \ + libc-0.2.176 \ libloading-0.8.8 \ libm-0.2.15 \ libredox-0.1.10 \ libz-rs-sys-0.5.2 \ - linux-raw-sys-0.4.15 \ linux-raw-sys-0.11.0 \ litemap-0.8.0 \ litrs-0.4.2 \ @@ -422,7 +420,7 @@ CARGO_CRATES= addr2line-0.24.2 \ logos-derive-0.12.1 \ loom-0.5.6 \ lru-slab-0.1.2 \ - lua-src-548.1.1 \ + lua-src-548.1.2 \ luajit-src-210.6.1+f9140a6 \ lzma-rs-0.3.0 \ lzma-rust-0.1.7 \ @@ -431,7 +429,7 @@ CARGO_CRATES= addr2line-0.24.2 \ matchers-0.2.0 \ maybe-async-0.2.10 \ md-5-0.10.6 \ - memchr-2.7.5 \ + memchr-2.7.6 \ memmap2-0.9.8 \ memoffset-0.9.1 \ miette-7.6.0 \ @@ -442,7 +440,7 @@ CARGO_CRATES= addr2line-0.24.2 \ minisign-verify-0.2.4 \ miniz_oxide-0.8.9 \ mio-1.0.4 \ - mlua-0.11.3 \ + mlua-0.11.4 \ mlua-sys-0.8.3 \ mlua_derive-0.11.0 \ mockito-1.7.0 \ @@ -469,7 +467,7 @@ CARGO_CRATES= addr2line-0.24.2 \ objc2-0.6.2 \ objc2-encode-4.1.0 \ objc2-foundation-0.3.1 \ - object-0.36.7 \ + object-0.37.3 \ oci-client-0.15.0 \ oci-spec-0.8.2 \ oid-registry-0.8.1 \ @@ -486,7 +484,7 @@ CARGO_CRATES= addr2line-0.24.2 \ ordered-float-2.10.1 \ os-release-0.1.0 \ os_pipe-1.2.2 \ - owo-colors-4.2.2 \ + owo-colors-4.2.3 \ p256-0.13.2 \ p384-0.13.1 \ papergrid-0.17.0 \ @@ -506,7 +504,7 @@ CARGO_CRATES= addr2line-0.24.2 \ pest_generator-2.8.2 \ pest_meta-2.8.2 \ petgraph-0.7.1 \ - petgraph-0.8.2 \ + petgraph-0.8.3 \ phf-0.11.3 \ phf_codegen-0.11.3 \ phf_generator-0.11.3 \ @@ -549,7 +547,7 @@ CARGO_CRATES= addr2line-0.24.2 \ quinn-0.11.9 \ quinn-proto-0.11.13 \ quinn-udp-0.5.14 \ - quote-1.0.40 \ + quote-1.0.41 \ r-efi-5.3.0 \ rand-0.8.5 \ rand-0.9.2 \ @@ -559,10 +557,10 @@ CARGO_CRATES= addr2line-0.24.2 \ rand_core-0.9.3 \ redox_syscall-0.5.17 \ redox_users-0.5.2 \ - ref-cast-1.0.24 \ - ref-cast-impl-1.0.24 \ - regex-1.11.2 \ - regex-automata-0.4.10 \ + ref-cast-1.0.25 \ + ref-cast-impl-1.0.25 \ + regex-1.11.3 \ + regex-automata-0.4.11 \ regex-syntax-0.6.29 \ regex-syntax-0.8.6 \ reqwest-0.12.23 \ @@ -584,7 +582,6 @@ CARGO_CRATES= addr2line-0.24.2 \ rustc-hash-2.1.1 \ rustc_version-0.4.1 \ rusticata-macros-4.1.0 \ - rustix-0.38.44 \ rustix-1.1.2 \ rustls-0.23.32 \ rustls-native-certs-0.8.1 \ @@ -607,17 +604,17 @@ CARGO_CRATES= addr2line-0.24.2 \ sec1-0.7.3 \ secrecy-0.10.3 \ security-framework-2.11.1 \ - security-framework-3.4.0 \ + security-framework-3.5.1 \ security-framework-sys-2.15.0 \ self-replace-1.5.0 \ self_cell-0.10.3 \ self_cell-1.2.0 \ self_update-0.42.0 \ semver-1.0.27 \ - serde-1.0.225 \ + serde-1.0.228 \ serde-value-0.7.0 \ - serde_core-1.0.225 \ - serde_derive-1.0.225 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ serde_derive_internals-0.29.1 \ serde_ignored-0.1.14 \ serde_json-1.0.145 \ @@ -680,7 +677,7 @@ CARGO_CRATES= addr2line-0.24.2 \ tabled_derive-0.11.0 \ taplo-0.14.0 \ tar-0.4.44 \ - tempfile-3.22.0 \ + tempfile-3.23.0 \ tera-1.20.0 \ termcolor-1.4.1 \ terminal_size-0.4.3 \ @@ -689,9 +686,9 @@ CARGO_CRATES= addr2line-0.24.2 \ testing_table-0.3.0 \ text-size-1.1.1 \ thiserror-1.0.69 \ - thiserror-2.0.16 \ + thiserror-2.0.17 \ thiserror-impl-1.0.69 \ - thiserror-impl-2.0.16 \ + thiserror-impl-2.0.17 \ thread_local-1.1.9 \ time-0.3.44 \ time-core-0.1.6 \ @@ -704,7 +701,8 @@ CARGO_CRATES= addr2line-0.24.2 \ tokio-1.47.1 \ tokio-macros-2.5.0 \ tokio-native-tls-0.3.1 \ - tokio-rustls-0.26.3 \ + tokio-retry-0.3.0 \ + tokio-rustls-0.26.4 \ tokio-util-0.7.16 \ toml-0.5.11 \ toml-0.8.23 \ @@ -753,7 +751,7 @@ CARGO_CRATES= addr2line-0.24.2 \ untrusted-0.9.0 \ url-2.5.7 \ urlencoding-2.1.3 \ - usage-lib-2.2.2 \ + usage-lib-2.3.2 \ utf8-decode-1.0.1 \ utf8_iter-1.0.4 \ utf8parse-0.2.2 \ @@ -768,18 +766,17 @@ CARGO_CRATES= addr2line-0.24.2 \ wasi-0.11.1+wasi-snapshot-preview1 \ wasi-0.14.7+wasi-0.2.4 \ wasip2-1.0.1+wasi-0.2.4 \ - wasm-bindgen-0.2.103 \ - wasm-bindgen-backend-0.2.103 \ - wasm-bindgen-futures-0.4.53 \ - wasm-bindgen-macro-0.2.103 \ - wasm-bindgen-macro-support-0.2.103 \ - wasm-bindgen-shared-0.2.103 \ + wasm-bindgen-0.2.104 \ + wasm-bindgen-backend-0.2.104 \ + wasm-bindgen-futures-0.4.54 \ + wasm-bindgen-macro-0.2.104 \ + wasm-bindgen-macro-support-0.2.104 \ + wasm-bindgen-shared-0.2.104 \ wasm-streams-0.4.2 \ - web-sys-0.3.80 \ + web-sys-0.3.81 \ web-time-1.1.0 \ webbrowser-1.0.5 \ webpki-roots-1.0.2 \ - which-4.4.2 \ which-7.0.3 \ which-8.0.0 \ widestring-1.2.0 \ @@ -791,10 +788,10 @@ CARGO_CRATES= addr2line-0.24.2 \ windows-0.61.3 \ windows-collections-0.2.0 \ windows-core-0.61.2 \ - windows-core-0.62.0 \ + windows-core-0.62.1 \ windows-future-0.2.1 \ - windows-implement-0.60.0 \ - windows-interface-0.59.1 \ + windows-implement-0.60.1 \ + windows-interface-0.59.2 \ windows-link-0.1.3 \ windows-link-0.2.0 \ windows-numerics-0.2.0 \ @@ -807,11 +804,11 @@ CARGO_CRATES= addr2line-0.24.2 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ windows-sys-0.60.2 \ - windows-sys-0.61.0 \ + windows-sys-0.61.1 \ windows-targets-0.42.2 \ windows-targets-0.48.5 \ windows-targets-0.52.6 \ - windows-targets-0.53.3 \ + windows-targets-0.53.4 \ windows-threading-0.1.0 \ windows_aarch64_gnullvm-0.42.2 \ windows_aarch64_gnullvm-0.48.5 \ @@ -852,7 +849,7 @@ CARGO_CRATES= addr2line-0.24.2 \ x25519-dalek-2.0.1 \ x509-cert-0.2.5 \ x509-parser-0.18.0 \ - xattr-1.5.1 \ + xattr-1.6.1 \ xx-2.2.0 \ xz2-0.1.7 \ yansi-1.0.1 \ @@ -862,7 +859,7 @@ CARGO_CRATES= addr2line-0.24.2 \ zerocopy-derive-0.8.27 \ zerofrom-0.1.6 \ zerofrom-derive-0.1.6 \ - zeroize-1.8.1 \ + zeroize-1.8.2 \ zeroize_derive-1.4.2 \ zerotrie-0.2.2 \ zerovec-0.11.4 \ diff --git a/sysutils/mise/distinfo b/sysutils/mise/distinfo index 6e88a60a1498..cab5b3e340fe 100644 --- a/sysutils/mise/distinfo +++ b/sysutils/mise/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1758602627 -SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 -SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 +TIMESTAMP = 1759816966 +SHA256 (rust/crates/addr2line-0.25.1.crate) = 1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b +SIZE (rust/crates/addr2line-0.25.1.crate) = 43134 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/aead-0.5.2.crate) = d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0 @@ -29,8 +29,8 @@ SHA256 (rust/crates/ansitok-0.3.0.crate) = c0a8acea8c2f1c60f0a92a8cd26bf96ca97db SIZE (rust/crates/ansitok-0.3.0.crate) = 18163 SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 SIZE (rust/crates/anstream-0.6.20.crate) = 28797 -SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd -SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 @@ -59,8 +59,8 @@ SHA256 (rust/crates/async-backtrace-0.2.7.crate) = 4dcb391558246d27a13f195c1e3a5 SIZE (rust/crates/async-backtrace-0.2.7.crate) = 26749 SHA256 (rust/crates/async-backtrace-attributes-0.2.7.crate) = affbba0d438add06462a0371997575927bc05052f7ec486e7a4ca405c956c3d7 SIZE (rust/crates/async-backtrace-attributes-0.2.7.crate) = 6938 -SHA256 (rust/crates/async-compression-0.4.30.crate) = 977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23 -SIZE (rust/crates/async-compression-0.4.30.crate) = 98817 +SHA256 (rust/crates/async-compression-0.4.32.crate) = 5a89bce6054c720275ac2432fbba080a66a2106a44a1b804553930ca6909f4e0 +SIZE (rust/crates/async-compression-0.4.32.crate) = 98949 SHA256 (rust/crates/async-recursion-1.1.1.crate) = 3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11 SIZE (rust/crates/async-recursion-1.1.1.crate) = 14874 SHA256 (rust/crates/async-trait-0.1.89.crate) = 9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb @@ -69,14 +69,14 @@ SHA256 (rust/crates/atomic-waker-1.1.2.crate) = 1505bd5d3d116872e7271a6d4e16d81d SIZE (rust/crates/atomic-waker-1.1.2.crate) = 12422 SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 -SHA256 (rust/crates/aws-lc-fips-sys-0.13.7.crate) = 2608e5a7965cc9d58c56234d346c9c89b824c4c8652b6f047b3bd0a777c0644f -SIZE (rust/crates/aws-lc-fips-sys-0.13.7.crate) = 7731592 -SHA256 (rust/crates/aws-lc-rs-1.14.0.crate) = 94b8ff6c09cd57b16da53641caa860168b88c172a5ee163b0288d3d6eea12786 -SIZE (rust/crates/aws-lc-rs-1.14.0.crate) = 209900 -SHA256 (rust/crates/aws-lc-sys-0.31.0.crate) = 0e44d16778acaf6a9ec9899b92cebd65580b83f685446bf2e1f5d3d732f99dcd -SIZE (rust/crates/aws-lc-sys-0.31.0.crate) = 9255328 -SHA256 (rust/crates/backtrace-0.3.75.crate) = 6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002 -SIZE (rust/crates/backtrace-0.3.75.crate) = 92665 +SHA256 (rust/crates/aws-lc-fips-sys-0.13.8.crate) = 8e78aabce84ab79501f4777e89cdcaec2a6ba9b051e6e6f26496598a84215c26 +SIZE (rust/crates/aws-lc-fips-sys-0.13.8.crate) = 7788231 +SHA256 (rust/crates/aws-lc-rs-1.14.1.crate) = 879b6c89592deb404ba4dc0ae6b58ffd1795c78991cbb5b8bc441c48a070440d +SIZE (rust/crates/aws-lc-rs-1.14.1.crate) = 209341 +SHA256 (rust/crates/aws-lc-sys-0.32.2.crate) = a2b715a6010afb9e457ca2b7c9d2b9c344baa8baed7b38dc476034c171b32575 +SIZE (rust/crates/aws-lc-sys-0.32.2.crate) = 9358097 +SHA256 (rust/crates/backtrace-0.3.76.crate) = bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6 +SIZE (rust/crates/backtrace-0.3.76.crate) = 89458 SHA256 (rust/crates/base16ct-0.2.0.crate) = 4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf SIZE (rust/crates/base16ct-0.2.0.crate) = 10240 SHA256 (rust/crates/base64-0.13.1.crate) = 9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8 @@ -89,12 +89,12 @@ SHA256 (rust/crates/base64ct-1.8.0.crate) = 55248b47b0caf0546f7988906588779981c4 SIZE (rust/crates/base64ct-1.8.0.crate) = 31211 SHA256 (rust/crates/basic-toml-0.1.10.crate) = ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a SIZE (rust/crates/basic-toml-0.1.10.crate) = 50648 +SHA256 (rust/crates/bcrypt-pbkdf-0.10.0.crate) = 6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2 +SIZE (rust/crates/bcrypt-pbkdf-0.10.0.crate) = 11032 SHA256 (rust/crates/bech32-0.9.1.crate) = d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445 SIZE (rust/crates/bech32-0.9.1.crate) = 11133 SHA256 (rust/crates/beef-0.5.2.crate) = 3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1 SIZE (rust/crates/beef-0.5.2.crate) = 15275 -SHA256 (rust/crates/bindgen-0.69.5.crate) = 271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088 -SIZE (rust/crates/bindgen-0.69.5.crate) = 221128 SHA256 (rust/crates/bindgen-0.72.1.crate) = 993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895 SIZE (rust/crates/bindgen-0.72.1.crate) = 246071 SHA256 (rust/crates/binstall-tar-0.4.42.crate) = e3620d72763b5d8df3384f3b2ec47dc5885441c2abbd94dd32197167d08b014a @@ -111,6 +111,8 @@ SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996a SIZE (rust/crates/block-buffer-0.10.4.crate) = 10538 SHA256 (rust/crates/block-padding-0.3.3.crate) = a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93 SIZE (rust/crates/block-padding-0.3.3.crate) = 8504 +SHA256 (rust/crates/blowfish-0.9.1.crate) = e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7 +SIZE (rust/crates/blowfish-0.9.1.crate) = 16734 SHA256 (rust/crates/bstr-1.12.0.crate) = 234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4 SIZE (rust/crates/bstr-1.12.0.crate) = 351557 SHA256 (rust/crates/built-0.8.0.crate) = f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64 @@ -137,8 +139,8 @@ SHA256 (rust/crates/calmio_filters-0.1.0.crate) = 846501f4575cd66766a40bb7ab6d8e SIZE (rust/crates/calmio_filters-0.1.0.crate) = 1930 SHA256 (rust/crates/cbc-0.1.2.crate) = 26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6 SIZE (rust/crates/cbc-0.1.2.crate) = 23501 -SHA256 (rust/crates/cc-1.2.38.crate) = 80f41ae168f955c12fb8960b057d70d0ca153fb83182b57d86380443527be7e9 -SIZE (rust/crates/cc-1.2.38.crate) = 90139 +SHA256 (rust/crates/cc-1.2.39.crate) = e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f +SIZE (rust/crates/cc-1.2.39.crate) = 90774 SHA256 (rust/crates/cesu8-1.1.0.crate) = 6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c SIZE (rust/crates/cesu8-1.1.0.crate) = 10555 SHA256 (rust/crates/cexpr-0.6.0.crate) = 6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766 @@ -193,8 +195,8 @@ SHA256 (rust/crates/combine-4.6.7.crate) = ba5a308b75df32fe02788e748662718f03fde SIZE (rust/crates/combine-4.6.7.crate) = 134808 SHA256 (rust/crates/comfy-table-7.2.1.crate) = b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b SIZE (rust/crates/comfy-table-7.2.1.crate) = 78509 -SHA256 (rust/crates/compression-codecs-0.4.30.crate) = 485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64 -SIZE (rust/crates/compression-codecs-0.4.30.crate) = 22516 +SHA256 (rust/crates/compression-codecs-0.4.31.crate) = ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23 +SIZE (rust/crates/compression-codecs-0.4.31.crate) = 22694 SHA256 (rust/crates/compression-core-0.4.29.crate) = e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb SIZE (rust/crates/compression-core-0.4.29.crate) = 4321 SHA256 (rust/crates/confique-0.3.1.crate) = 33cbbbdc4e7bec8bd8a61bc21159fc79fa22004754feb0a83f78119b3918e0b3 @@ -287,16 +289,16 @@ SHA256 (rust/crates/decoded-char-0.1.1.crate) = 5440d1dc8ea7cae44cda3c64568db29b SIZE (rust/crates/decoded-char-0.1.1.crate) = 7209 SHA256 (rust/crates/deflate64-0.1.9.crate) = da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b SIZE (rust/crates/deflate64-0.1.9.crate) = 15104 -SHA256 (rust/crates/demand-1.7.0.crate) = 081fee97d4d3dfb2baf0333ccf376b5cae24448afe5c5652861bb987853d685c -SIZE (rust/crates/demand-1.7.0.crate) = 28958 +SHA256 (rust/crates/demand-1.7.2.crate) = e6f9a432da2d63474bb4c7401ee066b0f9b25f126a8fc21a186c8117f9eff5d1 +SIZE (rust/crates/demand-1.7.2.crate) = 29456 SHA256 (rust/crates/der-0.7.10.crate) = e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb SIZE (rust/crates/der-0.7.10.crate) = 90111 SHA256 (rust/crates/der-parser-10.0.0.crate) = 07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6 SIZE (rust/crates/der-parser-10.0.0.crate) = 66186 SHA256 (rust/crates/der_derive-0.7.3.crate) = 8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18 SIZE (rust/crates/der_derive-0.7.3.crate) = 24657 -SHA256 (rust/crates/deranged-0.5.3.crate) = d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc -SIZE (rust/crates/deranged-0.5.3.crate) = 24353 +SHA256 (rust/crates/deranged-0.5.4.crate) = a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071 +SIZE (rust/crates/deranged-0.5.4.crate) = 24461 SHA256 (rust/crates/derive_arbitrary-1.4.2.crate) = 1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a SIZE (rust/crates/derive_arbitrary-1.4.2.crate) = 12290 SHA256 (rust/crates/derive_builder-0.20.2.crate) = 507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947 @@ -453,8 +455,8 @@ SHA256 (rust/crates/getset-0.1.6.crate) = 9cf0fc11e47561d47397154977bc219f4cf809 SIZE (rust/crates/getset-0.1.6.crate) = 10072 SHA256 (rust/crates/ghash-0.5.1.crate) = f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1 SIZE (rust/crates/ghash-0.5.1.crate) = 9482 -SHA256 (rust/crates/gimli-0.31.1.crate) = 07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f -SIZE (rust/crates/gimli-0.31.1.crate) = 279515 +SHA256 (rust/crates/gimli-0.32.3.crate) = e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7 +SIZE (rust/crates/gimli-0.32.3.crate) = 289789 SHA256 (rust/crates/gix-0.73.0.crate) = 514c29cc879bdc0286b0cbc205585a49b252809eb86c69df4ce4f855ee75f635 SIZE (rust/crates/gix-0.73.0.crate) = 295986 SHA256 (rust/crates/gix-actor-0.35.4.crate) = 2d36dcf9efe32b51b12dfa33cedff8414926124e760a32f9e7a6b5580d280967 @@ -661,8 +663,8 @@ SHA256 (rust/crates/imara-diff-0.1.8.crate) = 17d34b7d42178945f775e84bc4c36dde7c SIZE (rust/crates/imara-diff-0.1.8.crate) = 155787 SHA256 (rust/crates/impl-tools-0.10.3.crate) = 0ae95c9095c2f1126d7db785955c73cdc5fc33e7c3fa911bd4a42931672029a7 SIZE (rust/crates/impl-tools-0.10.3.crate) = 17465 -SHA256 (rust/crates/impl-tools-lib-0.11.3.crate) = cc6a9b65dadb575faa21065e8464e88ec3e991b3d6745972dec69d1be6cffcfe -SIZE (rust/crates/impl-tools-lib-0.11.3.crate) = 27727 +SHA256 (rust/crates/impl-tools-lib-0.11.4.crate) = ab699036df31c1f7d3561bfa6e9cb9bc3bb0fd2e2cd9bf121c31cb961d049ddf +SIZE (rust/crates/impl-tools-lib-0.11.4.crate) = 28123 SHA256 (rust/crates/indenter-0.3.4.crate) = 964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5 SIZE (rust/crates/indenter-0.3.4.crate) = 11101 SHA256 (rust/crates/indexmap-1.9.3.crate) = bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99 @@ -697,8 +699,6 @@ SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 SHA256 (rust/crates/itertools-0.10.5.crate) = b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473 SIZE (rust/crates/itertools-0.10.5.crate) = 115354 -SHA256 (rust/crates/itertools-0.12.1.crate) = ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569 -SIZE (rust/crates/itertools-0.12.1.crate) = 137761 SHA256 (rust/crates/itertools-0.13.0.crate) = 413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186 SIZE (rust/crates/itertools-0.13.0.crate) = 146261 SHA256 (rust/crates/itertools-0.14.0.crate) = 2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285 @@ -719,8 +719,8 @@ SHA256 (rust/crates/jni-sys-0.3.0.crate) = 8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4 SIZE (rust/crates/jni-sys-0.3.0.crate) = 10232 SHA256 (rust/crates/jobserver-0.1.34.crate) = 9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33 SIZE (rust/crates/jobserver-0.1.34.crate) = 29013 -SHA256 (rust/crates/js-sys-0.3.80.crate) = 852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e -SIZE (rust/crates/js-sys-0.3.80.crate) = 56202 +SHA256 (rust/crates/js-sys-0.3.81.crate) = ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305 +SIZE (rust/crates/js-sys-0.3.81.crate) = 56399 SHA256 (rust/crates/json-number-0.4.9.crate) = 66994b2bac615128d07a1e4527ad29e98b004dd1a1769e7b8fbc1173ccf43006 SIZE (rust/crates/json-number-0.4.9.crate) = 12161 SHA256 (rust/crates/json-syntax-0.12.5.crate) = 044a68aba3f96d712f492b72be25e10f96201eaaca3207a7d6e68d6d5105fda9 @@ -739,26 +739,24 @@ SHA256 (rust/crates/lazy-regex-proc_macros-3.4.1.crate) = 4ba01db5ef81e17eb10a5e SIZE (rust/crates/lazy-regex-proc_macros-3.4.1.crate) = 6022 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/lazycell-1.3.0.crate) = 830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55 -SIZE (rust/crates/lazycell-1.3.0.crate) = 12502 -SHA256 (rust/crates/lexical-7.0.4.crate) = 70ed980ff02623721dc334b9105150b66d0e1f246a92ab5a2eca0335d54c48f6 -SIZE (rust/crates/lexical-7.0.4.crate) = 25816 -SHA256 (rust/crates/lexical-core-1.0.5.crate) = b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958 -SIZE (rust/crates/lexical-core-1.0.5.crate) = 27818 -SHA256 (rust/crates/lexical-parse-float-1.0.5.crate) = de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2 -SIZE (rust/crates/lexical-parse-float-1.0.5.crate) = 186731 -SHA256 (rust/crates/lexical-parse-integer-1.0.5.crate) = 72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e -SIZE (rust/crates/lexical-parse-integer-1.0.5.crate) = 36912 -SHA256 (rust/crates/lexical-util-1.0.6.crate) = 5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3 -SIZE (rust/crates/lexical-util-1.0.6.crate) = 106117 -SHA256 (rust/crates/lexical-write-float-1.0.5.crate) = c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd -SIZE (rust/crates/lexical-write-float-1.0.5.crate) = 99790 -SHA256 (rust/crates/lexical-write-integer-1.0.5.crate) = 629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978 -SIZE (rust/crates/lexical-write-integer-1.0.5.crate) = 65127 +SHA256 (rust/crates/lexical-7.0.5.crate) = 1bc8a009b2ff1f419ccc62706f04fe0ca6e67b37460513964a3dfdb919bb37d6 +SIZE (rust/crates/lexical-7.0.5.crate) = 29041 +SHA256 (rust/crates/lexical-core-1.0.6.crate) = 7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594 +SIZE (rust/crates/lexical-core-1.0.6.crate) = 30422 +SHA256 (rust/crates/lexical-parse-float-1.0.6.crate) = 52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56 +SIZE (rust/crates/lexical-parse-float-1.0.6.crate) = 194003 +SHA256 (rust/crates/lexical-parse-integer-1.0.6.crate) = 9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34 +SIZE (rust/crates/lexical-parse-integer-1.0.6.crate) = 37501 +SHA256 (rust/crates/lexical-util-1.0.7.crate) = 2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17 +SIZE (rust/crates/lexical-util-1.0.7.crate) = 111747 +SHA256 (rust/crates/lexical-write-float-1.0.6.crate) = 50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361 +SIZE (rust/crates/lexical-write-float-1.0.6.crate) = 106495 +SHA256 (rust/crates/lexical-write-integer-1.0.6.crate) = 409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df +SIZE (rust/crates/lexical-write-integer-1.0.6.crate) = 65404 SHA256 (rust/crates/libbz2-rs-sys-0.2.2.crate) = 2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7 SIZE (rust/crates/libbz2-rs-sys-0.2.2.crate) = 50880 -SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 -SIZE (rust/crates/libc-0.2.175.crate) = 788728 +SHA256 (rust/crates/libc-0.2.176.crate) = 58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174 +SIZE (rust/crates/libc-0.2.176.crate) = 790040 SHA256 (rust/crates/libloading-0.8.8.crate) = 07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667 SIZE (rust/crates/libloading-0.8.8.crate) = 31345 SHA256 (rust/crates/libm-0.2.15.crate) = f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de @@ -767,8 +765,6 @@ SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad SIZE (rust/crates/libredox-0.1.10.crate) = 7332 SHA256 (rust/crates/libz-rs-sys-0.5.2.crate) = 840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd SIZE (rust/crates/libz-rs-sys-0.5.2.crate) = 46524 -SHA256 (rust/crates/linux-raw-sys-0.4.15.crate) = d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab -SIZE (rust/crates/linux-raw-sys-0.4.15.crate) = 2150898 SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 SHA256 (rust/crates/litemap-0.8.0.crate) = 241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956 @@ -791,8 +787,8 @@ SHA256 (rust/crates/loom-0.5.6.crate) = ff50ecb28bb86013e935fb6683ab1f6d3a20016f SIZE (rust/crates/loom-0.5.6.crate) = 72186 SHA256 (rust/crates/lru-slab-0.1.2.crate) = 112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154 SIZE (rust/crates/lru-slab-0.1.2.crate) = 9090 -SHA256 (rust/crates/lua-src-548.1.1.crate) = 00bc4bd1f1d5c65b30717333cbec4fa7aa378978940a1bca62f404498d423233 -SIZE (rust/crates/lua-src-548.1.1.crate) = 668260 +SHA256 (rust/crates/lua-src-548.1.2.crate) = bdc4e1aff422ad5f08cffb4719603dcdbc2be2307f4c1510d7aab74b7fa88ca8 +SIZE (rust/crates/lua-src-548.1.2.crate) = 669450 SHA256 (rust/crates/luajit-src-210.6.1+f9140a6.crate) = 813bd31f2759443affa687c0d9c5eb5cf6cb0e898810ab197408431d746054bf SIZE (rust/crates/luajit-src-210.6.1+f9140a6.crate) = 1016466 SHA256 (rust/crates/lzma-rs-0.3.0.crate) = 297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e @@ -809,8 +805,8 @@ SHA256 (rust/crates/maybe-async-0.2.10.crate) = 5cf92c10c7e361d6b99666ec1c6f9805 SIZE (rust/crates/maybe-async-0.2.10.crate) = 22107 SHA256 (rust/crates/md-5-0.10.6.crate) = d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf SIZE (rust/crates/md-5-0.10.6.crate) = 16161 -SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 -SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 SHA256 (rust/crates/memmap2-0.9.8.crate) = 843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7 SIZE (rust/crates/memmap2-0.9.8.crate) = 34478 SHA256 (rust/crates/memoffset-0.9.1.crate) = 488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a @@ -831,8 +827,8 @@ SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d632 SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c SIZE (rust/crates/mio-1.0.4.crate) = 104212 -SHA256 (rust/crates/mlua-0.11.3.crate) = 5b3dd94c3c4dea0049b22296397040840a8f6b5b5229f438434ba82df402b42d -SIZE (rust/crates/mlua-0.11.3.crate) = 244400 +SHA256 (rust/crates/mlua-0.11.4.crate) = 9be1c2bfc684b8a228fbaebf954af7a47a98ec27721986654a4cc2c40a20cc7e +SIZE (rust/crates/mlua-0.11.4.crate) = 251023 SHA256 (rust/crates/mlua-sys-0.8.3.crate) = 3d4dc9cfc5a7698899802e97480617d9726f7da78c910db989d4d0fd4991d900 SIZE (rust/crates/mlua-sys-0.8.3.crate) = 31427 SHA256 (rust/crates/mlua_derive-0.11.0.crate) = 465bddde514c4eb3b50b543250e97c1d4b284fa3ef7dc0ba2992c77545dbceb2 @@ -885,8 +881,8 @@ SHA256 (rust/crates/objc2-encode-4.1.0.crate) = ef25abbcd74fb2609453eb695bd2f860 SIZE (rust/crates/objc2-encode-4.1.0.crate) = 21004 SHA256 (rust/crates/objc2-foundation-0.3.1.crate) = 900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c SIZE (rust/crates/objc2-foundation-0.3.1.crate) = 324572 -SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87 -SIZE (rust/crates/object-0.36.7.crate) = 329938 +SHA256 (rust/crates/object-0.37.3.crate) = ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe +SIZE (rust/crates/object-0.37.3.crate) = 344032 SHA256 (rust/crates/oci-client-0.15.0.crate) = 9b74df13319e08bc386d333d3dc289c774c88cc543cae31f5347db07b5ec2172 SIZE (rust/crates/oci-client-0.15.0.crate) = 2292853 SHA256 (rust/crates/oci-spec-0.8.2.crate) = 2078e2f6be932a4de9aca90a375a45590809dfb5a08d93ab1ee217107aceeb67 @@ -919,8 +915,8 @@ SHA256 (rust/crates/os-release-0.1.0.crate) = 82f29ae2f71b53ec19cc23385f8e4f3d90 SIZE (rust/crates/os-release-0.1.0.crate) = 3760 SHA256 (rust/crates/os_pipe-1.2.2.crate) = db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224 SIZE (rust/crates/os_pipe-1.2.2.crate) = 10810 -SHA256 (rust/crates/owo-colors-4.2.2.crate) = 48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e -SIZE (rust/crates/owo-colors-4.2.2.crate) = 38070 +SHA256 (rust/crates/owo-colors-4.2.3.crate) = 9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52 +SIZE (rust/crates/owo-colors-4.2.3.crate) = 38315 SHA256 (rust/crates/p256-0.13.2.crate) = c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b SIZE (rust/crates/p256-0.13.2.crate) = 63434 SHA256 (rust/crates/p384-0.13.1.crate) = fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6 @@ -959,8 +955,8 @@ SHA256 (rust/crates/pest_meta-2.8.2.crate) = 42919b05089acbd0a5dcd5405fb304d17d1 SIZE (rust/crates/pest_meta-2.8.2.crate) = 42952 SHA256 (rust/crates/petgraph-0.7.1.crate) = 3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772 SIZE (rust/crates/petgraph-0.7.1.crate) = 736025 -SHA256 (rust/crates/petgraph-0.8.2.crate) = 54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca -SIZE (rust/crates/petgraph-0.8.2.crate) = 780998 +SHA256 (rust/crates/petgraph-0.8.3.crate) = 8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455 +SIZE (rust/crates/petgraph-0.8.3.crate) = 807555 SHA256 (rust/crates/phf-0.11.3.crate) = 1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078 SIZE (rust/crates/phf-0.11.3.crate) = 23231 SHA256 (rust/crates/phf_codegen-0.11.3.crate) = aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a @@ -1045,8 +1041,8 @@ SHA256 (rust/crates/quinn-proto-0.11.13.crate) = f1906b49b0c3bc04b5fe5d86a77925a SIZE (rust/crates/quinn-proto-0.11.13.crate) = 243837 SHA256 (rust/crates/quinn-udp-0.5.14.crate) = addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd SIZE (rust/crates/quinn-udp-0.5.14.crate) = 33436 -SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d -SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/quote-1.0.41.crate) = ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1 +SIZE (rust/crates/quote-1.0.41.crate) = 31408 SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 @@ -1065,14 +1061,14 @@ SHA256 (rust/crates/redox_syscall-0.5.17.crate) = 5407465600fb0548f1442edf71dd20 SIZE (rust/crates/redox_syscall-0.5.17.crate) = 30002 SHA256 (rust/crates/redox_users-0.5.2.crate) = a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac SIZE (rust/crates/redox_users-0.5.2.crate) = 17280 -SHA256 (rust/crates/ref-cast-1.0.24.crate) = 4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf -SIZE (rust/crates/ref-cast-1.0.24.crate) = 15252 -SHA256 (rust/crates/ref-cast-impl-1.0.24.crate) = 1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7 -SIZE (rust/crates/ref-cast-impl-1.0.24.crate) = 9968 -SHA256 (rust/crates/regex-1.11.2.crate) = 23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912 -SIZE (rust/crates/regex-1.11.2.crate) = 166265 -SHA256 (rust/crates/regex-automata-0.4.10.crate) = 6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6 -SIZE (rust/crates/regex-automata-0.4.10.crate) = 622754 +SHA256 (rust/crates/ref-cast-1.0.25.crate) = f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d +SIZE (rust/crates/ref-cast-1.0.25.crate) = 15192 +SHA256 (rust/crates/ref-cast-impl-1.0.25.crate) = b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da +SIZE (rust/crates/ref-cast-impl-1.0.25.crate) = 10167 +SHA256 (rust/crates/regex-1.11.3.crate) = 8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c +SIZE (rust/crates/regex-1.11.3.crate) = 163275 +SHA256 (rust/crates/regex-automata-0.4.11.crate) = 833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad +SIZE (rust/crates/regex-automata-0.4.11.crate) = 622880 SHA256 (rust/crates/regex-syntax-0.6.29.crate) = f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1 SIZE (rust/crates/regex-syntax-0.6.29.crate) = 299752 SHA256 (rust/crates/regex-syntax-0.8.6.crate) = caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001 @@ -1115,8 +1111,6 @@ SHA256 (rust/crates/rustc_version-0.4.1.crate) = cfcb3a22ef46e85b45de6ee7e79d063 SIZE (rust/crates/rustc_version-0.4.1.crate) = 12245 SHA256 (rust/crates/rusticata-macros-4.1.0.crate) = faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632 SIZE (rust/crates/rusticata-macros-4.1.0.crate) = 11746 -SHA256 (rust/crates/rustix-0.38.44.crate) = fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154 -SIZE (rust/crates/rustix-0.38.44.crate) = 379347 SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e SIZE (rust/crates/rustix-1.1.2.crate) = 422717 SHA256 (rust/crates/rustls-0.23.32.crate) = cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40 @@ -1161,8 +1155,8 @@ SHA256 (rust/crates/secrecy-0.10.3.crate) = e891af845473308773346dc847b2c23ee78f SIZE (rust/crates/secrecy-0.10.3.crate) = 11303 SHA256 (rust/crates/security-framework-2.11.1.crate) = 897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02 SIZE (rust/crates/security-framework-2.11.1.crate) = 80188 -SHA256 (rust/crates/security-framework-3.4.0.crate) = 60b369d18893388b345804dc0007963c99b7d665ae71d275812d828c6f089640 -SIZE (rust/crates/security-framework-3.4.0.crate) = 88668 +SHA256 (rust/crates/security-framework-3.5.1.crate) = b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef +SIZE (rust/crates/security-framework-3.5.1.crate) = 89937 SHA256 (rust/crates/security-framework-sys-2.15.0.crate) = cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0 SIZE (rust/crates/security-framework-sys-2.15.0.crate) = 20718 SHA256 (rust/crates/self-replace-1.5.0.crate) = 03ec815b5eab420ab893f63393878d89c90fdd94c0bcc44c07abb8ad95552fb7 @@ -1175,14 +1169,14 @@ SHA256 (rust/crates/self_update-0.42.0.crate) = d832c086ece0dacc29fb2947bb4219b8 SIZE (rust/crates/self_update-0.42.0.crate) = 43673 SHA256 (rust/crates/semver-1.0.27.crate) = d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2 SIZE (rust/crates/semver-1.0.27.crate) = 30081 -SHA256 (rust/crates/serde-1.0.225.crate) = fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d -SIZE (rust/crates/serde-1.0.225.crate) = 28467 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 SHA256 (rust/crates/serde-value-0.7.0.crate) = f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c SIZE (rust/crates/serde-value-0.7.0.crate) = 10249 -SHA256 (rust/crates/serde_core-1.0.225.crate) = 659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383 -SIZE (rust/crates/serde_core-1.0.225.crate) = 63004 -SHA256 (rust/crates/serde_derive-1.0.225.crate) = 0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516 -SIZE (rust/crates/serde_derive-1.0.225.crate) = 58560 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 SHA256 (rust/crates/serde_derive_internals-0.29.1.crate) = 18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711 SIZE (rust/crates/serde_derive_internals-0.29.1.crate) = 26189 SHA256 (rust/crates/serde_ignored-0.1.14.crate) = 115dffd5f3853e06e746965a20dcbae6ee747ae30b543d91b0e089668bb07798 @@ -1307,8 +1301,8 @@ SHA256 (rust/crates/taplo-0.14.0.crate) = c221a50eef1a5493074f11ca1ed62bef28c05a SIZE (rust/crates/taplo-0.14.0.crate) = 54256 SHA256 (rust/crates/tar-0.4.44.crate) = 1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a SIZE (rust/crates/tar-0.4.44.crate) = 61020 -SHA256 (rust/crates/tempfile-3.22.0.crate) = 84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53 -SIZE (rust/crates/tempfile-3.22.0.crate) = 43044 +SHA256 (rust/crates/tempfile-3.23.0.crate) = 2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16 +SIZE (rust/crates/tempfile-3.23.0.crate) = 43063 SHA256 (rust/crates/tera-1.20.0.crate) = ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee SIZE (rust/crates/tera-1.20.0.crate) = 104452 SHA256 (rust/crates/termcolor-1.4.1.crate) = 06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755 @@ -1325,12 +1319,12 @@ SHA256 (rust/crates/text-size-1.1.1.crate) = f18aa187839b2bdb1ad2fa35ead8c4c2976 SIZE (rust/crates/text-size-1.1.1.crate) = 12553 SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 -SHA256 (rust/crates/thiserror-2.0.16.crate) = 3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0 -SIZE (rust/crates/thiserror-2.0.16.crate) = 29095 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/thiserror-impl-2.0.16.crate) = 6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960 -SIZE (rust/crates/thiserror-impl-2.0.16.crate) = 21214 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 SHA256 (rust/crates/thread_local-1.1.9.crate) = f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185 SIZE (rust/crates/thread_local-1.1.9.crate) = 19315 SHA256 (rust/crates/time-0.3.44.crate) = 91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d @@ -1355,8 +1349,10 @@ SHA256 (rust/crates/tokio-macros-2.5.0.crate) = 6e06d43f1345a3bcd39f6a56dbb7dcab SIZE (rust/crates/tokio-macros-2.5.0.crate) = 12617 SHA256 (rust/crates/tokio-native-tls-0.3.1.crate) = bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2 SIZE (rust/crates/tokio-native-tls-0.3.1.crate) = 20676 -SHA256 (rust/crates/tokio-rustls-0.26.3.crate) = 05f63835928ca123f1bef57abbcd23bb2ba0ac9ae1235f1e65bda0d06e7786bd -SIZE (rust/crates/tokio-rustls-0.26.3.crate) = 35073 +SHA256 (rust/crates/tokio-retry-0.3.0.crate) = 7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f +SIZE (rust/crates/tokio-retry-0.3.0.crate) = 6146 +SHA256 (rust/crates/tokio-rustls-0.26.4.crate) = 1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61 +SIZE (rust/crates/tokio-rustls-0.26.4.crate) = 35430 SHA256 (rust/crates/tokio-util-0.7.16.crate) = 14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5 SIZE (rust/crates/tokio-util-0.7.16.crate) = 127775 SHA256 (rust/crates/toml-0.5.11.crate) = f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234 @@ -1453,8 +1449,8 @@ SHA256 (rust/crates/url-2.5.7.crate) = 08bc136a29a3d1758e07a9cca267be308aeebf5cf SIZE (rust/crates/url-2.5.7.crate) = 87907 SHA256 (rust/crates/urlencoding-2.1.3.crate) = daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da SIZE (rust/crates/urlencoding-2.1.3.crate) = 6538 -SHA256 (rust/crates/usage-lib-2.2.2.crate) = a10ea46630ad25b371a9f1c849e4a07217385cf2d908b1bebe324689d33c68b2 -SIZE (rust/crates/usage-lib-2.2.2.crate) = 73875 +SHA256 (rust/crates/usage-lib-2.3.2.crate) = 6c4a3170e9c1ba01392d385c73a5ab8aea52d7578c8c83778c04a05369a77a3b +SIZE (rust/crates/usage-lib-2.3.2.crate) = 74307 SHA256 (rust/crates/utf8-decode-1.0.1.crate) = ca61eb27fa339aa08826a29f03e87b99b4d8f0fc2255306fd266bb1b6a9de498 SIZE (rust/crates/utf8-decode-1.0.1.crate) = 7605 SHA256 (rust/crates/utf8_iter-1.0.4.crate) = b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be @@ -1483,30 +1479,28 @@ SHA256 (rust/crates/wasi-0.14.7+wasi-0.2.4.crate) = 883478de20367e224c0090af9cf5 SIZE (rust/crates/wasi-0.14.7+wasi-0.2.4.crate) = 18219 SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 -SHA256 (rust/crates/wasm-bindgen-0.2.103.crate) = ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819 -SIZE (rust/crates/wasm-bindgen-0.2.103.crate) = 47309 -SHA256 (rust/crates/wasm-bindgen-backend-0.2.103.crate) = 0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c -SIZE (rust/crates/wasm-bindgen-backend-0.2.103.crate) = 32238 -SHA256 (rust/crates/wasm-bindgen-futures-0.4.53.crate) = a0b221ff421256839509adbb55998214a70d829d3a28c69b4a6672e9d2a42f67 -SIZE (rust/crates/wasm-bindgen-futures-0.4.53.crate) = 16321 -SHA256 (rust/crates/wasm-bindgen-macro-0.2.103.crate) = fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0 -SIZE (rust/crates/wasm-bindgen-macro-0.2.103.crate) = 9382 -SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.103.crate) = ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32 -SIZE (rust/crates/wasm-bindgen-macro-support-0.2.103.crate) = 26418 -SHA256 (rust/crates/wasm-bindgen-shared-0.2.103.crate) = 293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf -SIZE (rust/crates/wasm-bindgen-shared-0.2.103.crate) = 9060 +SHA256 (rust/crates/wasm-bindgen-0.2.104.crate) = c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d +SIZE (rust/crates/wasm-bindgen-0.2.104.crate) = 47345 +SHA256 (rust/crates/wasm-bindgen-backend-0.2.104.crate) = 671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19 +SIZE (rust/crates/wasm-bindgen-backend-0.2.104.crate) = 32230 +SHA256 (rust/crates/wasm-bindgen-futures-0.4.54.crate) = 7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c +SIZE (rust/crates/wasm-bindgen-futures-0.4.54.crate) = 16381 +SHA256 (rust/crates/wasm-bindgen-macro-0.2.104.crate) = 7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119 +SIZE (rust/crates/wasm-bindgen-macro-0.2.104.crate) = 9390 +SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.104.crate) = 9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7 +SIZE (rust/crates/wasm-bindgen-macro-support-0.2.104.crate) = 26411 +SHA256 (rust/crates/wasm-bindgen-shared-0.2.104.crate) = bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1 +SIZE (rust/crates/wasm-bindgen-shared-0.2.104.crate) = 9057 SHA256 (rust/crates/wasm-streams-0.4.2.crate) = 15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65 SIZE (rust/crates/wasm-streams-0.4.2.crate) = 36773 -SHA256 (rust/crates/web-sys-0.3.80.crate) = fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc -SIZE (rust/crates/web-sys-0.3.80.crate) = 641763 +SHA256 (rust/crates/web-sys-0.3.81.crate) = 9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120 +SIZE (rust/crates/web-sys-0.3.81.crate) = 641812 SHA256 (rust/crates/web-time-1.1.0.crate) = 5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb SIZE (rust/crates/web-time-1.1.0.crate) = 18026 SHA256 (rust/crates/webbrowser-1.0.5.crate) = aaf4f3c0ba838e82b4e5ccc4157003fb8c324ee24c058470ffb82820becbde98 SIZE (rust/crates/webbrowser-1.0.5.crate) = 56190 SHA256 (rust/crates/webpki-roots-1.0.2.crate) = 7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2 SIZE (rust/crates/webpki-roots-1.0.2.crate) = 255109 -SHA256 (rust/crates/which-4.4.2.crate) = 87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7 -SIZE (rust/crates/which-4.4.2.crate) = 15953 SHA256 (rust/crates/which-7.0.3.crate) = 24d643ce3fd3e5b54854602a080f34fb10ab75e0b813ee32d00ca2b44fa74762 SIZE (rust/crates/which-7.0.3.crate) = 18872 SHA256 (rust/crates/which-8.0.0.crate) = d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d @@ -1529,14 +1523,14 @@ SHA256 (rust/crates/windows-collections-0.2.0.crate) = 3beeceb5e5cfd9eb1d76b3816 SIZE (rust/crates/windows-collections-0.2.0.crate) = 13579 SHA256 (rust/crates/windows-core-0.61.2.crate) = c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3 SIZE (rust/crates/windows-core-0.61.2.crate) = 36771 -SHA256 (rust/crates/windows-core-0.62.0.crate) = 57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c -SIZE (rust/crates/windows-core-0.62.0.crate) = 36955 +SHA256 (rust/crates/windows-core-0.62.1.crate) = 6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9 +SIZE (rust/crates/windows-core-0.62.1.crate) = 36948 SHA256 (rust/crates/windows-future-0.2.1.crate) = fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e SIZE (rust/crates/windows-future-0.2.1.crate) = 17532 -SHA256 (rust/crates/windows-implement-0.60.0.crate) = a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836 -SIZE (rust/crates/windows-implement-0.60.0.crate) = 15073 -SHA256 (rust/crates/windows-interface-0.59.1.crate) = bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8 -SIZE (rust/crates/windows-interface-0.59.1.crate) = 11735 +SHA256 (rust/crates/windows-implement-0.60.1.crate) = edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0 +SIZE (rust/crates/windows-implement-0.60.1.crate) = 15257 +SHA256 (rust/crates/windows-interface-0.59.2.crate) = c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5 +SIZE (rust/crates/windows-interface-0.59.2.crate) = 11735 SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 SHA256 (rust/crates/windows-link-0.2.0.crate) = 45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65 @@ -1561,16 +1555,16 @@ SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b3 SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 -SHA256 (rust/crates/windows-sys-0.61.0.crate) = e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa -SIZE (rust/crates/windows-sys-0.61.0.crate) = 2517134 +SHA256 (rust/crates/windows-sys-0.61.1.crate) = 6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f +SIZE (rust/crates/windows-sys-0.61.1.crate) = 2517255 SHA256 (rust/crates/windows-targets-0.42.2.crate) = 8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071 SIZE (rust/crates/windows-targets-0.42.2.crate) = 5492 SHA256 (rust/crates/windows-targets-0.48.5.crate) = 9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c SIZE (rust/crates/windows-targets-0.48.5.crate) = 6904 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 -SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 +SHA256 (rust/crates/windows-targets-0.53.4.crate) = 2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b +SIZE (rust/crates/windows-targets-0.53.4.crate) = 7161 SHA256 (rust/crates/windows-threading-0.1.0.crate) = b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6 SIZE (rust/crates/windows-threading-0.1.0.crate) = 9085 SHA256 (rust/crates/windows_aarch64_gnullvm-0.42.2.crate) = 597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8 @@ -1651,8 +1645,8 @@ SHA256 (rust/crates/x509-cert-0.2.5.crate) = 1301e935010a701ae5f8655edc0ad17c44b SIZE (rust/crates/x509-cert-0.2.5.crate) = 99819 SHA256 (rust/crates/x509-parser-0.18.0.crate) = eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425 SIZE (rust/crates/x509-parser-0.18.0.crate) = 102525 -SHA256 (rust/crates/xattr-1.5.1.crate) = af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909 -SIZE (rust/crates/xattr-1.5.1.crate) = 14565 +SHA256 (rust/crates/xattr-1.6.1.crate) = 32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156 +SIZE (rust/crates/xattr-1.6.1.crate) = 15952 SHA256 (rust/crates/xx-2.2.0.crate) = c49281e5e82dafeb26c72c7bf4b1876401ff662c38c7517d84b641053863486d SIZE (rust/crates/xx-2.2.0.crate) = 42923 SHA256 (rust/crates/xz2-0.1.7.crate) = 388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2 @@ -1671,8 +1665,8 @@ SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 -SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde -SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 +SHA256 (rust/crates/zeroize-1.8.2.crate) = b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0 +SIZE (rust/crates/zeroize-1.8.2.crate) = 20907 SHA256 (rust/crates/zeroize_derive-1.4.2.crate) = ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69 SIZE (rust/crates/zeroize_derive-1.4.2.crate) = 11141 SHA256 (rust/crates/zerotrie-0.2.2.crate) = 36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595 @@ -1697,5 +1691,5 @@ SHA256 (rust/crates/zstd-safe-7.2.4.crate) = 8f49c4d5f0abb602a93fb8736af2a4f4dd9 SIZE (rust/crates/zstd-safe-7.2.4.crate) = 29350 SHA256 (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748 SIZE (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 775620 -SHA256 (jdx-mise-v2025.9.16_GH0.tar.gz) = 252f669ed2b2272984ac64761b01df78a4c69eab0b108b33254104012d6c776a -SIZE (jdx-mise-v2025.9.16_GH0.tar.gz) = 4895960 +SHA256 (jdx-mise-v2025.10.4_GH0.tar.gz) = bac571bac0c5e28d52356de0f0af645b257a48afc29dc7b68fa118b728d8ca2f +SIZE (jdx-mise-v2025.10.4_GH0.tar.gz) = 4966550 diff --git a/sysutils/nix/Makefile b/sysutils/nix/Makefile index dd632ae6af7d..d0696cebd30d 100644 --- a/sysutils/nix/Makefile +++ b/sysutils/nix/Makefile @@ -1,5 +1,5 @@ PORTNAME= nix -DISTVERSION= 2.31.1 +DISTVERSION= 2.31.2 CATEGORIES= sysutils MAINTAINER= ashish@FreeBSD.org diff --git a/sysutils/nix/distinfo b/sysutils/nix/distinfo index a58a6f2bc1e8..3583bc205489 100644 --- a/sysutils/nix/distinfo +++ b/sysutils/nix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757245607 -SHA256 (NixOS-nix-2.31.1_GH0.tar.gz) = 2376e5ecc74fffbe54de4a74cc7546ebb04d7d900ba91631614e9ea74c7165f5 -SIZE (NixOS-nix-2.31.1_GH0.tar.gz) = 1898151 +TIMESTAMP = 1759832186 +SHA256 (NixOS-nix-2.31.2_GH0.tar.gz) = dd969817b388f9899afae5ba2447eb8486cd6c88af1e6d79f522d46931fc839d +SIZE (NixOS-nix-2.31.2_GH0.tar.gz) = 1899104 diff --git a/textproc/harper/Makefile b/textproc/harper/Makefile index f70486499a41..e33f46aecd4f 100644 --- a/textproc/harper/Makefile +++ b/textproc/harper/Makefile @@ -1,6 +1,6 @@ PORTNAME= harper DISTVERSIONPREFIX= v -DISTVERSION= 0.66.0 +DISTVERSION= 0.67.0 CATEGORIES= textproc MAINTAINER= ashish@FreeBSD.org diff --git a/textproc/harper/Makefile.crates b/textproc/harper/Makefile.crates index 64b7081fd1ad..1fd0a7863671 100644 --- a/textproc/harper/Makefile.crates +++ b/textproc/harper/Makefile.crates @@ -287,7 +287,7 @@ CARGO_CRATES= addr2line-0.24.2 \ open-5.3.2 \ option-ext-0.2.0 \ ordered-float-4.6.0 \ - ordered-float-5.0.0 \ + ordered-float-5.1.0 \ parking-2.2.1 \ parking_lot-0.12.4 \ parking_lot_core-0.9.11 \ diff --git a/textproc/harper/distinfo b/textproc/harper/distinfo index 2a6c18a64c89..68a5fe461f58 100644 --- a/textproc/harper/distinfo +++ b/textproc/harper/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1759442944 +TIMESTAMP = 1759787267 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -577,8 +577,8 @@ SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f5 SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 SHA256 (rust/crates/ordered-float-4.6.0.crate) = 7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951 SIZE (rust/crates/ordered-float-4.6.0.crate) = 23633 -SHA256 (rust/crates/ordered-float-5.0.0.crate) = e2c1f9f56e534ac6a9b8a4600bdf0f530fb393b5f393e7b4d03489c3cf0c3f01 -SIZE (rust/crates/ordered-float-5.0.0.crate) = 23364 +SHA256 (rust/crates/ordered-float-5.1.0.crate) = 7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d +SIZE (rust/crates/ordered-float-5.1.0.crate) = 30230 SHA256 (rust/crates/parking-2.2.1.crate) = f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba SIZE (rust/crates/parking-2.2.1.crate) = 10685 SHA256 (rust/crates/parking_lot-0.12.4.crate) = 70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13 @@ -1117,5 +1117,5 @@ SHA256 (rust/crates/zerovec-derive-0.11.1.crate) = 5b96237efa0c878c64bd89c436f66 SIZE (rust/crates/zerovec-derive-0.11.1.crate) = 21294 SHA256 (rust/crates/zip-1.1.4.crate) = 9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164 SIZE (rust/crates/zip-1.1.4.crate) = 77910 -SHA256 (Automattic-harper-v0.66.0_GH0.tar.gz) = 5572a64abd40dd63dd8d6487e0a5ae71f8eb40809e609c4626b0d578647ca0a9 -SIZE (Automattic-harper-v0.66.0_GH0.tar.gz) = 7394300 +SHA256 (Automattic-harper-v0.67.0_GH0.tar.gz) = bbdb0235ab6214923c740defb1b4f2e2bf6e414e941c725f1a76ca49feb78e5b +SIZE (Automattic-harper-v0.67.0_GH0.tar.gz) = 7402102 diff --git a/www/Makefile b/www/Makefile index 264c9b999472..c5629db1702b 100644 --- a/www/Makefile +++ b/www/Makefile @@ -464,6 +464,7 @@ SUBDIR += moodle44 SUBDIR += moodle45 SUBDIR += moodle50 + SUBDIR += moodle51 SUBDIR += morty SUBDIR += multisort SUBDIR += multiwatch diff --git a/www/edbrowse/Makefile b/www/edbrowse/Makefile index a588846fe521..d7e094d6914b 100644 --- a/www/edbrowse/Makefile +++ b/www/edbrowse/Makefile @@ -1,6 +1,6 @@ PORTNAME= edbrowse DISTVERSIONPREFIX= v -DISTVERSION= 3.8.10 +DISTVERSION= 3.8.12 CATEGORIES= www editors accessibility MAINTAINER= alfix86@gmail.com @@ -8,7 +8,7 @@ COMMENT= Line-oriented web browser and text editor WWW= https://edbrowse.org/ LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl \ libodbc.so:databases/unixODBC \ @@ -17,7 +17,6 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ USES= compiler:c11 gmake perl5 pkgconfig readline ssl USE_GITHUB= yes -GH_ACCOUNT= CMB USE_PERL5= build MAKEFILE= makefile diff --git a/www/edbrowse/distinfo b/www/edbrowse/distinfo index eea9db57adf2..ec4f985abf02 100644 --- a/www/edbrowse/distinfo +++ b/www/edbrowse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736883025 -SHA256 (CMB-edbrowse-v3.8.10_GH0.tar.gz) = 3c194ce45b7348211ce3ad8e3304a0eacf8b27e623cbf8c08687785f88174e03 -SIZE (CMB-edbrowse-v3.8.10_GH0.tar.gz) = 1058008 +TIMESTAMP = 1759606738 +SHA256 (edbrowse-edbrowse-v3.8.12_GH0.tar.gz) = b5125c7d13c2ed4491dc0d5a31116b244db62ae1c417ba5d29910311d1194632 +SIZE (edbrowse-edbrowse-v3.8.12_GH0.tar.gz) = 1084438 diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index cc48fd9bac68..48e1ac244caa 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -1,6 +1,5 @@ PORTNAME= firefox -DISTVERSION= 140.3.1 -PORTREVISION= 1 +DISTVERSION= 140.4.0 PORTEPOCH= 1 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ diff --git a/www/firefox-esr/distinfo b/www/firefox-esr/distinfo index 3d7295e309f5..fea700583700 100644 --- a/www/firefox-esr/distinfo +++ b/www/firefox-esr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758577187 -SHA256 (firefox-140.3.1esr.source.tar.xz) = 0b43b3a1c4f40765d96eb2094d38838f5d01b7280ad8b9b0a17612bed9c36735 -SIZE (firefox-140.3.1esr.source.tar.xz) = 634713368 +TIMESTAMP = 1759771075 +SHA256 (firefox-140.4.0esr.source.tar.xz) = 56b62a39a15a00f66d2595950539963176c76162e414cc3dba76f831fb772beb +SIZE (firefox-140.4.0esr.source.tar.xz) = 638434316 diff --git a/www/firefox-esr/files/patch-memory_mozalloc_throw__gcc.h b/www/firefox-esr/files/patch-memory_mozalloc_throw__gcc.h deleted file mode 100644 index 81a511179852..000000000000 --- a/www/firefox-esr/files/patch-memory_mozalloc_throw__gcc.h +++ /dev/null @@ -1,69 +0,0 @@ ---- memory/mozalloc/throw_gcc.h.orig 2022-02-02 17:33:38 UTC -+++ memory/mozalloc/throw_gcc.h -@@ -74,50 +74,66 @@ __throw_bad_function_call(void) { - mozalloc_abort("fatal: STL threw bad_function_call"); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_logic_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_domain_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_invalid_argument(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_length_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_out_of_range( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_runtime_error( - const char* msg) { - mozalloc_abort(msg); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_range_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_overflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_underflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_ios_failure( - const char* msg) { diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 35fa8fc308c5..9d5e2309361a 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -1,5 +1,5 @@ PORTNAME= firefox -DISTVERSION= 143.0.4 +DISTVERSION= 144.0 PORTEPOCH= 2 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ @@ -11,7 +11,7 @@ COMMENT= Web browser based on the browser portion of Mozilla WWW= https://www.firefox.com/ BUILD_DEPENDS= nspr>=4.32:devel/nspr \ - nss>=3.115.1:security/nss \ + nss>=3.116:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ diff --git a/www/firefox/distinfo b/www/firefox/distinfo index fad8e6f767c3..5dd5c0769da9 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759500390 -SHA256 (firefox-143.0.4.source.tar.xz) = 9e47c9f24c0e01a67f7fb03349ac8021a692f088f54bd127c356be0835c8b61a -SIZE (firefox-143.0.4.source.tar.xz) = 645169812 +TIMESTAMP = 1759784474 +SHA256 (firefox-144.0.source.tar.xz) = 1f2b5a5bf4e6879d50962052ed4f20cc2c7fe6fcaed5ab819b24fffc56ee96f1 +SIZE (firefox-144.0.source.tar.xz) = 641989432 diff --git a/www/firefox/files/patch-libwebrtc-generated b/www/firefox/files/patch-libwebrtc-generated index 5621fe23cf21..36653d2767b8 100644 --- a/www/firefox/files/patch-libwebrtc-generated +++ b/www/firefox/files/patch-libwebrtc-generated @@ -1,7 +1,7 @@ -commit b9b52a94471b7d6930b5c295c16ccf1512e6c86b +commit 0eb76f55073b3e60ff23c617561d9ec3fe7d3587 Author: Christoph Moench-Tegeder <cmt@FreeBSD.org> - regenerate FreeBSD libwebrtc patch for gecko 143 + regenerate FreeBSD libwebrtc patch for gecko 144 diff --git third_party/libwebrtc/api/adaptation/resource_adaptation_api_gn/moz.build third_party/libwebrtc/api/adaptation/resource_adaptation_api_gn/moz.build index 536af3b634ce..8dd2dcdb638b 100644 @@ -5522,7 +5522,7 @@ index 2925c9a25583..0dc3b552177f 100644 Library("audio_encoder_multiopus_gn") diff --git third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build -index e7cd0bcd8f5d..ccf44f091517 100644 +index 9c1242829070..ccf44f091517 100644 --- third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build +++ third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build @@ -13,14 +13,23 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -5549,7 +5549,7 @@ index e7cd0bcd8f5d..ccf44f091517 100644 FINAL_LIBRARY = "xul" -@@ -52,83 +61,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -52,98 +61,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -5568,6 +5568,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["__STDC_CONSTANT_MACROS"] = True - DEFINES["__STDC_FORMAT_MACROS"] = True - +- OS_LIBS += [ +- "log" +- ] +- -if CONFIG["OS_TARGET"] == "Darwin": - - DEFINES["WEBRTC_MAC"] = True @@ -5590,6 +5594,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["__STDC_CONSTANT_MACROS"] = True - DEFINES["__STDC_FORMAT_MACROS"] = True - +- OS_LIBS += [ +- "rt" +- ] +- -if CONFIG["OS_TARGET"] == "OpenBSD": - - DEFINES["USE_GLIB"] = "1" @@ -5630,11 +5638,18 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["_WINDOWS"] = True - DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True - DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] + DEFINES["_DEBUG"] = True if CONFIG["TARGET_CPU"] == "aarch64": -@@ -136,82 +69,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -151,82 +69,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" @@ -5692,10 +5707,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - -if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": - -- CXXFLAGS += [ -- "-msse2" -- ] -- + CXXFLAGS += [ + "-msse2" + ] + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": - - DEFINES["_GNU_SOURCE"] = True @@ -5706,10 +5721,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": - - CXXFLAGS += [ - "-msse2" - ] - +- CXXFLAGS += [ +- "-msse2" +- ] +- - DEFINES["_GNU_SOURCE"] = True + DEFINES["WEBRTC_ENABLE_AVX2"] = True @@ -10986,7 +11001,7 @@ index 6d6d33ace75b..01573acc86d3 100644 - Library("network_state_predictor_api_gn") diff --git third_party/libwebrtc/api/priority_gn/moz.build third_party/libwebrtc/api/priority_gn/moz.build -index 76aeb17bde7f..5e74263cf88f 100644 +index d219a201e21e..e294583198c9 100644 --- third_party/libwebrtc/api/priority_gn/moz.build +++ third_party/libwebrtc/api/priority_gn/moz.build @@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -11012,7 +11027,7 @@ index 76aeb17bde7f..5e74263cf88f 100644 FINAL_LIBRARY = "xul" -@@ -43,87 +52,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -11101,12 +11116,16 @@ index 76aeb17bde7f..5e74263cf88f 100644 if CONFIG["TARGET_CPU"] == "aarch64": -@@ -131,25 +60,10 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" -if CONFIG["TARGET_CPU"] == "arm": - +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- - DEFINES["WEBRTC_ARCH_ARM"] = True - DEFINES["WEBRTC_ARCH_ARM_V7"] = True - DEFINES["WEBRTC_HAS_NEON"] = True @@ -11127,10 +11146,12 @@ index 76aeb17bde7f..5e74263cf88f 100644 if CONFIG["TARGET_CPU"] == "x86": -@@ -159,40 +73,4 @@ if CONFIG["TARGET_CPU"] == "x86_64": - - DEFINES["WEBRTC_ENABLE_AVX2"] = True - +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- -if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": - - DEFINES["_DEBUG"] = True @@ -11151,6 +11172,12 @@ index 76aeb17bde7f..5e74263cf88f 100644 - - DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" - +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": - - DEFINES["_GNU_SOURCE"] = True @@ -11161,12 +11188,19 @@ index 76aeb17bde7f..5e74263cf88f 100644 - -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": - -- DEFINES["_GNU_SOURCE"] = True +- CXXFLAGS += [ +- "-msse2" +- ] - +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": -- ++if CONFIG["TARGET_CPU"] == "x86_64": + - DEFINES["_GNU_SOURCE"] = True -- ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + Library("priority_gn") diff --git third_party/libwebrtc/api/ref_count_gn/moz.build third_party/libwebrtc/api/ref_count_gn/moz.build index 4d11702ac95b..098a60790f04 100644 @@ -54040,6 +54074,219 @@ index f01e58d04ef2..7777cb881169 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("ns_gn") +diff --git third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build +index 899fcaea523b..a51a44f0c956 100644 +--- third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build ++++ third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,98 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "rt" +- ] +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -146,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("post_filter_gn") diff --git third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build index cff5be834af7..21c086b8c9b0 100644 --- third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build @@ -70163,10 +70410,10 @@ index f57a0a7e568b..9a78b83fbd8c 100644 Library("webrtc_vp9_helpers_gn") diff --git third_party/libwebrtc/moz.build third_party/libwebrtc/moz.build -index 84cfd37b7351..a14de2b579ed 100644 +index addff5313714..c70b3c2a5742 100644 --- third_party/libwebrtc/moz.build +++ third_party/libwebrtc/moz.build -@@ -289,6 +289,8 @@ DIRS += [ +@@ -290,6 +290,8 @@ DIRS += [ "/third_party/libwebrtc/modules/congestion_controller/goog_cc/send_side_bwe_gn", "/third_party/libwebrtc/modules/congestion_controller/rtp/control_handler_gn", "/third_party/libwebrtc/modules/congestion_controller/rtp/transport_feedback_gn", @@ -70175,7 +70422,7 @@ index 84cfd37b7351..a14de2b579ed 100644 "/third_party/libwebrtc/modules/module_api_gn", "/third_party/libwebrtc/modules/module_api_public_gn", "/third_party/libwebrtc/modules/module_fec_api_gn", -@@ -512,137 +514,30 @@ DIRS += [ +@@ -516,137 +518,30 @@ DIRS += [ "/third_party/libwebrtc/webrtc_gn" ] @@ -70317,7 +70564,7 @@ index 84cfd37b7351..a14de2b579ed 100644 DIRS += [ "/third_party/libwebrtc/common_audio/common_audio_avx2_gn", -@@ -650,13 +545,11 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +@@ -654,13 +549,11 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": "/third_party/libwebrtc/modules/audio_processing/aec3/aec3_avx2_gn", "/third_party/libwebrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2_gn", "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_differ_sse2_gn", @@ -70332,7 +70579,7 @@ index 84cfd37b7351..a14de2b579ed 100644 DIRS += [ "/third_party/libwebrtc/common_audio/common_audio_avx2_gn", -@@ -664,73 +557,6 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": +@@ -668,73 +561,6 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": "/third_party/libwebrtc/modules/audio_processing/aec3/aec3_avx2_gn", "/third_party/libwebrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2_gn", "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_differ_sse2_gn", @@ -80395,6 +80642,215 @@ index 290fa237597c..95fee876429c 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("copy_on_write_buffer_gn") +diff --git third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build +index 1029f0836bfe..6a114014c1f4 100644 +--- third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build ++++ third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,94 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -142,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("cpu_info_gn") diff --git third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build index d19a77f5a18b..95b1a36564bc 100644 --- third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build @@ -80597,6 +81053,208 @@ index d19a77f5a18b..95b1a36564bc 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("criticalsection_gn") +diff --git third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build +index ee63503765bb..288cd082cad6 100644 +--- third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build ++++ third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("denormal_disabler_gn") diff --git third_party/libwebrtc/rtc_base/divide_round_gn/moz.build third_party/libwebrtc/rtc_base/divide_round_gn/moz.build index 6d17c8740b6c..4081536caf3a 100644 --- third_party/libwebrtc/rtc_base/divide_round_gn/moz.build @@ -89301,6 +89959,219 @@ index 0687c3138dae..8d218bfe7cff 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("rtc_numerics_gn") +diff --git third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build +index f1b154f22252..55a35cb2bd5f 100644 +--- third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build ++++ third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,98 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "rt" +- ] +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -146,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("rtp_to_ntp_estimator_gn") diff --git third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build index c93abdb78469..bf32218de21a 100644 --- third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build @@ -96869,208 +97740,6 @@ index 74abd1c954a5..000000000000 - DEFINES["WEBRTC_ENABLE_AVX2"] = True - -Library("videoframebuffer_objc_gn") -diff --git third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -index f830168572e6..2f90855b915f 100644 ---- third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -+++ third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" - DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" - DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True - DEFINES["RTC_ENABLE_VP9"] = True -+DEFINES["USE_GLIB"] = "1" -+DEFINES["USE_OZONE"] = "1" - DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True -+DEFINES["WEBRTC_BSD"] = True - DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" - DEFINES["WEBRTC_LIBRARY_IMPL"] = True - DEFINES["WEBRTC_MOZILLA_BUILD"] = True - DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" -+DEFINES["WEBRTC_POSIX"] = True - DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" -+DEFINES["_FILE_OFFSET_BITS"] = "64" -+DEFINES["_LARGEFILE64_SOURCE"] = True -+DEFINES["_LARGEFILE_SOURCE"] = True - DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" -+DEFINES["__STDC_CONSTANT_MACROS"] = True -+DEFINES["__STDC_FORMAT_MACROS"] = True - - FINAL_LIBRARY = "xul" - -@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: - if CONFIG["MOZ_DEBUG"] == "1": - - DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" -- --if CONFIG["OS_TARGET"] == "Android": -- -- DEFINES["ANDROID"] = True -- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" -- DEFINES["HAVE_SYS_UIO_H"] = True -- DEFINES["WEBRTC_ANDROID"] = True -- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True -- DEFINES["WEBRTC_LINUX"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_GNU_SOURCE"] = True -- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- -- OS_LIBS += [ -- "log" -- ] -- --if CONFIG["OS_TARGET"] == "Darwin": -- -- DEFINES["WEBRTC_MAC"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "Linux": -- -- DEFINES["USE_AURA"] = "1" -- DEFINES["USE_GLIB"] = "1" -- DEFINES["USE_OZONE"] = "1" -- DEFINES["USE_UDEV"] = True -- DEFINES["WEBRTC_LINUX"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_FILE_OFFSET_BITS"] = "64" -- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" -- DEFINES["_LARGEFILE64_SOURCE"] = True -- DEFINES["_LARGEFILE_SOURCE"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "OpenBSD": -- -- DEFINES["USE_GLIB"] = "1" -- DEFINES["USE_OZONE"] = "1" -- DEFINES["WEBRTC_BSD"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_FILE_OFFSET_BITS"] = "64" -- DEFINES["_LARGEFILE64_SOURCE"] = True -- DEFINES["_LARGEFILE_SOURCE"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "WINNT": -- -- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True -- DEFINES["NOMINMAX"] = True -- DEFINES["NTDDI_VERSION"] = "0x0A000000" -- DEFINES["PSAPI_VERSION"] = "2" -- DEFINES["RTC_ENABLE_WIN_WGC"] = True -- DEFINES["UNICODE"] = True -- DEFINES["USE_AURA"] = "1" -- DEFINES["WEBRTC_WIN"] = True -- DEFINES["WIN32"] = True -- DEFINES["WIN32_LEAN_AND_MEAN"] = True -- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" -- DEFINES["WINVER"] = "0x0A00" -- DEFINES["_ATL_NO_OPENGL"] = True -- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True -- DEFINES["_CRT_RAND_S"] = True -- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True -- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True -- DEFINES["_HAS_EXCEPTIONS"] = "0" -- DEFINES["_HAS_NODISCARD"] = True -- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True -- DEFINES["_SECURE_ATL"] = True -- DEFINES["_UNICODE"] = True -- DEFINES["_WIN32_WINNT"] = "0x0A00" -- DEFINES["_WINDOWS"] = True -- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True -- DEFINES["__STD_C"] = True -+ DEFINES["_DEBUG"] = True - - if CONFIG["TARGET_CPU"] == "aarch64": - -@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": - DEFINES["WEBRTC_HAS_NEON"] = True - DEFINES["__ARM_NEON__"] = "1" - --if CONFIG["TARGET_CPU"] == "arm": -- -- CXXFLAGS += [ -- "-mfpu=neon" -- ] -- -- DEFINES["WEBRTC_ARCH_ARM"] = True -- DEFINES["WEBRTC_ARCH_ARM_V7"] = True -- DEFINES["WEBRTC_HAS_NEON"] = True -- --if CONFIG["TARGET_CPU"] == "loongarch64": -- -- DEFINES["_GNU_SOURCE"] = True -- - if CONFIG["TARGET_CPU"] == "mips32": - - DEFINES["MIPS32_LE"] = True - DEFINES["MIPS_FPU_LE"] = True -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["TARGET_CPU"] == "mips64": -- -- DEFINES["_GNU_SOURCE"] = True - - if CONFIG["TARGET_CPU"] == "x86": - -- DEFINES["WEBRTC_ENABLE_AVX2"] = True -- --if CONFIG["TARGET_CPU"] == "x86_64": -- -- DEFINES["WEBRTC_ENABLE_AVX2"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": -- -- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" -- --if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": -- - CXXFLAGS += [ - "-msse2" - ] - --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": -- -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": -- -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": -- -- CXXFLAGS += [ -- "-msse2" -- ] -- -- DEFINES["_GNU_SOURCE"] = True -+ DEFINES["WEBRTC_ENABLE_AVX2"] = True - --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": -+if CONFIG["TARGET_CPU"] == "x86_64": - -- DEFINES["_GNU_SOURCE"] = True -+ DEFINES["WEBRTC_ENABLE_AVX2"] = True - - Library("denormal_disabler_gn") diff --git third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build index 42b21364766f..efc6c5ca191e 100644 --- third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build @@ -97483,7 +98152,7 @@ index 36c9baa62823..b243d3d58410 100644 Library("metrics_gn") diff --git third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build -index 9587725536ca..538b68bd36cb 100644 +index ac00b2932e82..467d3c380ea3 100644 --- third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build +++ third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build @@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -97509,7 +98178,7 @@ index 9587725536ca..538b68bd36cb 100644 FINAL_LIBRARY = "xul" -@@ -51,108 +60,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -48,108 +57,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -97619,7 +98288,7 @@ index 9587725536ca..538b68bd36cb 100644 if CONFIG["TARGET_CPU"] == "aarch64": -@@ -160,82 +68,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -157,82 +65,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" @@ -99192,6 +99861,148 @@ index bed86c31bdb2..776ccac7a804 100644 - DEFINES["_GNU_SOURCE"] = True - Library("yuv_gn") +diff --git third_party/libwebrtc/third_party/opus/opus_gn/moz.build third_party/libwebrtc/third_party/opus/opus_gn/moz.build +index 2540ef87e331..66d74b90d631 100644 +--- third_party/libwebrtc/third_party/opus/opus_gn/moz.build ++++ third_party/libwebrtc/third_party/opus/opus_gn/moz.build +@@ -9,7 +9,14 @@ + COMPILE_FLAGS["OS_INCLUDES"] = [] + AllowCompilerWarnings() + ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -32,121 +39,10 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips32": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["_GNU_SOURCE"] = True +- + Library("opus_gn") diff --git third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build index ad14c77a3fe2..fe9a03bdf63c 100644 --- third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build diff --git a/www/firefox/files/patch-memory_mozalloc_throw__gcc.h b/www/firefox/files/patch-memory_mozalloc_throw__gcc.h deleted file mode 100644 index 81a511179852..000000000000 --- a/www/firefox/files/patch-memory_mozalloc_throw__gcc.h +++ /dev/null @@ -1,69 +0,0 @@ ---- memory/mozalloc/throw_gcc.h.orig 2022-02-02 17:33:38 UTC -+++ memory/mozalloc/throw_gcc.h -@@ -74,50 +74,66 @@ __throw_bad_function_call(void) { - mozalloc_abort("fatal: STL threw bad_function_call"); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_logic_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_domain_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_invalid_argument(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_length_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_out_of_range( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_runtime_error( - const char* msg) { - mozalloc_abort(msg); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_range_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_overflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_underflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_ios_failure( - const char* msg) { diff --git a/www/firefox/files/patch-python_sites_mach.txt b/www/firefox/files/patch-python_sites_mach.txt index dc2caf9bdfc6..706f285b0731 100644 --- a/www/firefox/files/patch-python_sites_mach.txt +++ b/www/firefox/files/patch-python_sites_mach.txt @@ -15,4 +15,4 @@ index 6e3db1c848f7..10ba12c2f13b 100644 # support down to the oldest locally-installed version (5.4.2). -pypi-optional:psutil>=5.4.2,<=5.9.4:telemetry will be missing some data +pypi-optional:psutil>=5.4.2,<=7.0.0:telemetry will be missing some data - pypi-optional:zstandard>=0.11.1,<=0.23.0:zstd archives will not be possible to extract + pypi-optional:zstandard>=0.11.1,<=0.24.0:zstd archives will not be possible to extract diff --git a/www/glpi/Makefile b/www/glpi/Makefile index 8652f7a9011c..108716a0d09e 100644 --- a/www/glpi/Makefile +++ b/www/glpi/Makefile @@ -1,5 +1,5 @@ PORTNAME= glpi -DISTVERSION= 10.0.20 +DISTVERSION= 11.0.0 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= https://github.com/glpi-project/glpi/releases/download/${DISTVERSION}/ diff --git a/www/glpi/distinfo b/www/glpi/distinfo index 0bd1eb12a777..0a88a02bd0d8 100644 --- a/www/glpi/distinfo +++ b/www/glpi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758767935 -SHA256 (glpi-10.0.20.tgz) = 31c3d649d4f4694b9d96a4150ff1e4ebec4844780df9f8ebb216ba1ed09bd258 -SIZE (glpi-10.0.20.tgz) = 60196402 +TIMESTAMP = 1759316210 +SHA256 (glpi-11.0.0.tgz) = d214abcda3362bb8ad83ddb5b31daaeee7be6e42c341144f4616eba25e17c8c9 +SIZE (glpi-11.0.0.tgz) = 86293763 diff --git a/www/glpi/pkg-plist b/www/glpi/pkg-plist index 0898e59b962f..1cde5d6cfd23 100644 --- a/www/glpi/pkg-plist +++ b/www/glpi/pkg-plist @@ -1,6 +1,5 @@ @owner www @group www -%%WWWDIR%%/.htaccess %%WWWDIR%%/CHANGELOG.md %%WWWDIR%%/CONTRIBUTING.md %%WWWDIR%%/INSTALL.md @@ -8,24 +7,31 @@ %%WWWDIR%%/README.md %%WWWDIR%%/SECURITY.md %%WWWDIR%%/SUPPORT.md +%%WWWDIR%%/ajax/2fa.php %%WWWDIR%%/ajax/actorinformation.php %%WWWDIR%%/ajax/actors.php %%WWWDIR%%/ajax/agent.php +%%WWWDIR%%/ajax/asset/assetdefinition.php +%%WWWDIR%%/ajax/asset/customfield.php %%WWWDIR%%/ajax/cable.php %%WWWDIR%%/ajax/central.php +%%WWWDIR%%/ajax/change_item.php %%WWWDIR%%/ajax/comments.php %%WWWDIR%%/ajax/common.tabs.php +%%WWWDIR%%/ajax/commonitilobject_item.php +%%WWWDIR%%/ajax/commonitilsatisfaction.php %%WWWDIR%%/ajax/compareKbRevisions.php +%%WWWDIR%%/ajax/criteria_filter.php %%WWWDIR%%/ajax/dashboard.php %%WWWDIR%%/ajax/dcroom_size.php %%WWWDIR%%/ajax/debug.php %%WWWDIR%%/ajax/displayMessageAfterRedirect.php +%%WWWDIR%%/ajax/displaypreference.php %%WWWDIR%%/ajax/domainrecord_data_form.php %%WWWDIR%%/ajax/dropdownAllItems.php %%WWWDIR%%/ajax/dropdownConnect.php %%WWWDIR%%/ajax/dropdownConnectNetworkPort.php %%WWWDIR%%/ajax/dropdownConnectNetworkPortDeviceType.php -%%WWWDIR%%/ajax/dropdownDelegationUsers.php %%WWWDIR%%/ajax/dropdownFieldsBlacklist.php %%WWWDIR%%/ajax/dropdownInstallVersion.php %%WWWDIR%%/ajax/dropdownItilActors.php @@ -44,13 +50,12 @@ %%WWWDIR%%/ajax/dropdownSoftwareLicense.php %%WWWDIR%%/ajax/dropdownTicketCategories.php %%WWWDIR%%/ajax/dropdownTrackingDeviceType.php -%%WWWDIR%%/ajax/dropdownTypeCertificates.php %%WWWDIR%%/ajax/dropdownUnicityFields.php %%WWWDIR%%/ajax/dropdownValidator.php %%WWWDIR%%/ajax/dropdownValuesBlacklist.php -%%WWWDIR%%/ajax/entityCustomCssCode.php %%WWWDIR%%/ajax/entitytreesons.php %%WWWDIR%%/ajax/fileupload.php +%%WWWDIR%%/ajax/form/allowListDropdownValue.php %%WWWDIR%%/ajax/fuzzysearch.php %%WWWDIR%%/ajax/genericdate.php %%WWWDIR%%/ajax/getAbstractRightDropdownValue.php @@ -64,33 +69,33 @@ %%WWWDIR%%/ajax/getKbRevision.php %%WWWDIR%%/ajax/getKnowbaseItemAnswer.php %%WWWDIR%%/ajax/getMapPoint.php +%%WWWDIR%%/ajax/getPlurals.php +%%WWWDIR%%/ajax/getProjectTaskTeamDropdownValue.php %%WWWDIR%%/ajax/getShareDashboardDropdownValue.php %%WWWDIR%%/ajax/getUserPicture.php %%WWWDIR%%/ajax/get_item_content.php -%%WWWDIR%%/ajax/helpdesk_observer.php %%WWWDIR%%/ajax/impact.php -%%WWWDIR%%/ajax/index.php -%%WWWDIR%%/ajax/inputtext.php -%%WWWDIR%%/ajax/itemTicket.php -%%WWWDIR%%/ajax/item_rack.php +%%WWWDIR%%/ajax/item_problem.php +%%WWWDIR%%/ajax/item_ticket.php +%%WWWDIR%%/ajax/item_ticketrecurrent.php %%WWWDIR%%/ajax/itilfollowup.php %%WWWDIR%%/ajax/itillayout.php +%%WWWDIR%%/ajax/itilvalidation.php %%WWWDIR%%/ajax/kanban.php %%WWWDIR%%/ajax/kblink.php -%%WWWDIR%%/ajax/knowbase.php -%%WWWDIR%%/ajax/ldapdaterestriction.php +%%WWWDIR%%/ajax/logviewer.php %%WWWDIR%%/ajax/mailcollector.php %%WWWDIR%%/ajax/map.php %%WWWDIR%%/ajax/marketplace.php %%WWWDIR%%/ajax/massiveaction.php +%%WWWDIR%%/ajax/networkname.php +%%WWWDIR%%/ajax/notificationmailingsettings.php %%WWWDIR%%/ajax/notifications_ajax.php %%WWWDIR%%/ajax/pendingreason.php %%WWWDIR%%/ajax/pin_savedsearches.php %%WWWDIR%%/ajax/planning.php -%%WWWDIR%%/ajax/planningcheck.php %%WWWDIR%%/ajax/planningend.php %%WWWDIR%%/ajax/priority.php -%%WWWDIR%%/ajax/private_public.php %%WWWDIR%%/ajax/projecttask.php %%WWWDIR%%/ajax/rack.php %%WWWDIR%%/ajax/resaperiod.php @@ -103,47 +108,43 @@ %%WWWDIR%%/ajax/rulecriteriavalue.php %%WWWDIR%%/ajax/savedsearch.php %%WWWDIR%%/ajax/search.php -%%WWWDIR%%/ajax/searchoptionvalue.php %%WWWDIR%%/ajax/selectUnaffectedOrNewItem_Device.php -%%WWWDIR%%/ajax/socket.php %%WWWDIR%%/ajax/solution.php +%%WWWDIR%%/ajax/stencil.php %%WWWDIR%%/ajax/subvisibility.php %%WWWDIR%%/ajax/switchdebug.php %%WWWDIR%%/ajax/switchfoldmenu.php %%WWWDIR%%/ajax/task.php %%WWWDIR%%/ajax/telemetry.php -%%WWWDIR%%/ajax/textarea.php -%%WWWDIR%%/ajax/ticketassigninformation.php %%WWWDIR%%/ajax/ticketiteminformation.php -%%WWWDIR%%/ajax/ticketsatisfaction.php %%WWWDIR%%/ajax/timeline.php %%WWWDIR%%/ajax/transfers.php %%WWWDIR%%/ajax/treebrowse.php %%WWWDIR%%/ajax/uemailUpdate.php %%WWWDIR%%/ajax/unlockobject.php -%%WWWDIR%%/ajax/updateTrackingDeviceType.php %%WWWDIR%%/ajax/updateTranslationFields.php %%WWWDIR%%/ajax/updateTranslationValue.php %%WWWDIR%%/ajax/updatecurrenttab.php %%WWWDIR%%/ajax/viewsubitem.php %%WWWDIR%%/ajax/visibility.php +%%WWWDIR%%/ajax/webhook.php %%WWWDIR%%/apirest.md -%%WWWDIR%%/apirest.php -%%WWWDIR%%/apixmlrpc.php %%WWWDIR%%/bin/console -%%WWWDIR%%/caldav.php -%%WWWDIR%%/config/.htaccess +%%WWWDIR%%/css/core_palettes.scss +%%WWWDIR%%/css/glpi.scss +%%WWWDIR%%/css/helpdesk_home.scss %%WWWDIR%%/css/includes/_base.scss -%%WWWDIR%%/css/includes/_fonts.scss -%%WWWDIR%%/css/includes/_global-variables.scss %%WWWDIR%%/css/includes/_highcontrast.scss %%WWWDIR%%/css/includes/_includes.scss -%%WWWDIR%%/css/includes/_logos.scss %%WWWDIR%%/css/includes/_palette_dark.scss -%%WWWDIR%%/css/includes/_palette_light.scss +%%WWWDIR%%/css/includes/_tabler_compat.scss %%WWWDIR%%/css/includes/components/_asset-form.scss +%%WWWDIR%%/css/includes/components/_autocomplete.css %%WWWDIR%%/css/includes/components/_browser_tree.scss %%WWWDIR%%/css/includes/components/_buttons-group.scss +%%WWWDIR%%/css/includes/components/_content-editable-inputs.scss +%%WWWDIR%%/css/includes/components/_creator_badge.scss +%%WWWDIR%%/css/includes/components/_datatable.scss %%WWWDIR%%/css/includes/components/_debug-toolbar.scss %%WWWDIR%%/css/includes/components/_documentation.scss %%WWWDIR%%/css/includes/components/_fileupload.scss @@ -152,10 +153,13 @@ %%WWWDIR%%/css/includes/components/_fullcalendar.scss %%WWWDIR%%/css/includes/components/_fuzzy.scss %%WWWDIR%%/css/includes/components/_global-menu.scss -%%WWWDIR%%/css/includes/components/_kanban.scss +%%WWWDIR%%/css/includes/components/_illustration-picker.scss +%%WWWDIR%%/css/includes/components/_log_viewer.scss %%WWWDIR%%/css/includes/components/_mini-tabs.scss %%WWWDIR%%/css/includes/components/_networkport.scss +%%WWWDIR%%/css/includes/components/_notes.scss %%WWWDIR%%/css/includes/components/_pictures.scss +%%WWWDIR%%/css/includes/components/_process-chart.scss %%WWWDIR%%/css/includes/components/_racks.scss %%WWWDIR%%/css/includes/components/_richtext.scss %%WWWDIR%%/css/includes/components/_rules.scss @@ -163,14 +167,17 @@ %%WWWDIR%%/css/includes/components/_scrollbars.scss %%WWWDIR%%/css/includes/components/_search_input.scss %%WWWDIR%%/css/includes/components/_select2.scss +%%WWWDIR%%/css/includes/components/_sortable.scss %%WWWDIR%%/css/includes/components/_tabs.scss -%%WWWDIR%%/css/includes/components/chartist/_chartist.scss -%%WWWDIR%%/css/includes/components/chartist/_generate.scss -%%WWWDIR%%/css/includes/components/chartist/_palette_cb_seq_blue_9.scss -%%WWWDIR%%/css/includes/components/chartist/_palette_cb_seq_red_9.scss -%%WWWDIR%%/css/includes/components/chartist/_palette_d3_cat_10.scss -%%WWWDIR%%/css/includes/components/chartist/_palette_d3_cat_20.scss -%%WWWDIR%%/css/includes/components/chartist/_palette_d3_tab_10.scss +%%WWWDIR%%/css/includes/components/_text-selection.scss +%%WWWDIR%%/css/includes/components/_tinymce.scss +%%WWWDIR%%/css/includes/components/_utils.scss +%%WWWDIR%%/css/includes/components/form/_form-destination.scss +%%WWWDIR%%/css/includes/components/form/_form-editor-horizontal-layout.scss +%%WWWDIR%%/css/includes/components/form/_form-editor.scss +%%WWWDIR%%/css/includes/components/form/_form-renderer.scss +%%WWWDIR%%/css/includes/components/form/_helpdesk-home-config-for-empty-entity.scss +%%WWWDIR%%/css/includes/components/form/_item-translations.scss %%WWWDIR%%/css/includes/components/itilobject/_actors.scss %%WWWDIR%%/css/includes/components/itilobject/_dates_timelines.scss %%WWWDIR%%/css/includes/components/itilobject/_footer.scss @@ -186,164 +193,7 @@ %%WWWDIR%%/css/legacy/includes/_planning.scss %%WWWDIR%%/css/legacy/includes/_responsive_fixes.scss %%WWWDIR%%/css/legacy/includes/_styles.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_accordion.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_alert.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_badge.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_breadcrumb.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_button-group.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_buttons.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_card.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_carousel.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_close.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_containers.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_dropdown.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_forms.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_functions.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_grid.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_helpers.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_images.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_list-group.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_mixins.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_modal.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_nav.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_navbar.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_offcanvas.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_pagination.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_placeholders.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_popover.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_progress.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_reboot.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_root.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_spinners.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_tables.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_toasts.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_tooltip.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_transitions.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_type.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_utilities.scss -%%WWWDIR%%/css/lib/bootstrap/scss/_variables.scss -%%WWWDIR%%/css/lib/bootstrap/scss/bootstrap-grid.scss -%%WWWDIR%%/css/lib/bootstrap/scss/bootstrap-reboot.scss -%%WWWDIR%%/css/lib/bootstrap/scss/bootstrap-utilities.scss -%%WWWDIR%%/css/lib/bootstrap/scss/bootstrap.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_floating-labels.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_form-check.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_form-control.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_form-range.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_form-select.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_form-text.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_input-group.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_labels.scss -%%WWWDIR%%/css/lib/bootstrap/scss/forms/_validation.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_clearfix.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_colored-links.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_position.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_ratio.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_stacks.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_stretched-link.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_text-truncation.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_visually-hidden.scss -%%WWWDIR%%/css/lib/bootstrap/scss/helpers/_vr.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_alert.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_backdrop.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_border-radius.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_box-shadow.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_breakpoints.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_buttons.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_caret.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_clearfix.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_color-scheme.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_container.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_deprecate.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_forms.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_gradients.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_grid.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_image.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_list-group.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_lists.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_pagination.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_reset-text.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_resize.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_table-variants.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_text-truncate.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_transition.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_utilities.scss -%%WWWDIR%%/css/lib/bootstrap/scss/mixins/_visually-hidden.scss -%%WWWDIR%%/css/lib/bootstrap/scss/utilities/_api.scss -%%WWWDIR%%/css/lib/bootstrap/scss/vendor/_rfs.scss -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-100-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-200-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-300-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-400-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-500-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-600-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-700-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-800-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-all-900-normal.woff -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-cyrillic-ext-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-greek-ext-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-latin-ext-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-100-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-200-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-300-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-400-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-500-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-600-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-700-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-800-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/files/inter-vietnamese-900-normal.woff2 -%%WWWDIR%%/css/lib/fontsource/inter/scss/mixins.scss +%%WWWDIR%%/css/lib/rfs/scss.scss %%WWWDIR%%/css/lib/select2/src/scss/_dropdown.scss %%WWWDIR%%/css/lib/select2/src/scss/_multiple.scss %%WWWDIR%%/css/lib/select2/src/scss/_single.scss @@ -356,215 +206,55 @@ %%WWWDIR%%/css/lib/select2/src/scss/theme/default/_multiple.scss %%WWWDIR%%/css/lib/select2/src/scss/theme/default/_single.scss %%WWWDIR%%/css/lib/select2/src/scss/theme/default/layout.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_bootstrap-components.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_bootstrap-config.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_config.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_core.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_debug.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_mixins-override.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_mixins.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_utilities.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/_variables.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/demo.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/demo/_examples.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/demo/_highlight.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/fonts/_webfonts.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/layout/_core.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/layout/_dark.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/layout/_footer.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/layout/_navbar.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/layout/_page.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/mixins/_functions.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/mixins/_mixins.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/tabler-flags.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/tabler-payments.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/tabler-vendors.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/tabler.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_accordion.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_alerts.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_avatars.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_badges.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_breadcrumbs.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_buttons.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_calendars.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_cards.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_charts.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_close.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_dropdowns.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_empty.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_flags.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_forms.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_grid.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_icons.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_images.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_legend.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_lists.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_loaders.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_login.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_markdown.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_modals.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_nav.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_offcanvas.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_pagination.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_payments.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_placeholder.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_popovers.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_progress.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_ribbons.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_stars.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_status.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_steps.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_switch-icon.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_tables.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_toasts.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_toolbar.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/_type.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-check.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-colorinput.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-custom.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-icon.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-imagecheck.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_form-selectgroup.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms/_validation.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/ui/typo/_hr.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_background.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_colors.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_opacity.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_scroll.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_shadow.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_sizing.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/utils/_text.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/vendor/_apexcharts.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/vendor/_jsvectormap.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/vendor/_litepicker.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/vendor/_nouislider.scss -%%WWWDIR%%/css/lib/tabler/core/src/scss/vendor/_tom-select.scss -%%WWWDIR%%/css/lib/tabler/icons-webfont/fonts/tabler-icons.eot -%%WWWDIR%%/css/lib/tabler/icons-webfont/fonts/tabler-icons.ttf -%%WWWDIR%%/css/lib/tabler/icons-webfont/fonts/tabler-icons.woff -%%WWWDIR%%/css/lib/tabler/icons-webfont/fonts/tabler-icons.woff2 -%%WWWDIR%%/css/lib/tabler/icons-webfont/tabler-icons.scss -%%WWWDIR%%/css/palettes/_defaults.scss -%%WWWDIR%%/css/palettes/aerialgreen.scss -%%WWWDIR%%/css/palettes/auror.scss -%%WWWDIR%%/css/palettes/auror_dark.scss -%%WWWDIR%%/css/palettes/automn.scss -%%WWWDIR%%/css/palettes/classic.scss -%%WWWDIR%%/css/palettes/clockworkorange.scss -%%WWWDIR%%/css/palettes/dark.scss -%%WWWDIR%%/css/palettes/darker.scss -%%WWWDIR%%/css/palettes/flood.scss -%%WWWDIR%%/css/palettes/greenflat.scss -%%WWWDIR%%/css/palettes/hipster.scss -%%WWWDIR%%/css/palettes/icecream.scss -%%WWWDIR%%/css/palettes/lightblue.scss -%%WWWDIR%%/css/palettes/midnight.scss -%%WWWDIR%%/css/palettes/premiumred.scss -%%WWWDIR%%/css/palettes/previews/aerialgreen.png -%%WWWDIR%%/css/palettes/previews/auror.png -%%WWWDIR%%/css/palettes/previews/auror_dark.png -%%WWWDIR%%/css/palettes/previews/automn.png -%%WWWDIR%%/css/palettes/previews/classic.png -%%WWWDIR%%/css/palettes/previews/clockworkorange.png -%%WWWDIR%%/css/palettes/previews/dark.png -%%WWWDIR%%/css/palettes/previews/darker.png -%%WWWDIR%%/css/palettes/previews/flood.png -%%WWWDIR%%/css/palettes/previews/greenflat.png -%%WWWDIR%%/css/palettes/previews/hipster.png -%%WWWDIR%%/css/palettes/previews/icecream.png -%%WWWDIR%%/css/palettes/previews/lightblue.png -%%WWWDIR%%/css/palettes/previews/midnight.png -%%WWWDIR%%/css/palettes/previews/premiumred.png -%%WWWDIR%%/css/palettes/previews/purplehaze.png -%%WWWDIR%%/css/palettes/previews/teclib.png -%%WWWDIR%%/css/palettes/previews/vintage.png -%%WWWDIR%%/css/palettes/purplehaze.scss -%%WWWDIR%%/css/palettes/teclib.scss -%%WWWDIR%%/css/palettes/vintage.scss +%%WWWDIR%%/css/lib/tinymce/skins/ui/oxide-dark/skin.css +%%WWWDIR%%/css/lib/tinymce/skins/ui/oxide/skin.css +%%WWWDIR%%/css/palettes/_aerialgreen.scss +%%WWWDIR%%/css/palettes/_auror.scss +%%WWWDIR%%/css/palettes/_auror_dark.scss +%%WWWDIR%%/css/palettes/_automn.scss +%%WWWDIR%%/css/palettes/_classic.scss +%%WWWDIR%%/css/palettes/_clockworkorange.scss +%%WWWDIR%%/css/palettes/_dark.scss +%%WWWDIR%%/css/palettes/_darker.scss +%%WWWDIR%%/css/palettes/_flood.scss +%%WWWDIR%%/css/palettes/_greenflat.scss +%%WWWDIR%%/css/palettes/_hipster.scss +%%WWWDIR%%/css/palettes/_icecream.scss +%%WWWDIR%%/css/palettes/_lightblue.scss +%%WWWDIR%%/css/palettes/_midnight.scss +%%WWWDIR%%/css/palettes/_premiumred.scss +%%WWWDIR%%/css/palettes/_purplehaze.scss +%%WWWDIR%%/css/palettes/_teclib.scss +%%WWWDIR%%/css/palettes/_vintage.scss %%WWWDIR%%/css/standalone/chartist.scss %%WWWDIR%%/css/standalone/dashboard.scss -%%WWWDIR%%/css/standalone/gridstack-grids.scss +%%WWWDIR%%/css/standalone/kb.scss %%WWWDIR%%/css/standalone/marketplace.scss %%WWWDIR%%/css/standalone/reservations.scss -%%WWWDIR%%/css_compiled/css_install.min.css -%%WWWDIR%%/css_compiled/css_palettes_aerialgreen.min.css -%%WWWDIR%%/css_compiled/css_palettes_auror.min.css -%%WWWDIR%%/css_compiled/css_palettes_auror_dark.min.css -%%WWWDIR%%/css_compiled/css_palettes_automn.min.css -%%WWWDIR%%/css_compiled/css_palettes_classic.min.css -%%WWWDIR%%/css_compiled/css_palettes_clockworkorange.min.css -%%WWWDIR%%/css_compiled/css_palettes_dark.min.css -%%WWWDIR%%/css_compiled/css_palettes_darker.min.css -%%WWWDIR%%/css_compiled/css_palettes_flood.min.css -%%WWWDIR%%/css_compiled/css_palettes_greenflat.min.css -%%WWWDIR%%/css_compiled/css_palettes_hipster.min.css -%%WWWDIR%%/css_compiled/css_palettes_icecream.min.css -%%WWWDIR%%/css_compiled/css_palettes_lightblue.min.css -%%WWWDIR%%/css_compiled/css_palettes_midnight.min.css -%%WWWDIR%%/css_compiled/css_palettes_premiumred.min.css -%%WWWDIR%%/css_compiled/css_palettes_purplehaze.min.css -%%WWWDIR%%/css_compiled/css_palettes_teclib.min.css -%%WWWDIR%%/css_compiled/css_palettes_vintage.min.css -%%WWWDIR%%/css_compiled/css_standalone_chartist.min.css -%%WWWDIR%%/css_compiled/css_standalone_dashboard.min.css -%%WWWDIR%%/css_compiled/css_standalone_gridstack-grids.min.css -%%WWWDIR%%/css_compiled/css_standalone_marketplace.min.css -%%WWWDIR%%/css_compiled/css_standalone_reservations.min.css -%%WWWDIR%%/files/.htaccess -%%WWWDIR%%/front/agent.form.php -%%WWWDIR%%/front/agent.php -%%WWWDIR%%/front/allassets.php -%%WWWDIR%%/front/apiclient.form.php -%%WWWDIR%%/front/appliance.form.php -%%WWWDIR%%/front/appliance.php +%%WWWDIR%%/css/standalone/stencil-editor.scss +%%WWWDIR%%/dependency_injection/framework.php +%%WWWDIR%%/dependency_injection/services.php +%%WWWDIR%%/dependency_injection/web_profiler.php +%%WWWDIR%%/front/_check_webserver_config.php %%WWWDIR%%/front/appliance_item.form.php %%WWWDIR%%/front/appliance_item_relation.form.php -%%WWWDIR%%/front/applianceenvironment.form.php -%%WWWDIR%%/front/applianceenvironment.php -%%WWWDIR%%/front/appliancetype.form.php -%%WWWDIR%%/front/appliancetype.php +%%WWWDIR%%/front/asset/asset.form.php +%%WWWDIR%%/front/asset/asset_peripheralasset.form.php +%%WWWDIR%%/front/asset/assetdefinition.form.php +%%WWWDIR%%/front/asset/customfielddefinition.form.php +%%WWWDIR%%/front/asset/ruledictionarymodel.form.php +%%WWWDIR%%/front/asset/ruledictionarymodel.php +%%WWWDIR%%/front/asset/ruledictionarytype.form.php +%%WWWDIR%%/front/asset/ruledictionarytype.php %%WWWDIR%%/front/auth.others.php %%WWWDIR%%/front/auth.settings.php %%WWWDIR%%/front/authldap.form.php -%%WWWDIR%%/front/authldap.php -%%WWWDIR%%/front/authmail.form.php -%%WWWDIR%%/front/authmail.php -%%WWWDIR%%/front/autoupdatesystem.form.php -%%WWWDIR%%/front/autoupdatesystem.php -%%WWWDIR%%/front/blacklist.form.php -%%WWWDIR%%/front/blacklist.php -%%WWWDIR%%/front/blacklistedmailcontent.form.php -%%WWWDIR%%/front/blacklistedmailcontent.php -%%WWWDIR%%/front/budget.form.php -%%WWWDIR%%/front/budget.php -%%WWWDIR%%/front/budgettype.form.php -%%WWWDIR%%/front/budgettype.php -%%WWWDIR%%/front/businesscriticity.form.php -%%WWWDIR%%/front/businesscriticity.php -%%WWWDIR%%/front/cable.form.php -%%WWWDIR%%/front/cable.php -%%WWWDIR%%/front/cablestrand.form.php -%%WWWDIR%%/front/cablestrand.php -%%WWWDIR%%/front/cabletype.form.php -%%WWWDIR%%/front/cabletype.php -%%WWWDIR%%/front/calendar.form.php -%%WWWDIR%%/front/calendar.php %%WWWDIR%%/front/calendar_holiday.form.php %%WWWDIR%%/front/calendarsegment.form.php %%WWWDIR%%/front/cartridge.form.php -%%WWWDIR%%/front/cartridgeitem.form.php -%%WWWDIR%%/front/cartridgeitem.php %%WWWDIR%%/front/cartridgeitem_printermodel.form.php -%%WWWDIR%%/front/cartridgeitemtype.form.php -%%WWWDIR%%/front/cartridgeitemtype.php -%%WWWDIR%%/front/central.php -%%WWWDIR%%/front/certificate.form.php -%%WWWDIR%%/front/certificate.php %%WWWDIR%%/front/certificate_item.form.php -%%WWWDIR%%/front/certificatetype.form.php -%%WWWDIR%%/front/certificatetype.php %%WWWDIR%%/front/change.form.php -%%WWWDIR%%/front/change.php %%WWWDIR%%/front/change_group.form.php %%WWWDIR%%/front/change_item.form.php %%WWWDIR%%/front/change_problem.form.php @@ -572,140 +262,63 @@ %%WWWDIR%%/front/change_ticket.form.php %%WWWDIR%%/front/change_user.form.php %%WWWDIR%%/front/changecost.form.php +%%WWWDIR%%/front/changesatisfaction.form.php %%WWWDIR%%/front/changetask.form.php -%%WWWDIR%%/front/changetemplate.form.php -%%WWWDIR%%/front/changetemplate.php %%WWWDIR%%/front/changetemplatehiddenfield.form.php %%WWWDIR%%/front/changetemplatemandatoryfield.form.php %%WWWDIR%%/front/changetemplatepredefinedfield.form.php +%%WWWDIR%%/front/changetemplatereadonlyfield.form.php %%WWWDIR%%/front/changevalidation.form.php -%%WWWDIR%%/front/cluster.form.php -%%WWWDIR%%/front/cluster.php -%%WWWDIR%%/front/clustertype.form.php -%%WWWDIR%%/front/clustertype.php %%WWWDIR%%/front/commonitilcost.form.php +%%WWWDIR%%/front/commonitilobject_commonitilobject.form.php +%%WWWDIR%%/front/commonitilobject_item.form.php %%WWWDIR%%/front/commonitiltask.form.php %%WWWDIR%%/front/commonitilvalidation.form.php -%%WWWDIR%%/front/computer.form.php -%%WWWDIR%%/front/computer.php -%%WWWDIR%%/front/computer_item.form.php -%%WWWDIR%%/front/computerantivirus.form.php -%%WWWDIR%%/front/computermodel.form.php -%%WWWDIR%%/front/computermodel.php -%%WWWDIR%%/front/computertype.form.php -%%WWWDIR%%/front/computertype.php -%%WWWDIR%%/front/computervirtualmachine.form.php %%WWWDIR%%/front/config.form.php %%WWWDIR%%/front/consumable.form.php %%WWWDIR%%/front/consumableitem.form.php %%WWWDIR%%/front/consumableitem.php -%%WWWDIR%%/front/consumableitemtype.form.php -%%WWWDIR%%/front/consumableitemtype.php -%%WWWDIR%%/front/contact.form.php -%%WWWDIR%%/front/contact.php %%WWWDIR%%/front/contact_supplier.form.php -%%WWWDIR%%/front/contacttype.form.php -%%WWWDIR%%/front/contacttype.php %%WWWDIR%%/front/contenttemplates/documentation.php -%%WWWDIR%%/front/contract.form.php -%%WWWDIR%%/front/contract.php %%WWWDIR%%/front/contract_item.form.php %%WWWDIR%%/front/contract_supplier.form.php %%WWWDIR%%/front/contractcost.form.php -%%WWWDIR%%/front/contracttype.form.php -%%WWWDIR%%/front/contracttype.php %%WWWDIR%%/front/cron.php %%WWWDIR%%/front/crontask.form.php -%%WWWDIR%%/front/crontask.php %%WWWDIR%%/front/css.php %%WWWDIR%%/front/dashboard_assets.php %%WWWDIR%%/front/dashboard_helpdesk.php %%WWWDIR%%/front/database.form.php -%%WWWDIR%%/front/database.php %%WWWDIR%%/front/databaseinstance.form.php -%%WWWDIR%%/front/databaseinstance.php -%%WWWDIR%%/front/databaseinstancecategory.form.php -%%WWWDIR%%/front/databaseinstancecategory.php -%%WWWDIR%%/front/databaseinstancetype.form.php -%%WWWDIR%%/front/databaseinstancetype.php %%WWWDIR%%/front/datacenter.form.php -%%WWWDIR%%/front/datacenter.php %%WWWDIR%%/front/dcroom.form.php -%%WWWDIR%%/front/dcroom.php -%%WWWDIR%%/front/device.form.php -%%WWWDIR%%/front/device.php -%%WWWDIR%%/front/devicemodel.form.php -%%WWWDIR%%/front/devicemodel.php +%%WWWDIR%%/front/defaultfilter.form.php %%WWWDIR%%/front/devices.php -%%WWWDIR%%/front/devicetype.form.php -%%WWWDIR%%/front/devicetype.php %%WWWDIR%%/front/dictionnary.php -%%WWWDIR%%/front/display.options.php %%WWWDIR%%/front/displaypreference.form.php %%WWWDIR%%/front/document.form.php -%%WWWDIR%%/front/document.php %%WWWDIR%%/front/document.send.php %%WWWDIR%%/front/document_item.form.php -%%WWWDIR%%/front/documentcategory.form.php -%%WWWDIR%%/front/documentcategory.php -%%WWWDIR%%/front/documenttype.form.php %%WWWDIR%%/front/documenttype.list.php -%%WWWDIR%%/front/documenttype.php %%WWWDIR%%/front/domain.form.php -%%WWWDIR%%/front/domain.php %%WWWDIR%%/front/domainrecord.form.php -%%WWWDIR%%/front/domainrecord.php -%%WWWDIR%%/front/domainrecordtype.form.php -%%WWWDIR%%/front/domainrecordtype.php -%%WWWDIR%%/front/domainrelation.form.php -%%WWWDIR%%/front/domainrelation.php -%%WWWDIR%%/front/domaintype.form.php -%%WWWDIR%%/front/domaintype.php %%WWWDIR%%/front/dropdown.common.form.php %%WWWDIR%%/front/dropdown.common.php %%WWWDIR%%/front/dropdown.php +%%WWWDIR%%/front/dropdown/dropdowndefinition.form.php %%WWWDIR%%/front/dropdowntranslation.form.php -%%WWWDIR%%/front/enclosure.form.php -%%WWWDIR%%/front/enclosure.php -%%WWWDIR%%/front/enclosuremodel.form.php -%%WWWDIR%%/front/enclosuremodel.php -%%WWWDIR%%/front/entity.form.php -%%WWWDIR%%/front/entity.php -%%WWWDIR%%/front/event.php -%%WWWDIR%%/front/fieldblacklist.form.php -%%WWWDIR%%/front/fieldblacklist.php -%%WWWDIR%%/front/fieldunicity.form.php -%%WWWDIR%%/front/fieldunicity.php -%%WWWDIR%%/front/filesystem.form.php -%%WWWDIR%%/front/filesystem.php -%%WWWDIR%%/front/fqdn.form.php -%%WWWDIR%%/front/fqdn.php +%%WWWDIR%%/front/form/access_control.form.php +%%WWWDIR%%/front/form/answersset.form.php +%%WWWDIR%%/front/form/form.form.php %%WWWDIR%%/front/graph.send.php %%WWWDIR%%/front/group.form.php -%%WWWDIR%%/front/group.php %%WWWDIR%%/front/group_problem.form.php %%WWWDIR%%/front/group_ticket.form.php %%WWWDIR%%/front/group_user.form.php %%WWWDIR%%/front/helpdesk.faq.php -%%WWWDIR%%/front/helpdesk.html -%%WWWDIR%%/front/helpdesk.php -%%WWWDIR%%/front/helpdesk.public.php -%%WWWDIR%%/front/holiday.form.php -%%WWWDIR%%/front/holiday.php -%%WWWDIR%%/front/imageformat.form.php -%%WWWDIR%%/front/imageformat.php -%%WWWDIR%%/front/imageresolution.form.php -%%WWWDIR%%/front/imageresolution.php %%WWWDIR%%/front/impactcsv.php %%WWWDIR%%/front/impactitem.form.php -%%WWWDIR%%/front/index.php -%%WWWDIR%%/front/infocom.form.php -%%WWWDIR%%/front/interfacetype.form.php -%%WWWDIR%%/front/interfacetype.php -%%WWWDIR%%/front/inventory.conf.php -%%WWWDIR%%/front/inventory.php -%%WWWDIR%%/front/ipnetwork.form.php -%%WWWDIR%%/front/ipnetwork.php +%%WWWDIR%%/front/initpassword.php %%WWWDIR%%/front/ipnetwork_vlan.form.php %%WWWDIR%%/front/item_cluster.form.php %%WWWDIR%%/front/item_device.common.form.php @@ -731,7 +344,9 @@ %%WWWDIR%%/front/item_devicesoundcard.form.php %%WWWDIR%%/front/item_disk.form.php %%WWWDIR%%/front/item_enclosure.form.php +%%WWWDIR%%/front/item_line.form.php %%WWWDIR%%/front/item_operatingsystem.form.php +%%WWWDIR%%/front/item_plug.form.php %%WWWDIR%%/front/item_problem.form.php %%WWWDIR%%/front/item_project.form.php %%WWWDIR%%/front/item_rack.form.php @@ -739,12 +354,11 @@ %%WWWDIR%%/front/item_softwarelicense.form.php %%WWWDIR%%/front/item_softwareversion.form.php %%WWWDIR%%/front/item_ticket.form.php +%%WWWDIR%%/front/item_ticketrecurrent.form.php +%%WWWDIR%%/front/itemantivirus.form.php +%%WWWDIR%%/front/itemvirtualmachine.form.php %%WWWDIR%%/front/itil_project.form.php -%%WWWDIR%%/front/itilcategory.form.php -%%WWWDIR%%/front/itilcategory.php %%WWWDIR%%/front/itilfollowup.form.php -%%WWWDIR%%/front/itilfollowuptemplate.form.php -%%WWWDIR%%/front/itilfollowuptemplate.php %%WWWDIR%%/front/itilsolution.form.php %%WWWDIR%%/front/itiltemplatefield.form.php %%WWWDIR%%/front/knowbaseitem.form.php @@ -752,224 +366,94 @@ %%WWWDIR%%/front/knowbaseitem_comment.form.php %%WWWDIR%%/front/knowbaseitem_item.form.php %%WWWDIR%%/front/knowbaseitem_knowbaseitemcategory.form.php -%%WWWDIR%%/front/knowbaseitemcategory.form.php -%%WWWDIR%%/front/knowbaseitemcategory.php %%WWWDIR%%/front/knowbaseitemtranslation.form.php %%WWWDIR%%/front/ldap.group.import.php %%WWWDIR%%/front/ldap.group.php %%WWWDIR%%/front/ldap.import.php %%WWWDIR%%/front/ldap.php -%%WWWDIR%%/front/line.form.php -%%WWWDIR%%/front/line.php -%%WWWDIR%%/front/lineoperator.form.php -%%WWWDIR%%/front/lineoperator.php -%%WWWDIR%%/front/linetype.form.php -%%WWWDIR%%/front/linetype.php -%%WWWDIR%%/front/link.form.php -%%WWWDIR%%/front/link.php %%WWWDIR%%/front/link.send.php %%WWWDIR%%/front/link_itemtype.form.php %%WWWDIR%%/front/locale.php -%%WWWDIR%%/front/location.form.php -%%WWWDIR%%/front/location.php %%WWWDIR%%/front/lock.form.php -%%WWWDIR%%/front/lockedfield.form.php -%%WWWDIR%%/front/lockedfield.php %%WWWDIR%%/front/log/export.php %%WWWDIR%%/front/login.php %%WWWDIR%%/front/logout.php +%%WWWDIR%%/front/logs.php +%%WWWDIR%%/front/logviewer.php %%WWWDIR%%/front/lostpassword.php -%%WWWDIR%%/front/mailcollector.form.php -%%WWWDIR%%/front/mailcollector.php %%WWWDIR%%/front/manuallink.form.php -%%WWWDIR%%/front/manufacturer.form.php -%%WWWDIR%%/front/manufacturer.php %%WWWDIR%%/front/marketplace.download.php %%WWWDIR%%/front/marketplace.php %%WWWDIR%%/front/massiveaction.php -%%WWWDIR%%/front/migrationcleaner.php -%%WWWDIR%%/front/monitor.form.php -%%WWWDIR%%/front/monitor.php -%%WWWDIR%%/front/monitormodel.form.php -%%WWWDIR%%/front/monitormodel.php -%%WWWDIR%%/front/monitortype.form.php -%%WWWDIR%%/front/monitortype.php -%%WWWDIR%%/front/network.form.php -%%WWWDIR%%/front/network.php %%WWWDIR%%/front/networkalias.form.php %%WWWDIR%%/front/networkequipment.form.php -%%WWWDIR%%/front/networkequipment.php -%%WWWDIR%%/front/networkequipmentmodel.form.php -%%WWWDIR%%/front/networkequipmentmodel.php -%%WWWDIR%%/front/networkequipmenttype.form.php -%%WWWDIR%%/front/networkequipmenttype.php -%%WWWDIR%%/front/networkinterface.form.php -%%WWWDIR%%/front/networkinterface.php %%WWWDIR%%/front/networkname.form.php -%%WWWDIR%%/front/networkname.php %%WWWDIR%%/front/networkport.form.php %%WWWDIR%%/front/networkport_vlan.form.php -%%WWWDIR%%/front/networkportfiberchanneltype.form.php -%%WWWDIR%%/front/networkportfiberchanneltype.php -%%WWWDIR%%/front/networkportmigration.form.php -%%WWWDIR%%/front/networkportmigration.php -%%WWWDIR%%/front/networkporttype.form.php -%%WWWDIR%%/front/networkporttype.php %%WWWDIR%%/front/notepad.form.php %%WWWDIR%%/front/notification.form.php -%%WWWDIR%%/front/notification.php %%WWWDIR%%/front/notification.tags.php %%WWWDIR%%/front/notification_notificationtemplate.form.php %%WWWDIR%%/front/notificationajaxsetting.form.php %%WWWDIR%%/front/notificationmailingsetting.form.php %%WWWDIR%%/front/notificationtarget.form.php %%WWWDIR%%/front/notificationtemplate.form.php -%%WWWDIR%%/front/notificationtemplate.php %%WWWDIR%%/front/notificationtemplatetranslation.form.php -%%WWWDIR%%/front/notimportedemail.php -%%WWWDIR%%/front/ola.form.php -%%WWWDIR%%/front/ola.php +%%WWWDIR%%/front/oauthclient.form.php %%WWWDIR%%/front/olalevel.form.php -%%WWWDIR%%/front/olalevel.php %%WWWDIR%%/front/olalevelaction.form.php %%WWWDIR%%/front/olalevelcriteria.form.php -%%WWWDIR%%/front/operatingsystem.form.php -%%WWWDIR%%/front/operatingsystem.php -%%WWWDIR%%/front/operatingsystemarchitecture.form.php -%%WWWDIR%%/front/operatingsystemarchitecture.php -%%WWWDIR%%/front/operatingsystemedition.form.php -%%WWWDIR%%/front/operatingsystemedition.php -%%WWWDIR%%/front/operatingsystemkernel.form.php -%%WWWDIR%%/front/operatingsystemkernel.php -%%WWWDIR%%/front/operatingsystemkernelversion.form.php -%%WWWDIR%%/front/operatingsystemkernelversion.php -%%WWWDIR%%/front/operatingsystemservicepack.form.php -%%WWWDIR%%/front/operatingsystemservicepack.php -%%WWWDIR%%/front/operatingsystemversion.form.php -%%WWWDIR%%/front/operatingsystemversion.php -%%WWWDIR%%/front/passivedcequipment.form.php -%%WWWDIR%%/front/passivedcequipment.php -%%WWWDIR%%/front/passivedcequipmentmodel.form.php -%%WWWDIR%%/front/passivedcequipmentmodel.php -%%WWWDIR%%/front/passivedcequipmenttype.form.php -%%WWWDIR%%/front/passivedcequipmenttype.php -%%WWWDIR%%/front/pcivendor.form.php -%%WWWDIR%%/front/pcivendor.php -%%WWWDIR%%/front/pdu.form.php -%%WWWDIR%%/front/pdu.php -%%WWWDIR%%/front/pdu_plug.form.php +%%WWWDIR%%/front/palette_preview.php %%WWWDIR%%/front/pdu_rack.form.php -%%WWWDIR%%/front/pdumodel.form.php -%%WWWDIR%%/front/pdumodel.php -%%WWWDIR%%/front/pdutype.form.php -%%WWWDIR%%/front/pdutype.php -%%WWWDIR%%/front/pendingreason.form.php -%%WWWDIR%%/front/pendingreason.php -%%WWWDIR%%/front/peripheral.form.php -%%WWWDIR%%/front/peripheral.php -%%WWWDIR%%/front/peripheralmodel.form.php -%%WWWDIR%%/front/peripheralmodel.php -%%WWWDIR%%/front/peripheraltype.form.php -%%WWWDIR%%/front/peripheraltype.php -%%WWWDIR%%/front/phone.form.php -%%WWWDIR%%/front/phone.php -%%WWWDIR%%/front/phonemodel.form.php -%%WWWDIR%%/front/phonemodel.php -%%WWWDIR%%/front/phonepowersupply.form.php -%%WWWDIR%%/front/phonepowersupply.php -%%WWWDIR%%/front/phonetype.form.php -%%WWWDIR%%/front/phonetype.php %%WWWDIR%%/front/planning.form.php %%WWWDIR%%/front/planning.php %%WWWDIR%%/front/planningcsv.php -%%WWWDIR%%/front/planningeventcategory.form.php -%%WWWDIR%%/front/planningeventcategory.php %%WWWDIR%%/front/planningexternalevent.form.php -%%WWWDIR%%/front/planningexternalevent.php -%%WWWDIR%%/front/planningexternaleventtemplate.form.php -%%WWWDIR%%/front/planningexternaleventtemplate.php %%WWWDIR%%/front/planningrecall.form.php -%%WWWDIR%%/front/plug.form.php -%%WWWDIR%%/front/plug.php %%WWWDIR%%/front/plugin.form.php %%WWWDIR%%/front/plugin.php %%WWWDIR%%/front/pluginimage.send.php %%WWWDIR%%/front/preference.php -%%WWWDIR%%/front/printer.form.php -%%WWWDIR%%/front/printer.php -%%WWWDIR%%/front/printermodel.form.php -%%WWWDIR%%/front/printermodel.php -%%WWWDIR%%/front/printertype.form.php -%%WWWDIR%%/front/printertype.php +%%WWWDIR%%/front/printerlogcsv.php %%WWWDIR%%/front/problem.form.php -%%WWWDIR%%/front/problem.php %%WWWDIR%%/front/problem_supplier.form.php %%WWWDIR%%/front/problem_ticket.form.php %%WWWDIR%%/front/problem_user.form.php %%WWWDIR%%/front/problemcost.form.php %%WWWDIR%%/front/problemtask.form.php -%%WWWDIR%%/front/problemtemplate.form.php -%%WWWDIR%%/front/problemtemplate.php %%WWWDIR%%/front/problemtemplatehiddenfield.form.php %%WWWDIR%%/front/problemtemplatemandatoryfield.form.php %%WWWDIR%%/front/problemtemplatepredefinedfield.form.php +%%WWWDIR%%/front/problemtemplatereadonlyfield.form.php %%WWWDIR%%/front/profile.form.php -%%WWWDIR%%/front/profile.php %%WWWDIR%%/front/profile_user.form.php %%WWWDIR%%/front/project.form.php -%%WWWDIR%%/front/project.php %%WWWDIR%%/front/projectcost.form.php -%%WWWDIR%%/front/projectstate.form.php -%%WWWDIR%%/front/projectstate.php %%WWWDIR%%/front/projecttask.form.php -%%WWWDIR%%/front/projecttask.php %%WWWDIR%%/front/projecttask_ticket.form.php %%WWWDIR%%/front/projecttaskteam.form.php -%%WWWDIR%%/front/projecttasktemplate.form.php -%%WWWDIR%%/front/projecttasktemplate.php -%%WWWDIR%%/front/projecttasktype.form.php -%%WWWDIR%%/front/projecttasktype.php %%WWWDIR%%/front/projectteam.form.php -%%WWWDIR%%/front/projecttype.form.php -%%WWWDIR%%/front/projecttype.php %%WWWDIR%%/front/queuednotification.form.php -%%WWWDIR%%/front/queuednotification.php +%%WWWDIR%%/front/queuedwebhook.form.php %%WWWDIR%%/front/rack.form.php -%%WWWDIR%%/front/rack.php -%%WWWDIR%%/front/rackmodel.form.php -%%WWWDIR%%/front/rackmodel.php -%%WWWDIR%%/front/racktype.form.php -%%WWWDIR%%/front/racktype.php -%%WWWDIR%%/front/recurrentchange.form.php -%%WWWDIR%%/front/recurrentchange.php %%WWWDIR%%/front/refusedequipment.form.php -%%WWWDIR%%/front/refusedequipment.php %%WWWDIR%%/front/reminder.form.php -%%WWWDIR%%/front/reminder.php %%WWWDIR%%/front/remindertranslation.form.php -%%WWWDIR%%/front/report.contract.list.php %%WWWDIR%%/front/report.contract.php %%WWWDIR%%/front/report.default.php %%WWWDIR%%/front/report.dynamic.php %%WWWDIR%%/front/report.infocom.conso.php %%WWWDIR%%/front/report.infocom.php -%%WWWDIR%%/front/report.location.list.php %%WWWDIR%%/front/report.networking.php %%WWWDIR%%/front/report.php %%WWWDIR%%/front/report.reservation.php -%%WWWDIR%%/front/report.socket.list.php %%WWWDIR%%/front/report.state.php -%%WWWDIR%%/front/report.switch.list.php -%%WWWDIR%%/front/report.year.list.php %%WWWDIR%%/front/report.year.php -%%WWWDIR%%/front/requesttype.form.php -%%WWWDIR%%/front/requesttype.php %%WWWDIR%%/front/reservation.form.php %%WWWDIR%%/front/reservation.php %%WWWDIR%%/front/reservationitem.form.php %%WWWDIR%%/front/reservationitem.php %%WWWDIR%%/front/rssfeed.form.php -%%WWWDIR%%/front/rssfeed.php %%WWWDIR%%/front/rule.backup.php %%WWWDIR%%/front/rule.common.form.php %%WWWDIR%%/front/rule.common.php @@ -979,7 +463,11 @@ %%WWWDIR%%/front/ruleaction.form.php %%WWWDIR%%/front/ruleasset.form.php %%WWWDIR%%/front/ruleasset.php +%%WWWDIR%%/front/rulechange.form.php +%%WWWDIR%%/front/rulechange.php %%WWWDIR%%/front/rulecriteria.form.php +%%WWWDIR%%/front/ruledefineitemtype.form.php +%%WWWDIR%%/front/ruledefineitemtype.php %%WWWDIR%%/front/ruledictionnarycomputermodel.form.php %%WWWDIR%%/front/ruledictionnarycomputermodel.php %%WWWDIR%%/front/ruledictionnarycomputertype.form.php @@ -1022,144 +510,65 @@ %%WWWDIR%%/front/ruledictionnarysoftware.php %%WWWDIR%%/front/ruleimportasset.form.php %%WWWDIR%%/front/ruleimportasset.php -%%WWWDIR%%/front/ruleimportcomputer.form.php -%%WWWDIR%%/front/ruleimportcomputer.php %%WWWDIR%%/front/ruleimportentity.form.php %%WWWDIR%%/front/ruleimportentity.php %%WWWDIR%%/front/rulelocation.form.php %%WWWDIR%%/front/rulelocation.php %%WWWDIR%%/front/rulemailcollector.form.php %%WWWDIR%%/front/rulemailcollector.php +%%WWWDIR%%/front/ruleproblem.form.php +%%WWWDIR%%/front/ruleproblem.php %%WWWDIR%%/front/ruleright.form.php %%WWWDIR%%/front/ruleright.php -%%WWWDIR%%/front/rulerightparameter.form.php -%%WWWDIR%%/front/rulerightparameter.php %%WWWDIR%%/front/rulesengine.test.php %%WWWDIR%%/front/rulesoftwarecategory.form.php %%WWWDIR%%/front/rulesoftwarecategory.php %%WWWDIR%%/front/ruleticket.form.php %%WWWDIR%%/front/ruleticket.php -%%WWWDIR%%/front/savedsearch.form.php %%WWWDIR%%/front/savedsearch.php %%WWWDIR%%/front/savedsearch_alert.form.php %%WWWDIR%%/front/search.php %%WWWDIR%%/front/setup.auth.php %%WWWDIR%%/front/setup.notification.php %%WWWDIR%%/front/setup.templates.php -%%WWWDIR%%/front/sla.form.php -%%WWWDIR%%/front/sla.php %%WWWDIR%%/front/slalevel.form.php -%%WWWDIR%%/front/slalevel.php %%WWWDIR%%/front/slalevelaction.form.php %%WWWDIR%%/front/slalevelcriteria.form.php -%%WWWDIR%%/front/slm.form.php -%%WWWDIR%%/front/slm.php %%WWWDIR%%/front/smtp_oauth2_callback.php %%WWWDIR%%/front/snmpcredential.form.php -%%WWWDIR%%/front/snmpcredential.php %%WWWDIR%%/front/socket.form.php -%%WWWDIR%%/front/socket.php -%%WWWDIR%%/front/socketmodel.form.php -%%WWWDIR%%/front/socketmodel.php -%%WWWDIR%%/front/software.form.php -%%WWWDIR%%/front/software.php -%%WWWDIR%%/front/softwarecategory.form.php -%%WWWDIR%%/front/softwarecategory.php %%WWWDIR%%/front/softwarelicense.form.php -%%WWWDIR%%/front/softwarelicense.php -%%WWWDIR%%/front/softwarelicensetype.form.php -%%WWWDIR%%/front/softwarelicensetype.php %%WWWDIR%%/front/softwareversion.form.php -%%WWWDIR%%/front/solutiontemplate.form.php -%%WWWDIR%%/front/solutiontemplate.php -%%WWWDIR%%/front/solutiontype.form.php -%%WWWDIR%%/front/solutiontype.php -%%WWWDIR%%/front/ssovariable.form.php -%%WWWDIR%%/front/ssovariable.php %%WWWDIR%%/front/stat.global.php %%WWWDIR%%/front/stat.graph.php %%WWWDIR%%/front/stat.item.php %%WWWDIR%%/front/stat.location.php %%WWWDIR%%/front/stat.php %%WWWDIR%%/front/stat.tracking.php -%%WWWDIR%%/front/state.form.php -%%WWWDIR%%/front/state.php -%%WWWDIR%%/front/supplier.form.php -%%WWWDIR%%/front/supplier.php +%%WWWDIR%%/front/stencil.form.php %%WWWDIR%%/front/supplier_ticket.form.php -%%WWWDIR%%/front/suppliertype.form.php -%%WWWDIR%%/front/suppliertype.php -%%WWWDIR%%/front/taskcategory.form.php -%%WWWDIR%%/front/taskcategory.php -%%WWWDIR%%/front/tasktemplate.form.php -%%WWWDIR%%/front/tasktemplate.php %%WWWDIR%%/front/ticket.form.php %%WWWDIR%%/front/ticket.php %%WWWDIR%%/front/ticket_contract.form.php %%WWWDIR%%/front/ticket_ticket.form.php %%WWWDIR%%/front/ticket_user.form.php %%WWWDIR%%/front/ticketcost.form.php -%%WWWDIR%%/front/ticketrecurrent.form.php -%%WWWDIR%%/front/ticketrecurrent.php %%WWWDIR%%/front/ticketsatisfaction.form.php %%WWWDIR%%/front/tickettask.form.php -%%WWWDIR%%/front/tickettemplate.form.php -%%WWWDIR%%/front/tickettemplate.php %%WWWDIR%%/front/tickettemplatehiddenfield.form.php %%WWWDIR%%/front/tickettemplatemandatoryfield.form.php %%WWWDIR%%/front/tickettemplatepredefinedfield.form.php +%%WWWDIR%%/front/tickettemplatereadonlyfield.form.php %%WWWDIR%%/front/ticketvalidation.form.php -%%WWWDIR%%/front/tracking.injector.php %%WWWDIR%%/front/transfer.action.php -%%WWWDIR%%/front/transfer.form.php -%%WWWDIR%%/front/transfer.php -%%WWWDIR%%/front/unmanaged.form.php -%%WWWDIR%%/front/unmanaged.php %%WWWDIR%%/front/updatepassword.php -%%WWWDIR%%/front/usbvendor.form.php -%%WWWDIR%%/front/usbvendor.php %%WWWDIR%%/front/user.form.php -%%WWWDIR%%/front/user.php -%%WWWDIR%%/front/usercategory.form.php -%%WWWDIR%%/front/usercategory.php -%%WWWDIR%%/front/usertitle.form.php -%%WWWDIR%%/front/usertitle.php -%%WWWDIR%%/front/virtualmachinestate.form.php -%%WWWDIR%%/front/virtualmachinestate.php -%%WWWDIR%%/front/virtualmachinesystem.form.php -%%WWWDIR%%/front/virtualmachinesystem.php -%%WWWDIR%%/front/virtualmachinetype.form.php -%%WWWDIR%%/front/virtualmachinetype.php -%%WWWDIR%%/front/vlan.form.php -%%WWWDIR%%/front/vlan.php -%%WWWDIR%%/front/wifinetwork.form.php -%%WWWDIR%%/front/wifinetwork.php -%%WWWDIR%%/inc/autoload.function.php -%%WWWDIR%%/inc/based_config.php -%%WWWDIR%%/inc/config.php -%%WWWDIR%%/inc/db.function.php -%%WWWDIR%%/inc/define.php +%%WWWDIR%%/front/validatorsubstitute.form.php %%WWWDIR%%/inc/includes.php -%%WWWDIR%%/inc/index.php %%WWWDIR%%/inc/relation.constant.php -%%WWWDIR%%/index.php +%%WWWDIR%%/index.html %%WWWDIR%%/install/empty_data.php -%%WWWDIR%%/install/index.php %%WWWDIR%%/install/install.php -%%WWWDIR%%/install/migrations/old_objects.php -%%WWWDIR%%/install/migrations/update_0.80.0_to_0.80.1.php -%%WWWDIR%%/install/migrations/update_0.80.1_to_0.80.3.php -%%WWWDIR%%/install/migrations/update_0.80.x_to_0.83.0.php -%%WWWDIR%%/install/migrations/update_0.83.0_to_0.83.1.php -%%WWWDIR%%/install/migrations/update_0.83.1_to_0.83.3.php -%%WWWDIR%%/install/migrations/update_0.83.x_to_0.84.0.php -%%WWWDIR%%/install/migrations/update_0.84.0_to_0.84.1.php -%%WWWDIR%%/install/migrations/update_0.84.1_to_0.84.3.php -%%WWWDIR%%/install/migrations/update_0.84.3_to_0.84.4.php -%%WWWDIR%%/install/migrations/update_0.84.5_to_0.84.6.php -%%WWWDIR%%/install/migrations/update_0.84.x_to_0.85.0.php -%%WWWDIR%%/install/migrations/update_0.85.0_to_0.85.3.php -%%WWWDIR%%/install/migrations/update_0.85.3_to_0.85.5.php %%WWWDIR%%/install/migrations/update_0.85.x_to_0.90.0.php %%WWWDIR%%/install/migrations/update_0.90.0_to_0.90.1.php %%WWWDIR%%/install/migrations/update_0.90.1_to_0.90.5.php @@ -1261,6 +670,92 @@ %%WWWDIR%%/install/migrations/update_10.0.9_to_10.0.10/ldap_fields.php %%WWWDIR%%/install/migrations/update_10.0.9_to_10.0.10/mailcollector.php %%WWWDIR%%/install/migrations/update_10.0.9_to_10.0.10/templates.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/antivirus.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/approval_reminder.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/assets.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/assets_peripheralassets.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/assignable_items.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/authldap.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/authmail.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/cable.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/change_rules.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/changesatisfactions.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/commonitilobject_commonitilobject.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/configs.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/consumable.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/contract_user.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/criteriafilter.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/crontask.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/databaseinstance.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/dcroom.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/deviceharddrivetypes.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/displaypreference.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/dropdowns.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/entity.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/environments.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/event.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/form.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/group.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/group_user.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/impactrelations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/impersonate_right.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/items_lines.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/items_ticketrecurrents.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itemtranslations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itilfollowup.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itilfollowuptemplates.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itilobject_templates.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itilreminders.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/itilvalidationtemplates.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/knowbase.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/knowbaseitem.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/links.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/locations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/logs.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/mailcollector_rules.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/mailcollectors.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/mailer.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/mfa.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/networkportmigrations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/notepads.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/notifications.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/oauth.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/password_history.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/pendingreason.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/plugs.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/printerlog.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/problem_rules.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/processes.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/profiles.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/projecttask.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/queued_notification.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/recursive_groups.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/remindertranslations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/rulesmatchedlogs.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/slm.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/software_license.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/softwarelicense_user.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/softwares.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/solutiontypes.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/state_is_helpdesk_visible.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/states.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/stencil.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/tasktemplate.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/tasktemplates.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/text_cols.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/ticket.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/ticketrecurrents.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/tickettask.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/tls_version.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/translations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/user.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/user_deleted_ldap.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/validations.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/validationsteps.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/validatorsubstitute.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/virtualmachines.php +%%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0/webhook.php %%WWWDIR%%/install/migrations/update_9.1.0_to_9.1.1.php %%WWWDIR%%/install/migrations/update_9.1.1_to_9.1.3.php %%WWWDIR%%/install/migrations/update_9.1.x_to_9.2.0.php @@ -1332,39 +827,6 @@ %%WWWDIR%%/install/migrations/update_9.5.x_to_10.0.0/tickettask.php %%WWWDIR%%/install/migrations/update_9.5.x_to_10.0.0/transfer.php %%WWWDIR%%/install/migrations/update_9.5.x_to_10.0.0/uuids.php -%%WWWDIR%%/install/mysql/.htaccess -%%WWWDIR%%/install/mysql/glpi-0.80.0-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.1-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.2-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.3-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.4-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.5-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.6-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.80.7-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.0-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.1-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.2-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.3-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.4-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.5-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.6-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.7-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.8-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.83.9-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.0-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.1-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.2-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.3-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.4-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.5-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.6-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.7-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.84.8-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.85.0-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.85.1-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.85.2-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.85.3-empty.sql -%%WWWDIR%%/install/mysql/glpi-0.85.4-empty.sql %%WWWDIR%%/install/mysql/glpi-0.85.5-empty.sql %%WWWDIR%%/install/mysql/glpi-0.90.0-empty.sql %%WWWDIR%%/install/mysql/glpi-0.90.1-empty.sql @@ -1385,6 +847,7 @@ %%WWWDIR%%/install/mysql/glpi-10.0.18-empty.sql %%WWWDIR%%/install/mysql/glpi-10.0.19-empty.sql %%WWWDIR%%/install/mysql/glpi-10.0.2-empty.sql +%%WWWDIR%%/install/mysql/glpi-10.0.20-empty.sql %%WWWDIR%%/install/mysql/glpi-10.0.3-empty.sql %%WWWDIR%%/install/mysql/glpi-10.0.4-empty.sql %%WWWDIR%%/install/mysql/glpi-10.0.5-empty.sql @@ -1433,110 +896,33 @@ %%WWWDIR%%/install/mysql/glpi-9.5.9-empty.sql %%WWWDIR%%/install/mysql/glpi-empty.sql %%WWWDIR%%/install/update.php -%%WWWDIR%%/js/Forms/FaIconSelector.js -%%WWWDIR%%/js/Forms/FaIconSelector.min.js -%%WWWDIR%%/js/RichText/ContentTemplatesParameters.js -%%WWWDIR%%/js/RichText/ContentTemplatesParameters.min.js -%%WWWDIR%%/js/RichText/UserMention.js -%%WWWDIR%%/js/RichText/UserMention.min.js -%%WWWDIR%%/js/cable.js -%%WWWDIR%%/js/cable.min.js -%%WWWDIR%%/js/clipboard.js -%%WWWDIR%%/js/clipboard.min.js -%%WWWDIR%%/js/common.js -%%WWWDIR%%/js/common.min.js -%%WWWDIR%%/js/dashboard.js -%%WWWDIR%%/js/dashboard.min.js -%%WWWDIR%%/js/fileupload.js -%%WWWDIR%%/js/fileupload.min.js -%%WWWDIR%%/js/flatpickr_buttons_plugin.js -%%WWWDIR%%/js/flatpickr_buttons_plugin.min.js -%%WWWDIR%%/js/fuzzysearch.js -%%WWWDIR%%/js/fuzzysearch.min.js -%%WWWDIR%%/js/glpi_dialog.js -%%WWWDIR%%/js/glpi_dialog.min.js -%%WWWDIR%%/js/impact.js -%%WWWDIR%%/js/impact.min.js -%%WWWDIR%%/js/log_filters.js -%%WWWDIR%%/js/log_filters.min.js -%%WWWDIR%%/js/marketplace.js -%%WWWDIR%%/js/marketplace.min.js -%%WWWDIR%%/js/misc.js -%%WWWDIR%%/js/misc.min.js -%%WWWDIR%%/js/modules/Debug/Debug.js -%%WWWDIR%%/js/modules/Debug/Debug.min.js -%%WWWDIR%%/js/modules/Kanban/Kanban.js -%%WWWDIR%%/js/modules/Kanban/Kanban.min.js -%%WWWDIR%%/js/modules/Search/GenericView.js -%%WWWDIR%%/js/modules/Search/GenericView.min.js -%%WWWDIR%%/js/modules/Search/ResultsView.js -%%WWWDIR%%/js/modules/Search/ResultsView.min.js -%%WWWDIR%%/js/modules/Search/Table.js -%%WWWDIR%%/js/modules/Search/Table.min.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchInput.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchInput.min.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchToken.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchToken.min.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchTokenizer.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchTokenizer.min.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchTokenizerResult.js -%%WWWDIR%%/js/modules/SearchTokenizer/SearchTokenizerResult.min.js -%%WWWDIR%%/js/modules/package.json -%%WWWDIR%%/js/notifications_ajax.js -%%WWWDIR%%/js/notifications_ajax.min.js -%%WWWDIR%%/js/planning.js -%%WWWDIR%%/js/planning.min.js -%%WWWDIR%%/js/rack.js -%%WWWDIR%%/js/rack.min.js -%%WWWDIR%%/js/reservations.js -%%WWWDIR%%/js/reservations.min.js -%%WWWDIR%%/js/webkit_fix.js -%%WWWDIR%%/js/webkit_fix.min.js %%WWWDIR%%/lib/blueimp/jquery-file-upload/LICENSE.txt %%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload-process.js -%%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload-process.min.js %%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload-validate.js -%%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload-validate.min.js %%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload.js -%%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.fileupload.min.js %%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.iframe-transport.js -%%WWWDIR%%/lib/blueimp/jquery-file-upload/jquery.iframe-transport.min.js +%%WWWDIR%%/lib/bundles/altcha.js %%WWWDIR%%/lib/bundles/base.js -%%WWWDIR%%/lib/bundles/base.min.js -%%WWWDIR%%/lib/bundles/chartist.js -%%WWWDIR%%/lib/bundles/chartist.min.js -%%WWWDIR%%/lib/bundles/codemirror.js -%%WWWDIR%%/lib/bundles/codemirror.min.js +%%WWWDIR%%/lib/bundles/cropper.js %%WWWDIR%%/lib/bundles/cytoscape.js -%%WWWDIR%%/lib/bundles/cytoscape.min.js +%%WWWDIR%%/lib/bundles/echarts.js %%WWWDIR%%/lib/bundles/flatpickr.js -%%WWWDIR%%/lib/bundles/flatpickr.min.js %%WWWDIR%%/lib/bundles/fullcalendar.js -%%WWWDIR%%/lib/bundles/fullcalendar.min.js %%WWWDIR%%/lib/bundles/fuzzy.js -%%WWWDIR%%/lib/bundles/fuzzy.min.js %%WWWDIR%%/lib/bundles/gridstack.js -%%WWWDIR%%/lib/bundles/gridstack.min.js %%WWWDIR%%/lib/bundles/jquery-file-upload.js -%%WWWDIR%%/lib/bundles/jquery-file-upload.min.js %%WWWDIR%%/lib/bundles/jquery-prettytextdiff.js -%%WWWDIR%%/lib/bundles/jquery-prettytextdiff.min.js %%WWWDIR%%/lib/bundles/jquery.rateit.js -%%WWWDIR%%/lib/bundles/jquery.rateit.min.js %%WWWDIR%%/lib/bundles/leaflet.js -%%WWWDIR%%/lib/bundles/leaflet.min.js %%WWWDIR%%/lib/bundles/masonry.js -%%WWWDIR%%/lib/bundles/masonry.min.js +%%WWWDIR%%/lib/bundles/monaco.js %%WWWDIR%%/lib/bundles/photoswipe.js -%%WWWDIR%%/lib/bundles/photoswipe.min.js -%%WWWDIR%%/lib/bundles/prismjs.js -%%WWWDIR%%/lib/bundles/prismjs.min.js %%WWWDIR%%/lib/bundles/sortable.js -%%WWWDIR%%/lib/bundles/sortable.min.js +%%WWWDIR%%/lib/bundles/swagger-ui.js +%%WWWDIR%%/lib/bundles/tabler.scss +%%WWWDIR%%/lib/bundles/tablericons-definitions.js +%%WWWDIR%%/lib/bundles/tinycolor.js %%WWWDIR%%/lib/bundles/tinymce.js -%%WWWDIR%%/lib/bundles/tinymce.min.js -%%WWWDIR%%/lib/index.php -%%WWWDIR%%/locales/.htaccess %%WWWDIR%%/locales/ar_SA.mo %%WWWDIR%%/locales/ar_SA.po %%WWWDIR%%/locales/be_BY.mo @@ -1661,298 +1047,236 @@ %%WWWDIR%%/locales/zh_HK.po %%WWWDIR%%/locales/zh_TW.mo %%WWWDIR%%/locales/zh_TW.po -%%WWWDIR%%/pics/PICS-AUTHORS.txt -%%WWWDIR%%/pics/accepted.png -%%WWWDIR%%/pics/actualiser.png -%%WWWDIR%%/pics/add_dark.png -%%WWWDIR%%/pics/add_dropdown.png -%%WWWDIR%%/pics/addresa.png -%%WWWDIR%%/pics/answer.png -%%WWWDIR%%/pics/approbation.png -%%WWWDIR%%/pics/assign.png -%%WWWDIR%%/pics/charts/area.png -%%WWWDIR%%/pics/charts/articles.png -%%WWWDIR%%/pics/charts/bar.png -%%WWWDIR%%/pics/charts/bignumber.png -%%WWWDIR%%/pics/charts/donut.png -%%WWWDIR%%/pics/charts/halfdonut.png -%%WWWDIR%%/pics/charts/halfpie.png -%%WWWDIR%%/pics/charts/hbar.png -%%WWWDIR%%/pics/charts/hstacked.png -%%WWWDIR%%/pics/charts/line.png -%%WWWDIR%%/pics/charts/markdown.png -%%WWWDIR%%/pics/charts/multiplenumbers.png -%%WWWDIR%%/pics/charts/pie.png -%%WWWDIR%%/pics/charts/sources.md -%%WWWDIR%%/pics/charts/stacked.png -%%WWWDIR%%/pics/charts/summarynumber.png -%%WWWDIR%%/pics/charts/table.png -%%WWWDIR%%/pics/close.png -%%WWWDIR%%/pics/closed.png -%%WWWDIR%%/pics/collapse.gif -%%WWWDIR%%/pics/collapse.png -%%WWWDIR%%/pics/corners.gif -%%WWWDIR%%/pics/d.png -%%WWWDIR%%/pics/delete.png -%%WWWDIR%%/pics/deplier_down.png -%%WWWDIR%%/pics/deplier_up.png -%%WWWDIR%%/pics/dollar.png -%%WWWDIR%%/pics/dollaradd.png -%%WWWDIR%%/pics/down.png -%%WWWDIR%%/pics/drag.png -%%WWWDIR%%/pics/edit.png -%%WWWDIR%%/pics/evaluation.png -%%WWWDIR%%/pics/expand.gif -%%WWWDIR%%/pics/expand.png -%%WWWDIR%%/pics/faqadd.png -%%WWWDIR%%/pics/faqedit.png -%%WWWDIR%%/pics/favicon.ico -%%WWWDIR%%/pics/fd_footer.png -%%WWWDIR%%/pics/fd_hoverlink.png -%%WWWDIR%%/pics/fd_logo.png -%%WWWDIR%%/pics/fd_nav1.png -%%WWWDIR%%/pics/fd_nav3.png -%%WWWDIR%%/pics/fd_ssmenu.png -%%WWWDIR%%/pics/first.png -%%WWWDIR%%/pics/first_off.png -%%WWWDIR%%/pics/fond-central.png -%%WWWDIR%%/pics/fond_form.png -%%WWWDIR%%/pics/fond_form_on.png -%%WWWDIR%%/pics/fond_onglet.png -%%WWWDIR%%/pics/fond_th.png -%%WWWDIR%%/pics/glpi.png -%%WWWDIR%%/pics/greenbutton.png -%%WWWDIR%%/pics/groupes.png -%%WWWDIR%%/pics/icones/ai-dist.png -%%WWWDIR%%/pics/icones/aiff-dist.png -%%WWWDIR%%/pics/icones/asf-dist.png -%%WWWDIR%%/pics/icones/avi-dist.png -%%WWWDIR%%/pics/icones/bmp-dist.png -%%WWWDIR%%/pics/icones/bz2-dist.png -%%WWWDIR%%/pics/icones/c-dist.png -%%WWWDIR%%/pics/icones/csv-dist.png -%%WWWDIR%%/pics/icones/deb-dist.png -%%WWWDIR%%/pics/icones/defaut-dist.png -%%WWWDIR%%/pics/icones/doc-dist.png -%%WWWDIR%%/pics/icones/dvi-dist.png -%%WWWDIR%%/pics/icones/eps-dist.png -%%WWWDIR%%/pics/icones/gif-dist.png -%%WWWDIR%%/pics/icones/gz-dist.png -%%WWWDIR%%/pics/icones/h-dist.png -%%WWWDIR%%/pics/icones/html-dist.png -%%WWWDIR%%/pics/icones/jpg-dist.png -%%WWWDIR%%/pics/icones/mid-dist.png -%%WWWDIR%%/pics/icones/mov-dist.png -%%WWWDIR%%/pics/icones/mp3-dist.png -%%WWWDIR%%/pics/icones/mpg-dist.png -%%WWWDIR%%/pics/icones/odb-dist.png -%%WWWDIR%%/pics/icones/odc-dist.png -%%WWWDIR%%/pics/icones/odf-dist.png -%%WWWDIR%%/pics/icones/odg-dist.png -%%WWWDIR%%/pics/icones/odm-dist.png -%%WWWDIR%%/pics/icones/odp-dist.png -%%WWWDIR%%/pics/icones/ods-dist.png -%%WWWDIR%%/pics/icones/odt-dist.png -%%WWWDIR%%/pics/icones/ogg-dist.png -%%WWWDIR%%/pics/icones/otg-dist.png -%%WWWDIR%%/pics/icones/oth-dist.png -%%WWWDIR%%/pics/icones/otp-dist.png -%%WWWDIR%%/pics/icones/ots-dist.png -%%WWWDIR%%/pics/icones/ott-dist.png -%%WWWDIR%%/pics/icones/pas-dist.png -%%WWWDIR%%/pics/icones/pdf-dist.png -%%WWWDIR%%/pics/icones/png-dist.png -%%WWWDIR%%/pics/icones/ppt-dist.png -%%WWWDIR%%/pics/icones/ps-dist.png -%%WWWDIR%%/pics/icones/psd-dist.png -%%WWWDIR%%/pics/icones/qt-dist.png -%%WWWDIR%%/pics/icones/ra-dist.png -%%WWWDIR%%/pics/icones/ram-dist.png -%%WWWDIR%%/pics/icones/rm-dist.png -%%WWWDIR%%/pics/icones/rpm-dist.png -%%WWWDIR%%/pics/icones/rtf-dist.png -%%WWWDIR%%/pics/icones/sdd-dist.png -%%WWWDIR%%/pics/icones/sdw-dist.png -%%WWWDIR%%/pics/icones/sit-dist.png -%%WWWDIR%%/pics/icones/svg-dist.png -%%WWWDIR%%/pics/icones/swf-dist.png -%%WWWDIR%%/pics/icones/sxc-dist.png -%%WWWDIR%%/pics/icones/sxd-dist.png -%%WWWDIR%%/pics/icones/sxi-dist.png -%%WWWDIR%%/pics/icones/sxw-dist.png -%%WWWDIR%%/pics/icones/tex-dist.png -%%WWWDIR%%/pics/icones/tgz-dist.png -%%WWWDIR%%/pics/icones/tif-dist.png -%%WWWDIR%%/pics/icones/txt-dist.png -%%WWWDIR%%/pics/icones/wav-dist.png -%%WWWDIR%%/pics/icones/wmv-dist.png -%%WWWDIR%%/pics/icones/xcf-dist.png -%%WWWDIR%%/pics/icones/xls-dist.png -%%WWWDIR%%/pics/icones/xml-dist.png -%%WWWDIR%%/pics/icones/zip-dist.png -%%WWWDIR%%/pics/impact/README.txt -%%WWWDIR%%/pics/impact/appliance.png -%%WWWDIR%%/pics/impact/authldap.png -%%WWWDIR%%/pics/impact/cartridgeitem.png -%%WWWDIR%%/pics/impact/cluster.png -%%WWWDIR%%/pics/impact/computer.png -%%WWWDIR%%/pics/impact/contract.png -%%WWWDIR%%/pics/impact/crontask.png -%%WWWDIR%%/pics/impact/database.png -%%WWWDIR%%/pics/impact/databaseinstance.png -%%WWWDIR%%/pics/impact/datacenter.png -%%WWWDIR%%/pics/impact/dcroom.png -%%WWWDIR%%/pics/impact/default.png -%%WWWDIR%%/pics/impact/devicesimcard.png -%%WWWDIR%%/pics/impact/domain.png -%%WWWDIR%%/pics/impact/enclosure.png -%%WWWDIR%%/pics/impact/entity.png -%%WWWDIR%%/pics/impact/group.png -%%WWWDIR%%/pics/impact/itilcategory.png -%%WWWDIR%%/pics/impact/line.png -%%WWWDIR%%/pics/impact/location.png -%%WWWDIR%%/pics/impact/mailcollector.png -%%WWWDIR%%/pics/impact/monitor.png -%%WWWDIR%%/pics/impact/networkequipment.png -%%WWWDIR%%/pics/impact/notification.png -%%WWWDIR%%/pics/impact/pdu.png -%%WWWDIR%%/pics/impact/peripheral.png -%%WWWDIR%%/pics/impact/phone.png -%%WWWDIR%%/pics/impact/printer.png -%%WWWDIR%%/pics/impact/profile.png -%%WWWDIR%%/pics/impact/project.png -%%WWWDIR%%/pics/impact/rack.png -%%WWWDIR%%/pics/impact/slm.png -%%WWWDIR%%/pics/impact/software.png -%%WWWDIR%%/pics/impact/softwarelicense.png -%%WWWDIR%%/pics/impact/supplier.png -%%WWWDIR%%/pics/impact/user.png -%%WWWDIR%%/pics/jquery/pbar-ani.gif -%%WWWDIR%%/pics/ko_min.png -%%WWWDIR%%/pics/l.gif -%%WWWDIR%%/pics/last.png -%%WWWDIR%%/pics/last_off.png -%%WWWDIR%%/pics/layout/global_layout_horizontal.png -%%WWWDIR%%/pics/layout/global_layout_vertical.png -%%WWWDIR%%/pics/left.png -%%WWWDIR%%/pics/left_off.png -%%WWWDIR%%/pics/loader.png -%%WWWDIR%%/pics/lock.png -%%WWWDIR%%/pics/login_logo_glpi.png -%%WWWDIR%%/pics/logos/logo-G-100-black.png -%%WWWDIR%%/pics/logos/logo-G-100-grey.png -%%WWWDIR%%/pics/logos/logo-G-100-white.png -%%WWWDIR%%/pics/logos/logo-GLPI-100-black.png -%%WWWDIR%%/pics/logos/logo-GLPI-100-grey.png -%%WWWDIR%%/pics/logos/logo-GLPI-100-white.png -%%WWWDIR%%/pics/logos/logo-GLPI-250-black.png -%%WWWDIR%%/pics/logos/logo-GLPI-250-grey.png -%%WWWDIR%%/pics/logos/logo-GLPI-250-white.png -%%WWWDIR%%/pics/logos/sources/GLPI_Logo-color.svg -%%WWWDIR%%/pics/logos/sources/GLPI_Logo-white.svg -%%WWWDIR%%/pics/menu_add.png -%%WWWDIR%%/pics/menu_add_off.png -%%WWWDIR%%/pics/menu_addtemplate.png -%%WWWDIR%%/pics/menu_all.png -%%WWWDIR%%/pics/menu_config.png -%%WWWDIR%%/pics/menu_search.png -%%WWWDIR%%/pics/menu_search_off.png -%%WWWDIR%%/pics/menu_show.png -%%WWWDIR%%/pics/meta_moins.png -%%WWWDIR%%/pics/meta_plus.png -%%WWWDIR%%/pics/moins.png -%%WWWDIR%%/pics/new.png -%%WWWDIR%%/pics/nothing.gif -%%WWWDIR%%/pics/observe.png -%%WWWDIR%%/pics/ok.png -%%WWWDIR%%/pics/ok_min.png -%%WWWDIR%%/pics/options_search.png -%%WWWDIR%%/pics/picture.png -%%WWWDIR%%/pics/plan.png -%%WWWDIR%%/pics/plus.png -%%WWWDIR%%/pics/puce.gif -%%WWWDIR%%/pics/qualification.png -%%WWWDIR%%/pics/r.gif -%%WWWDIR%%/pics/rdv.png -%%WWWDIR%%/pics/rdv_interv.png -%%WWWDIR%%/pics/rdv_private.png -%%WWWDIR%%/pics/rdv_public.png -%%WWWDIR%%/pics/redbutton.png -%%WWWDIR%%/pics/refresh.png -%%WWWDIR%%/pics/reservation.png -%%WWWDIR%%/pics/reset.png -%%WWWDIR%%/pics/right.png -%%WWWDIR%%/pics/right_off.png -%%WWWDIR%%/pics/screenshots/asset.png -%%WWWDIR%%/pics/screenshots/components.png -%%WWWDIR%%/pics/screenshots/dashboard.png -%%WWWDIR%%/pics/screenshots/dcim_racks_draganddrop.gif -%%WWWDIR%%/pics/screenshots/dcim_racks_toggleimages.gif -%%WWWDIR%%/pics/screenshots/marketplace.png -%%WWWDIR%%/pics/screenshots/ticket.png -%%WWWDIR%%/pics/screenshots/timeline.png -%%WWWDIR%%/pics/search.png -%%WWWDIR%%/pics/showdeleted.png -%%WWWDIR%%/pics/showselect.png -%%WWWDIR%%/pics/solved.png -%%WWWDIR%%/pics/spinner.48.gif -%%WWWDIR%%/pics/spinner.gif -%%WWWDIR%%/pics/stats_item.png -%%WWWDIR%%/pics/sub_dropdown.png -%%WWWDIR%%/pics/tb.gif -%%WWWDIR%%/pics/test.png -%%WWWDIR%%/pics/timeline/1.png -%%WWWDIR%%/pics/timeline/2.png -%%WWWDIR%%/pics/timeline/3.png -%%WWWDIR%%/pics/timeline/4.png -%%WWWDIR%%/pics/timeline/5.png -%%WWWDIR%%/pics/timeline/delete.png -%%WWWDIR%%/pics/timeline/done.png -%%WWWDIR%%/pics/timeline/edit.png -%%WWWDIR%%/pics/timeline/file.png -%%WWWDIR%%/pics/timeline/followup.png -%%WWWDIR%%/pics/timeline/group.png -%%WWWDIR%%/pics/timeline/information.png -%%WWWDIR%%/pics/timeline/reset.png -%%WWWDIR%%/pics/timeline/task.png -%%WWWDIR%%/pics/timeline/todo.png -%%WWWDIR%%/pics/timeline/user.png -%%WWWDIR%%/pics/timeline/user_grey.png -%%WWWDIR%%/pics/timeline/validation_min.png -%%WWWDIR%%/pics/timeline/validation_min_active.png -%%WWWDIR%%/pics/toggle-left.png -%%WWWDIR%%/pics/toggle-right.png -%%WWWDIR%%/pics/treeroot.png -%%WWWDIR%%/pics/users.png -%%WWWDIR%%/pics/waiting.png -%%WWWDIR%%/pics/warning.png -%%WWWDIR%%/pics/warning_min.png -%%WWWDIR%%/pics/web.png +%%WWWDIR%%/public/build/vue/app.js +%%WWWDIR%%/public/build/vue/app.js.map +%%WWWDIR%%/public/build/vue/app.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Field-vue-e5f21d90a5d896b0bca9.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Field-vue-e5f21d90a5d896b0bca9.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Field-vue-e5f21d90a5d896b0bca9.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-FieldDisplay-vue-1460bdcf3bec5866b8b2.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-FieldDisplay-vue-1460bdcf3bec5866b8b2.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-FieldDisplay-vue-1460bdcf3bec5866b8b2.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Sidebar-vue-24321290ad79db5eedc3.js +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Sidebar-vue-24321290ad79db5eedc3.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/CustomObject-FieldPreview-Sidebar-vue-24321290ad79db5eedc3.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Toolbar-vue-938cad8426ef05100626.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Toolbar-vue-938cad8426ef05100626.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Toolbar-vue-938cad8426ef05100626.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ClientPerformance-vue-a1238cbbb37cecc210d0.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ClientPerformance-vue-a1238cbbb37cecc210d0.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ClientPerformance-vue-a1238cbbb37cecc210d0.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Globals-vue-ca0123edafb40714fe57.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Globals-vue-ca0123edafb40714fe57.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Globals-vue-ca0123edafb40714fe57.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-HTTPRequests-vue-de0d934fe5b16fe1b202.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-HTTPRequests-vue-de0d934fe5b16fe1b202.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-HTTPRequests-vue-de0d934fe5b16fe1b202.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Profiler-vue-21c8fd06d4055d000228.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Profiler-vue-21c8fd06d4055d000228.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-Profiler-vue-21c8fd06d4055d000228.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ProfilerTable-vue-230b97513fa93bf6e799.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ProfilerTable-vue-230b97513fa93bf6e799.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ProfilerTable-vue-230b97513fa93bf6e799.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestSummary-vue-41b1b08217d18c53d198.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestSummary-vue-41b1b08217d18c53d198.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestSummary-vue-41b1b08217d18c53d198.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestTimeline-vue-eeb9ddd5715f9b3e7a54.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestTimeline-vue-eeb9ddd5715f9b3e7a54.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-RequestTimeline-vue-eeb9ddd5715f9b3e7a54.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SQLRequests-vue-9bc95f6ee7cfb329f54f.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SQLRequests-vue-9bc95f6ee7cfb329f54f.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SQLRequests-vue-9bc95f6ee7cfb329f54f.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SearchOptions-vue-cc0d05b8fa94cb918bbf.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SearchOptions-vue-cc0d05b8fa94cb918bbf.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-SearchOptions-vue-cc0d05b8fa94cb918bbf.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ServerPerformance-vue-e8c7904fddf51b27a13e.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ServerPerformance-vue-e8c7904fddf51b27a13e.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ServerPerformance-vue-e8c7904fddf51b27a13e.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ThemeSwitcher-vue-9720ff02bf198f10f664.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ThemeSwitcher-vue-9720ff02bf198f10f664.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-Widget-ThemeSwitcher-vue-9720ff02bf198f10f664.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-WidgetButton-vue-1bbe80ca2e63223a1419.js +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-WidgetButton-vue-1bbe80ca2e63223a1419.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Debug-WidgetButton-vue-1bbe80ca2e63223a1419.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/FuzzySearch-Modal-vue-9b7d181767089edfc7c2.js +%%WWWDIR%%/public/build/vue/vue-sfc/FuzzySearch-Modal-vue-9b7d181767089edfc7c2.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/FuzzySearch-Modal-vue-9b7d181767089edfc7c2.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-AddItemForm-vue-06fa671a996e2143c7f1.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-AddItemForm-vue-06fa671a996e2143c7f1.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-AddItemForm-vue-06fa671a996e2143c7f1.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Card-vue-a9f829d10dde7fb45121.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Card-vue-a9f829d10dde7fb45121.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Card-vue-a9f829d10dde7fb45121.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Column-vue-9b5ac5dfa4a9ee7bfd09.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Column-vue-9b5ac5dfa4a9ee7bfd09.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Column-vue-9b5ac5dfa4a9ee7bfd09.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Kanban-vue-894cf3ae8e0ad0a7889b.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Kanban-vue-894cf3ae8e0ad0a7889b.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-Kanban-vue-894cf3ae8e0ad0a7889b.min.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-KanbanApp-vue-9cc3e1d049ef33c30c12.js +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-KanbanApp-vue-9cc3e1d049ef33c30c12.js.map +%%WWWDIR%%/public/build/vue/vue-sfc/Kanban-KanbanApp-vue-9cc3e1d049ef33c30c12.min.js +%%WWWDIR%%/public/css/tinymce_empty_skin/content.css +%%WWWDIR%%/public/css/tinymce_empty_skin/content.min.css +%%WWWDIR%%/public/css/tinymce_empty_skin/skin.css +%%WWWDIR%%/public/css/tinymce_empty_skin/skin.min.css +%%WWWDIR%%/public/css_compiled/css_core_palettes.min.css +%%WWWDIR%%/public/css_compiled/css_glpi.min.css +%%WWWDIR%%/public/css_compiled/css_helpdesk_home.min.css +%%WWWDIR%%/public/css_compiled/css_install.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_chartist.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_dashboard.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_kb.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_marketplace.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_reservations.min.css +%%WWWDIR%%/public/css_compiled/css_standalone_stencil-editor.min.css %%WWWDIR%%/public/index.php +%%WWWDIR%%/public/js/Forms/FaIconSelector.js +%%WWWDIR%%/public/js/Forms/FaIconSelector.min.js +%%WWWDIR%%/public/js/RichText/ContentTemplatesParameters.js +%%WWWDIR%%/public/js/RichText/ContentTemplatesParameters.min.js +%%WWWDIR%%/public/js/RichText/FormTags.js +%%WWWDIR%%/public/js/RichText/FormTags.min.js +%%WWWDIR%%/public/js/RichText/UserMention.js +%%WWWDIR%%/public/js/RichText/UserMention.min.js +%%WWWDIR%%/public/js/cable.js +%%WWWDIR%%/public/js/cable.min.js +%%WWWDIR%%/public/js/clipboard.js +%%WWWDIR%%/public/js/clipboard.min.js +%%WWWDIR%%/public/js/common.js +%%WWWDIR%%/public/js/common.min.js +%%WWWDIR%%/public/js/common_ajax_controller.js +%%WWWDIR%%/public/js/common_ajax_controller.min.js +%%WWWDIR%%/public/js/dashboard.js +%%WWWDIR%%/public/js/dashboard.min.js +%%WWWDIR%%/public/js/fileupload.js +%%WWWDIR%%/public/js/fileupload.min.js +%%WWWDIR%%/public/js/flatpickr_buttons_plugin.js +%%WWWDIR%%/public/js/flatpickr_buttons_plugin.min.js +%%WWWDIR%%/public/js/glpi_dialog.js +%%WWWDIR%%/public/js/glpi_dialog.min.js +%%WWWDIR%%/public/js/impact.js +%%WWWDIR%%/public/js/impact.min.js +%%WWWDIR%%/public/js/log_filters.js +%%WWWDIR%%/public/js/log_filters.min.js +%%WWWDIR%%/public/js/marketplace.js +%%WWWDIR%%/public/js/marketplace.min.js +%%WWWDIR%%/public/js/misc.js +%%WWWDIR%%/public/js/misc.min.js +%%WWWDIR%%/public/js/modules/Dashboard/Dashboard.js +%%WWWDIR%%/public/js/modules/Dashboard/Dashboard.min.js +%%WWWDIR%%/public/js/modules/DynamicDropdownController.js +%%WWWDIR%%/public/js/modules/DynamicDropdownController.min.js +%%WWWDIR%%/public/js/modules/Form/GeolocationField.js +%%WWWDIR%%/public/js/modules/Form/GeolocationField.min.js +%%WWWDIR%%/public/js/modules/Form/WebIconSelector.js +%%WWWDIR%%/public/js/modules/Form/WebIconSelector.min.js +%%WWWDIR%%/public/js/modules/Forms/BaseConditionEditorController.js +%%WWWDIR%%/public/js/modules/Forms/BaseConditionEditorController.min.js +%%WWWDIR%%/public/js/modules/Forms/Condition/Engine.js +%%WWWDIR%%/public/js/modules/Forms/Condition/Engine.min.js +%%WWWDIR%%/public/js/modules/Forms/ConditionValidationEditorController.js +%%WWWDIR%%/public/js/modules/Forms/ConditionValidationEditorController.min.js +%%WWWDIR%%/public/js/modules/Forms/ConditionVisibilityEditorController.js +%%WWWDIR%%/public/js/modules/Forms/ConditionVisibilityEditorController.min.js +%%WWWDIR%%/public/js/modules/Forms/DestinationAutoConfigController.js +%%WWWDIR%%/public/js/modules/Forms/DestinationAutoConfigController.min.js +%%WWWDIR%%/public/js/modules/Forms/DestinationConditionController.js +%%WWWDIR%%/public/js/modules/Forms/DestinationConditionController.min.js +%%WWWDIR%%/public/js/modules/Forms/EditorController.js +%%WWWDIR%%/public/js/modules/Forms/EditorController.min.js +%%WWWDIR%%/public/js/modules/Forms/EditorConvertedExtractedDefaultValue.js +%%WWWDIR%%/public/js/modules/Forms/EditorConvertedExtractedDefaultValue.min.js +%%WWWDIR%%/public/js/modules/Forms/EditorConvertedExtractedSelectableDefaultValue.js +%%WWWDIR%%/public/js/modules/Forms/EditorConvertedExtractedSelectableDefaultValue.min.js +%%WWWDIR%%/public/js/modules/Forms/FieldDestinationAssociatedItem.js +%%WWWDIR%%/public/js/modules/Forms/FieldDestinationAssociatedItem.min.js +%%WWWDIR%%/public/js/modules/Forms/FieldDestinationMultipleConfig.js +%%WWWDIR%%/public/js/modules/Forms/FieldDestinationMultipleConfig.min.js +%%WWWDIR%%/public/js/modules/Forms/ItemAdvancedConfig.js +%%WWWDIR%%/public/js/modules/Forms/ItemAdvancedConfig.min.js +%%WWWDIR%%/public/js/modules/Forms/ItemDropdownAdvancedConfig.js +%%WWWDIR%%/public/js/modules/Forms/ItemDropdownAdvancedConfig.min.js +%%WWWDIR%%/public/js/modules/Forms/QuestionDateTime.js +%%WWWDIR%%/public/js/modules/Forms/QuestionDateTime.min.js +%%WWWDIR%%/public/js/modules/Forms/QuestionDropdown.js +%%WWWDIR%%/public/js/modules/Forms/QuestionDropdown.min.js +%%WWWDIR%%/public/js/modules/Forms/QuestionItem.js +%%WWWDIR%%/public/js/modules/Forms/QuestionItem.min.js +%%WWWDIR%%/public/js/modules/Forms/QuestionSelectable.js +%%WWWDIR%%/public/js/modules/Forms/QuestionSelectable.min.js +%%WWWDIR%%/public/js/modules/Forms/RendererController.js +%%WWWDIR%%/public/js/modules/Forms/RendererController.min.js +%%WWWDIR%%/public/js/modules/Forms/ServiceCatalogController.js +%%WWWDIR%%/public/js/modules/Forms/ServiceCatalogController.min.js +%%WWWDIR%%/public/js/modules/GlpiInstall.js +%%WWWDIR%%/public/js/modules/GlpiInstall.min.js +%%WWWDIR%%/public/js/modules/Helpdesk/HelpdeskConfigController.js +%%WWWDIR%%/public/js/modules/Helpdesk/HelpdeskConfigController.min.js +%%WWWDIR%%/public/js/modules/Helpdesk/HelpdeskConfigForEmptyEntityController.js +%%WWWDIR%%/public/js/modules/Helpdesk/HelpdeskConfigForEmptyEntityController.min.js +%%WWWDIR%%/public/js/modules/Helpdesk/IndexController.js +%%WWWDIR%%/public/js/modules/Helpdesk/IndexController.min.js +%%WWWDIR%%/public/js/modules/ITIL/Timeline/DocumentForm.js +%%WWWDIR%%/public/js/modules/ITIL/Timeline/DocumentForm.min.js +%%WWWDIR%%/public/js/modules/IllustrationPicker/Controller.js +%%WWWDIR%%/public/js/modules/IllustrationPicker/Controller.min.js +%%WWWDIR%%/public/js/modules/Knowbase.js +%%WWWDIR%%/public/js/modules/Knowbase.min.js +%%WWWDIR%%/public/js/modules/Monaco/MonacoEditor.js +%%WWWDIR%%/public/js/modules/Monaco/MonacoEditor.min.js +%%WWWDIR%%/public/js/modules/ObjectLock.js +%%WWWDIR%%/public/js/modules/ObjectLock.min.js +%%WWWDIR%%/public/js/modules/ProgressIndicator.js +%%WWWDIR%%/public/js/modules/ProgressIndicator.min.js +%%WWWDIR%%/public/js/modules/Screenshot/Screenshot.js +%%WWWDIR%%/public/js/modules/Screenshot/Screenshot.min.js +%%WWWDIR%%/public/js/modules/Search/GenericView.js +%%WWWDIR%%/public/js/modules/Search/GenericView.min.js +%%WWWDIR%%/public/js/modules/Search/ResultsView.js +%%WWWDIR%%/public/js/modules/Search/ResultsView.min.js +%%WWWDIR%%/public/js/modules/Search/Table.js +%%WWWDIR%%/public/js/modules/Search/Table.min.js +%%WWWDIR%%/public/js/modules/package.json +%%WWWDIR%%/public/js/notifications_ajax.js +%%WWWDIR%%/public/js/notifications_ajax.min.js +%%WWWDIR%%/public/js/planning.js +%%WWWDIR%%/public/js/planning.min.js +%%WWWDIR%%/public/js/rack.js +%%WWWDIR%%/public/js/rack.min.js +%%WWWDIR%%/public/js/reservations.js +%%WWWDIR%%/public/js/reservations.min.js +%%WWWDIR%%/public/js/stencil-editor.js +%%WWWDIR%%/public/js/stencil-editor.min.js +%%WWWDIR%%/public/js/webkit_fix.js +%%WWWDIR%%/public/js/webkit_fix.min.js +%%WWWDIR%%/public/lib/altcha.js +%%WWWDIR%%/public/lib/altcha.js.map +%%WWWDIR%%/public/lib/altcha.min.js %%WWWDIR%%/public/lib/base.css %%WWWDIR%%/public/lib/base.css.map %%WWWDIR%%/public/lib/base.js %%WWWDIR%%/public/lib/base.js.map %%WWWDIR%%/public/lib/base.min.css %%WWWDIR%%/public/lib/base.min.js -%%WWWDIR%%/public/lib/chartist.css -%%WWWDIR%%/public/lib/chartist.css.map -%%WWWDIR%%/public/lib/chartist.js -%%WWWDIR%%/public/lib/chartist.js.map -%%WWWDIR%%/public/lib/chartist.min.css -%%WWWDIR%%/public/lib/chartist.min.js -%%WWWDIR%%/public/lib/codemirror.css -%%WWWDIR%%/public/lib/codemirror.css.map -%%WWWDIR%%/public/lib/codemirror.js -%%WWWDIR%%/public/lib/codemirror.js.map -%%WWWDIR%%/public/lib/codemirror.min.css -%%WWWDIR%%/public/lib/codemirror.min.js +%%WWWDIR%%/public/lib/cropper.js +%%WWWDIR%%/public/lib/cropper.js.map +%%WWWDIR%%/public/lib/cropper.min.js +%%WWWDIR%%/public/lib/css.worker.js +%%WWWDIR%%/public/lib/css.worker.js.map +%%WWWDIR%%/public/lib/css.worker.min.js %%WWWDIR%%/public/lib/cytoscape.css %%WWWDIR%%/public/lib/cytoscape.css.map %%WWWDIR%%/public/lib/cytoscape.js %%WWWDIR%%/public/lib/cytoscape.js.map %%WWWDIR%%/public/lib/cytoscape.min.css %%WWWDIR%%/public/lib/cytoscape.min.js +%%WWWDIR%%/public/lib/echarts.js +%%WWWDIR%%/public/lib/echarts.js.map +%%WWWDIR%%/public/lib/echarts.min.js +%%WWWDIR%%/public/lib/editor.worker.js +%%WWWDIR%%/public/lib/editor.worker.js.map +%%WWWDIR%%/public/lib/editor.worker.min.js %%WWWDIR%%/public/lib/flatpickr.css %%WWWDIR%%/public/lib/flatpickr.css.map %%WWWDIR%%/public/lib/flatpickr.js @@ -2111,6 +1435,78 @@ %%WWWDIR%%/public/lib/flatpickr/themes/material_orange.min.css %%WWWDIR%%/public/lib/flatpickr/themes/material_red.css %%WWWDIR%%/public/lib/flatpickr/themes/material_red.min.css +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-100-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-200-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-300-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-400-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-500-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-600-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-700-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-800-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-all-900-normal.woff +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-cyrillic-ext-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-greek-ext-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-latin-ext-900-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-100-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-200-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-300-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-400-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-500-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-600-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-700-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-800-normal.woff2 +%%WWWDIR%%/public/lib/fontsource/inter/files/inter-vietnamese-900-normal.woff2 %%WWWDIR%%/public/lib/fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf %%WWWDIR%%/public/lib/fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 %%WWWDIR%%/public/lib/fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf @@ -2262,12 +1658,19 @@ %%WWWDIR%%/public/lib/fuzzy.js %%WWWDIR%%/public/lib/fuzzy.js.map %%WWWDIR%%/public/lib/fuzzy.min.js +%%WWWDIR%%/public/lib/glpi-project/illustrations/glpi-illustrations-icons.svg +%%WWWDIR%%/public/lib/glpi-project/illustrations/glpi-illustrations-scenes-gradient.svg +%%WWWDIR%%/public/lib/glpi-project/illustrations/glpi-illustrations-scenes.svg +%%WWWDIR%%/public/lib/glpi-project/illustrations/icons.json %%WWWDIR%%/public/lib/gridstack.css %%WWWDIR%%/public/lib/gridstack.css.map %%WWWDIR%%/public/lib/gridstack.js %%WWWDIR%%/public/lib/gridstack.js.map %%WWWDIR%%/public/lib/gridstack.min.css %%WWWDIR%%/public/lib/gridstack.min.js +%%WWWDIR%%/public/lib/html.worker.js +%%WWWDIR%%/public/lib/html.worker.js.map +%%WWWDIR%%/public/lib/html.worker.min.js %%WWWDIR%%/public/lib/jquery-file-upload.js %%WWWDIR%%/public/lib/jquery-file-upload.js.map %%WWWDIR%%/public/lib/jquery-file-upload.min.js @@ -2284,6 +1687,9 @@ %%WWWDIR%%/public/lib/jquery.rateit.min.js %%WWWDIR%%/public/lib/jquery.rateit/scripts/delete.gif %%WWWDIR%%/public/lib/jquery.rateit/scripts/star.gif +%%WWWDIR%%/public/lib/json.worker.js +%%WWWDIR%%/public/lib/json.worker.js.map +%%WWWDIR%%/public/lib/json.worker.min.js %%WWWDIR%%/public/lib/leaflet-fullscreen/dist/fullscreen.png %%WWWDIR%%/public/lib/leaflet-fullscreen/dist/fullscreen2x.png %%WWWDIR%%/public/lib/leaflet.awesome-markers/dist/images/markers-shadow.png @@ -2304,21 +1710,19 @@ %%WWWDIR%%/public/lib/masonry.js %%WWWDIR%%/public/lib/masonry.js.map %%WWWDIR%%/public/lib/masonry.min.js +%%WWWDIR%%/public/lib/monaco-editor/esm/vs/base/browser/ui/codicons/codicon/codicon.ttf +%%WWWDIR%%/public/lib/monaco.css +%%WWWDIR%%/public/lib/monaco.css.map +%%WWWDIR%%/public/lib/monaco.js +%%WWWDIR%%/public/lib/monaco.js.map +%%WWWDIR%%/public/lib/monaco.min.css +%%WWWDIR%%/public/lib/monaco.min.js %%WWWDIR%%/public/lib/photoswipe.css %%WWWDIR%%/public/lib/photoswipe.css.map %%WWWDIR%%/public/lib/photoswipe.js %%WWWDIR%%/public/lib/photoswipe.js.map %%WWWDIR%%/public/lib/photoswipe.min.css %%WWWDIR%%/public/lib/photoswipe.min.js -%%WWWDIR%%/public/lib/photoswipe/dist/default-skin/default-skin.png -%%WWWDIR%%/public/lib/photoswipe/dist/default-skin/default-skin.svg -%%WWWDIR%%/public/lib/photoswipe/dist/default-skin/preloader.gif -%%WWWDIR%%/public/lib/prismjs.css -%%WWWDIR%%/public/lib/prismjs.css.map -%%WWWDIR%%/public/lib/prismjs.js -%%WWWDIR%%/public/lib/prismjs.js.map -%%WWWDIR%%/public/lib/prismjs.min.css -%%WWWDIR%%/public/lib/prismjs.min.js %%WWWDIR%%/public/lib/select2/js/i18n/af.js %%WWWDIR%%/public/lib/select2/js/i18n/af.min.js %%WWWDIR%%/public/lib/select2/js/i18n/ar.js @@ -2440,8 +1844,32 @@ %%WWWDIR%%/public/lib/sortable.js %%WWWDIR%%/public/lib/sortable.js.map %%WWWDIR%%/public/lib/sortable.min.js +%%WWWDIR%%/public/lib/swagger-ui-dist/oauth2-redirect.html +%%WWWDIR%%/public/lib/swagger-ui.css +%%WWWDIR%%/public/lib/swagger-ui.css.map +%%WWWDIR%%/public/lib/swagger-ui.js +%%WWWDIR%%/public/lib/swagger-ui.js.map +%%WWWDIR%%/public/lib/swagger-ui.min.css +%%WWWDIR%%/public/lib/swagger-ui.min.js +%%WWWDIR%%/public/lib/tabler.css +%%WWWDIR%%/public/lib/tabler.css.map +%%WWWDIR%%/public/lib/tabler.js +%%WWWDIR%%/public/lib/tabler.js.map +%%WWWDIR%%/public/lib/tabler.min.css +%%WWWDIR%%/public/lib/tabler.min.js +%%WWWDIR%%/public/lib/tabler/icons-webfont/dist/fonts/tabler-icons.ttf +%%WWWDIR%%/public/lib/tabler/icons-webfont/dist/fonts/tabler-icons.woff +%%WWWDIR%%/public/lib/tabler/icons-webfont/dist/fonts/tabler-icons.woff2 +%%WWWDIR%%/public/lib/tablericons-definitions.js +%%WWWDIR%%/public/lib/tablericons-definitions.js.map +%%WWWDIR%%/public/lib/tablericons-definitions.min.js +%%WWWDIR%%/public/lib/tinycolor.js +%%WWWDIR%%/public/lib/tinycolor.js.map +%%WWWDIR%%/public/lib/tinycolor.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/ar.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/ar.min.js +%%WWWDIR%%/public/lib/tinymce-i18n/langs6/ar_SA.js +%%WWWDIR%%/public/lib/tinymce-i18n/langs6/ar_SA.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/az.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/az.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/be.js @@ -2502,6 +1930,8 @@ %%WWWDIR%%/public/lib/tinymce-i18n/langs6/it.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/ja.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/ja.min.js +%%WWWDIR%%/public/lib/tinymce-i18n/langs6/ka_GE.js +%%WWWDIR%%/public/lib/tinymce-i18n/langs6/ka_GE.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/kab.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/kab.min.js %%WWWDIR%%/public/lib/tinymce-i18n/langs6/kk.js @@ -2659,7 +2089,284 @@ %%WWWDIR%%/public/lib/tinymce/skins/ui/tinymce-5/skin.shadowdom.js %%WWWDIR%%/public/lib/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css %%WWWDIR%%/public/lib/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.js -%%WWWDIR%%/resources/.htaccess +%%WWWDIR%%/public/lib/ts.worker.js +%%WWWDIR%%/public/lib/ts.worker.js.map +%%WWWDIR%%/public/lib/ts.worker.min.js +%%WWWDIR%%/public/pics/PICS-AUTHORS.txt +%%WWWDIR%%/public/pics/accepted.png +%%WWWDIR%%/public/pics/actualiser.png +%%WWWDIR%%/public/pics/add_dark.png +%%WWWDIR%%/public/pics/add_dropdown.png +%%WWWDIR%%/public/pics/addresa.png +%%WWWDIR%%/public/pics/answer.png +%%WWWDIR%%/public/pics/approbation.png +%%WWWDIR%%/public/pics/assign.png +%%WWWDIR%%/public/pics/charts/area.png +%%WWWDIR%%/public/pics/charts/articles.png +%%WWWDIR%%/public/pics/charts/bar.png +%%WWWDIR%%/public/pics/charts/bignumber.png +%%WWWDIR%%/public/pics/charts/donut.png +%%WWWDIR%%/public/pics/charts/halfdonut.png +%%WWWDIR%%/public/pics/charts/halfpie.png +%%WWWDIR%%/public/pics/charts/hbar.png +%%WWWDIR%%/public/pics/charts/hstacked.png +%%WWWDIR%%/public/pics/charts/line.png +%%WWWDIR%%/public/pics/charts/markdown.png +%%WWWDIR%%/public/pics/charts/multiplenumbers.png +%%WWWDIR%%/public/pics/charts/pie.png +%%WWWDIR%%/public/pics/charts/sources.md +%%WWWDIR%%/public/pics/charts/stacked.png +%%WWWDIR%%/public/pics/charts/summarynumber.png +%%WWWDIR%%/public/pics/charts/table.png +%%WWWDIR%%/public/pics/close.png +%%WWWDIR%%/public/pics/closed.png +%%WWWDIR%%/public/pics/collapse.gif +%%WWWDIR%%/public/pics/collapse.png +%%WWWDIR%%/public/pics/corners.gif +%%WWWDIR%%/public/pics/d.png +%%WWWDIR%%/public/pics/delete.png +%%WWWDIR%%/public/pics/deplier_down.png +%%WWWDIR%%/public/pics/deplier_up.png +%%WWWDIR%%/public/pics/dollar.png +%%WWWDIR%%/public/pics/dollaradd.png +%%WWWDIR%%/public/pics/down.png +%%WWWDIR%%/public/pics/drag.png +%%WWWDIR%%/public/pics/edit.png +%%WWWDIR%%/public/pics/evaluation.png +%%WWWDIR%%/public/pics/expand.gif +%%WWWDIR%%/public/pics/expand.png +%%WWWDIR%%/public/pics/faqadd.png +%%WWWDIR%%/public/pics/faqedit.png +%%WWWDIR%%/public/pics/favicon.ico +%%WWWDIR%%/public/pics/fd_footer.png +%%WWWDIR%%/public/pics/fd_hoverlink.png +%%WWWDIR%%/public/pics/fd_logo.png +%%WWWDIR%%/public/pics/fd_nav1.png +%%WWWDIR%%/public/pics/fd_nav3.png +%%WWWDIR%%/public/pics/fd_ssmenu.png +%%WWWDIR%%/public/pics/first.png +%%WWWDIR%%/public/pics/first_off.png +%%WWWDIR%%/public/pics/fond-central.png +%%WWWDIR%%/public/pics/fond_form.png +%%WWWDIR%%/public/pics/fond_form_on.png +%%WWWDIR%%/public/pics/fond_onglet.png +%%WWWDIR%%/public/pics/fond_th.png +%%WWWDIR%%/public/pics/glpi.png +%%WWWDIR%%/public/pics/greenbutton.png +%%WWWDIR%%/public/pics/groupes.png +%%WWWDIR%%/public/pics/icones/ai-dist.png +%%WWWDIR%%/public/pics/icones/aiff-dist.png +%%WWWDIR%%/public/pics/icones/asf-dist.png +%%WWWDIR%%/public/pics/icones/avi-dist.png +%%WWWDIR%%/public/pics/icones/bmp-dist.png +%%WWWDIR%%/public/pics/icones/bz2-dist.png +%%WWWDIR%%/public/pics/icones/c-dist.png +%%WWWDIR%%/public/pics/icones/csv-dist.png +%%WWWDIR%%/public/pics/icones/deb-dist.png +%%WWWDIR%%/public/pics/icones/defaut-dist.png +%%WWWDIR%%/public/pics/icones/doc-dist.png +%%WWWDIR%%/public/pics/icones/dvi-dist.png +%%WWWDIR%%/public/pics/icones/eps-dist.png +%%WWWDIR%%/public/pics/icones/gif-dist.png +%%WWWDIR%%/public/pics/icones/gz-dist.png +%%WWWDIR%%/public/pics/icones/h-dist.png +%%WWWDIR%%/public/pics/icones/html-dist.png +%%WWWDIR%%/public/pics/icones/jpg-dist.png +%%WWWDIR%%/public/pics/icones/mid-dist.png +%%WWWDIR%%/public/pics/icones/mov-dist.png +%%WWWDIR%%/public/pics/icones/mp3-dist.png +%%WWWDIR%%/public/pics/icones/mpg-dist.png +%%WWWDIR%%/public/pics/icones/odb-dist.png +%%WWWDIR%%/public/pics/icones/odc-dist.png +%%WWWDIR%%/public/pics/icones/odf-dist.png +%%WWWDIR%%/public/pics/icones/odg-dist.png +%%WWWDIR%%/public/pics/icones/odm-dist.png +%%WWWDIR%%/public/pics/icones/odp-dist.png +%%WWWDIR%%/public/pics/icones/ods-dist.png +%%WWWDIR%%/public/pics/icones/odt-dist.png +%%WWWDIR%%/public/pics/icones/ogg-dist.png +%%WWWDIR%%/public/pics/icones/otg-dist.png +%%WWWDIR%%/public/pics/icones/oth-dist.png +%%WWWDIR%%/public/pics/icones/otp-dist.png +%%WWWDIR%%/public/pics/icones/ots-dist.png +%%WWWDIR%%/public/pics/icones/ott-dist.png +%%WWWDIR%%/public/pics/icones/pas-dist.png +%%WWWDIR%%/public/pics/icones/pdf-dist.png +%%WWWDIR%%/public/pics/icones/png-dist.png +%%WWWDIR%%/public/pics/icones/ppt-dist.png +%%WWWDIR%%/public/pics/icones/ps-dist.png +%%WWWDIR%%/public/pics/icones/psd-dist.png +%%WWWDIR%%/public/pics/icones/qt-dist.png +%%WWWDIR%%/public/pics/icones/ra-dist.png +%%WWWDIR%%/public/pics/icones/ram-dist.png +%%WWWDIR%%/public/pics/icones/rm-dist.png +%%WWWDIR%%/public/pics/icones/rpm-dist.png +%%WWWDIR%%/public/pics/icones/rtf-dist.png +%%WWWDIR%%/public/pics/icones/sdd-dist.png +%%WWWDIR%%/public/pics/icones/sdw-dist.png +%%WWWDIR%%/public/pics/icones/sit-dist.png +%%WWWDIR%%/public/pics/icones/svg-dist.png +%%WWWDIR%%/public/pics/icones/swf-dist.png +%%WWWDIR%%/public/pics/icones/sxc-dist.png +%%WWWDIR%%/public/pics/icones/sxd-dist.png +%%WWWDIR%%/public/pics/icones/sxi-dist.png +%%WWWDIR%%/public/pics/icones/sxw-dist.png +%%WWWDIR%%/public/pics/icones/tex-dist.png +%%WWWDIR%%/public/pics/icones/tgz-dist.png +%%WWWDIR%%/public/pics/icones/tif-dist.png +%%WWWDIR%%/public/pics/icones/txt-dist.png +%%WWWDIR%%/public/pics/icones/wav-dist.png +%%WWWDIR%%/public/pics/icones/wmv-dist.png +%%WWWDIR%%/public/pics/icones/xcf-dist.png +%%WWWDIR%%/public/pics/icones/xls-dist.png +%%WWWDIR%%/public/pics/icones/xml-dist.png +%%WWWDIR%%/public/pics/icones/zip-dist.png +%%WWWDIR%%/public/pics/impact/README.txt +%%WWWDIR%%/public/pics/impact/appliance.png +%%WWWDIR%%/public/pics/impact/authldap.png +%%WWWDIR%%/public/pics/impact/cartridgeitem.png +%%WWWDIR%%/public/pics/impact/cluster.png +%%WWWDIR%%/public/pics/impact/computer.png +%%WWWDIR%%/public/pics/impact/contract.png +%%WWWDIR%%/public/pics/impact/crontask.png +%%WWWDIR%%/public/pics/impact/database.png +%%WWWDIR%%/public/pics/impact/databaseinstance.png +%%WWWDIR%%/public/pics/impact/datacenter.png +%%WWWDIR%%/public/pics/impact/dcroom.png +%%WWWDIR%%/public/pics/impact/default.png +%%WWWDIR%%/public/pics/impact/devicesimcard.png +%%WWWDIR%%/public/pics/impact/domain.png +%%WWWDIR%%/public/pics/impact/enclosure.png +%%WWWDIR%%/public/pics/impact/entity.png +%%WWWDIR%%/public/pics/impact/group.png +%%WWWDIR%%/public/pics/impact/itilcategory.png +%%WWWDIR%%/public/pics/impact/line.png +%%WWWDIR%%/public/pics/impact/location.png +%%WWWDIR%%/public/pics/impact/mailcollector.png +%%WWWDIR%%/public/pics/impact/monitor.png +%%WWWDIR%%/public/pics/impact/networkequipment.png +%%WWWDIR%%/public/pics/impact/notification.png +%%WWWDIR%%/public/pics/impact/pdu.png +%%WWWDIR%%/public/pics/impact/peripheral.png +%%WWWDIR%%/public/pics/impact/phone.png +%%WWWDIR%%/public/pics/impact/printer.png +%%WWWDIR%%/public/pics/impact/profile.png +%%WWWDIR%%/public/pics/impact/project.png +%%WWWDIR%%/public/pics/impact/rack.png +%%WWWDIR%%/public/pics/impact/slm.png +%%WWWDIR%%/public/pics/impact/software.png +%%WWWDIR%%/public/pics/impact/softwarelicense.png +%%WWWDIR%%/public/pics/impact/supplier.png +%%WWWDIR%%/public/pics/impact/user.png +%%WWWDIR%%/public/pics/jquery/pbar-ani.gif +%%WWWDIR%%/public/pics/ko_min.png +%%WWWDIR%%/public/pics/l.gif +%%WWWDIR%%/public/pics/last.png +%%WWWDIR%%/public/pics/last_off.png +%%WWWDIR%%/public/pics/layout/global_layout_horizontal.png +%%WWWDIR%%/public/pics/layout/global_layout_vertical.png +%%WWWDIR%%/public/pics/left.png +%%WWWDIR%%/public/pics/left_off.png +%%WWWDIR%%/public/pics/loader.png +%%WWWDIR%%/public/pics/lock.png +%%WWWDIR%%/public/pics/login_logo_glpi.png +%%WWWDIR%%/public/pics/logos/logo-G-100-black.png +%%WWWDIR%%/public/pics/logos/logo-G-100-grey.png +%%WWWDIR%%/public/pics/logos/logo-G-100-white.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-100-black.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-100-grey.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-100-white.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-250-black.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-250-grey.png +%%WWWDIR%%/public/pics/logos/logo-GLPI-250-white.png +%%WWWDIR%%/public/pics/logos/sources/GLPI_Logo-color.svg +%%WWWDIR%%/public/pics/logos/sources/GLPI_Logo-white.svg +%%WWWDIR%%/public/pics/menu_add.png +%%WWWDIR%%/public/pics/menu_add_off.png +%%WWWDIR%%/public/pics/menu_addtemplate.png +%%WWWDIR%%/public/pics/menu_all.png +%%WWWDIR%%/public/pics/menu_config.png +%%WWWDIR%%/public/pics/menu_search.png +%%WWWDIR%%/public/pics/menu_search_off.png +%%WWWDIR%%/public/pics/menu_show.png +%%WWWDIR%%/public/pics/meta_moins.png +%%WWWDIR%%/public/pics/meta_plus.png +%%WWWDIR%%/public/pics/moins.png +%%WWWDIR%%/public/pics/new.png +%%WWWDIR%%/public/pics/nothing.gif +%%WWWDIR%%/public/pics/observe.png +%%WWWDIR%%/public/pics/ok.png +%%WWWDIR%%/public/pics/ok_min.png +%%WWWDIR%%/public/pics/options_search.png +%%WWWDIR%%/public/pics/picture.png +%%WWWDIR%%/public/pics/plan.png +%%WWWDIR%%/public/pics/plus.png +%%WWWDIR%%/public/pics/puce.gif +%%WWWDIR%%/public/pics/qualification.png +%%WWWDIR%%/public/pics/r.gif +%%WWWDIR%%/public/pics/rdv.png +%%WWWDIR%%/public/pics/rdv_interv.png +%%WWWDIR%%/public/pics/rdv_private.png +%%WWWDIR%%/public/pics/rdv_public.png +%%WWWDIR%%/public/pics/redbutton.png +%%WWWDIR%%/public/pics/refresh.png +%%WWWDIR%%/public/pics/reservation.png +%%WWWDIR%%/public/pics/reset.png +%%WWWDIR%%/public/pics/right.png +%%WWWDIR%%/public/pics/right_off.png +%%WWWDIR%%/public/pics/screenshots/asset.png +%%WWWDIR%%/public/pics/screenshots/components.png +%%WWWDIR%%/public/pics/screenshots/dashboard.png +%%WWWDIR%%/public/pics/screenshots/dcim_racks_draganddrop.gif +%%WWWDIR%%/public/pics/screenshots/dcim_racks_toggleimages.gif +%%WWWDIR%%/public/pics/screenshots/marketplace.png +%%WWWDIR%%/public/pics/screenshots/ticket.png +%%WWWDIR%%/public/pics/screenshots/timeline.png +%%WWWDIR%%/public/pics/search.png +%%WWWDIR%%/public/pics/showdeleted.png +%%WWWDIR%%/public/pics/showselect.png +%%WWWDIR%%/public/pics/solved.png +%%WWWDIR%%/public/pics/spinner.48.gif +%%WWWDIR%%/public/pics/spinner.gif +%%WWWDIR%%/public/pics/stats_item.png +%%WWWDIR%%/public/pics/sub_dropdown.png +%%WWWDIR%%/public/pics/tb.gif +%%WWWDIR%%/public/pics/test.png +%%WWWDIR%%/public/pics/timeline/1.png +%%WWWDIR%%/public/pics/timeline/2.png +%%WWWDIR%%/public/pics/timeline/3.png +%%WWWDIR%%/public/pics/timeline/4.png +%%WWWDIR%%/public/pics/timeline/5.png +%%WWWDIR%%/public/pics/timeline/delete.png +%%WWWDIR%%/public/pics/timeline/done.png +%%WWWDIR%%/public/pics/timeline/edit.png +%%WWWDIR%%/public/pics/timeline/file.png +%%WWWDIR%%/public/pics/timeline/followup.png +%%WWWDIR%%/public/pics/timeline/group.png +%%WWWDIR%%/public/pics/timeline/information.png +%%WWWDIR%%/public/pics/timeline/reset.png +%%WWWDIR%%/public/pics/timeline/task.png +%%WWWDIR%%/public/pics/timeline/todo.png +%%WWWDIR%%/public/pics/timeline/user.png +%%WWWDIR%%/public/pics/timeline/user_grey.png +%%WWWDIR%%/public/pics/timeline/validation_min.png +%%WWWDIR%%/public/pics/timeline/validation_min_active.png +%%WWWDIR%%/public/pics/toggle-left.png +%%WWWDIR%%/public/pics/toggle-right.png +%%WWWDIR%%/public/pics/treeroot.png +%%WWWDIR%%/public/pics/users.png +%%WWWDIR%%/public/pics/waiting.png +%%WWWDIR%%/public/pics/warning.png +%%WWWDIR%%/public/pics/warning_min.png +%%WWWDIR%%/public/pics/web.png +%%WWWDIR%%/public/sound/sound_a.mp3 +%%WWWDIR%%/public/sound/sound_a.ogg +%%WWWDIR%%/public/sound/sound_b.mp3 +%%WWWDIR%%/public/sound/sound_b.ogg +%%WWWDIR%%/public/sound/sound_c.mp3 +%%WWWDIR%%/public/sound/sound_c.ogg +%%WWWDIR%%/public/sound/sound_d.mp3 +%%WWWDIR%%/public/sound/sound_d.ogg %%WWWDIR%%/resources/Rules/RuleAsset.xml %%WWWDIR%%/resources/Rules/RuleDictionnaryOperatingSystem.xml %%WWWDIR%%/resources/Rules/RuleDictionnaryOperatingSystemEdition.xml @@ -2669,59 +2376,28 @@ %%WWWDIR%%/resources/Rules/RuleRight.xml %%WWWDIR%%/resources/Rules/RuleSoftwareCategory.xml %%WWWDIR%%/resources/Rules/RuleTicket.xml -%%WWWDIR%%/sound/sound_a.mp3 -%%WWWDIR%%/sound/sound_a.ogg -%%WWWDIR%%/sound/sound_b.mp3 -%%WWWDIR%%/sound/sound_b.ogg -%%WWWDIR%%/sound/sound_c.mp3 -%%WWWDIR%%/sound/sound_c.ogg -%%WWWDIR%%/sound/sound_d.mp3 -%%WWWDIR%%/sound/sound_d.ogg +%%WWWDIR%%/resources/api_doc.MD +%%WWWDIR%%/routes/development.php %%WWWDIR%%/src/APIClient.php %%WWWDIR%%/src/AbstractITILChildTemplate.php %%WWWDIR%%/src/AbstractQuery.php %%WWWDIR%%/src/AbstractRightsDropdown.php %%WWWDIR%%/src/Agent.php -%%WWWDIR%%/src/Agent/Communication/AbstractRequest.php -%%WWWDIR%%/src/Agent/Communication/Headers/Common.php %%WWWDIR%%/src/AgentType.php %%WWWDIR%%/src/Ajax.php %%WWWDIR%%/src/Alert.php %%WWWDIR%%/src/AllAssets.php -%%WWWDIR%%/src/Api/API.php -%%WWWDIR%%/src/Api/APIRest.php -%%WWWDIR%%/src/Api/APIXmlrpc.php -%%WWWDIR%%/src/Api/Deprecated/CommonDeprecatedTrait.php -%%WWWDIR%%/src/Api/Deprecated/Computer_SoftwareLicense.php -%%WWWDIR%%/src/Api/Deprecated/Computer_SoftwareVersion.php -%%WWWDIR%%/src/Api/Deprecated/DeprecatedInterface.php -%%WWWDIR%%/src/Api/Deprecated/Netpoint.php -%%WWWDIR%%/src/Api/Deprecated/TicketFollowup.php %%WWWDIR%%/src/Appliance.php %%WWWDIR%%/src/ApplianceEnvironment.php %%WWWDIR%%/src/ApplianceType.php %%WWWDIR%%/src/Appliance_Item.php %%WWWDIR%%/src/Appliance_Item_Relation.php -%%WWWDIR%%/src/Application/ErrorHandler.php -%%WWWDIR%%/src/Application/View/Extension/ConfigExtension.php -%%WWWDIR%%/src/Application/View/Extension/DataHelpersExtension.php -%%WWWDIR%%/src/Application/View/Extension/DocumentExtension.php -%%WWWDIR%%/src/Application/View/Extension/FrontEndAssetsExtension.php -%%WWWDIR%%/src/Application/View/Extension/I18nExtension.php -%%WWWDIR%%/src/Application/View/Extension/ItemtypeExtension.php -%%WWWDIR%%/src/Application/View/Extension/PhpExtension.php -%%WWWDIR%%/src/Application/View/Extension/PluginExtension.php -%%WWWDIR%%/src/Application/View/Extension/RoutingExtension.php -%%WWWDIR%%/src/Application/View/Extension/SearchExtension.php -%%WWWDIR%%/src/Application/View/Extension/SecurityExtension.php -%%WWWDIR%%/src/Application/View/Extension/SessionExtension.php -%%WWWDIR%%/src/Application/View/Extension/TeamExtension.php -%%WWWDIR%%/src/Application/View/TemplateRenderer.php %%WWWDIR%%/src/Auth.php %%WWWDIR%%/src/AuthLDAP.php %%WWWDIR%%/src/AuthLdapReplicate.php %%WWWDIR%%/src/AuthMail.php %%WWWDIR%%/src/AutoUpdateSystem.php +%%WWWDIR%%/src/BarcodeManager.php %%WWWDIR%%/src/Blacklist.php %%WWWDIR%%/src/BlacklistedMailContent.php %%WWWDIR%%/src/Budget.php @@ -2730,22 +2406,6 @@ %%WWWDIR%%/src/Cable.php %%WWWDIR%%/src/CableStrand.php %%WWWDIR%%/src/CableType.php -%%WWWDIR%%/src/Cache/CacheManager.php -%%WWWDIR%%/src/Cache/I18nCache.php -%%WWWDIR%%/src/Cache/SimpleCache.php -%%WWWDIR%%/src/CalDAV/Backend/Auth.php -%%WWWDIR%%/src/CalDAV/Backend/Calendar.php -%%WWWDIR%%/src/CalDAV/Backend/Principal.php -%%WWWDIR%%/src/CalDAV/Contracts/CalDAVCompatibleItemInterface.php -%%WWWDIR%%/src/CalDAV/Node/CalendarRoot.php -%%WWWDIR%%/src/CalDAV/Node/Property.php -%%WWWDIR%%/src/CalDAV/Plugin/Acl.php -%%WWWDIR%%/src/CalDAV/Plugin/Browser.php -%%WWWDIR%%/src/CalDAV/Plugin/CalDAV.php -%%WWWDIR%%/src/CalDAV/Server.php -%%WWWDIR%%/src/CalDAV/Traits/CalDAVPrincipalsTrait.php -%%WWWDIR%%/src/CalDAV/Traits/CalDAVUriUtilTrait.php -%%WWWDIR%%/src/CalDAV/Traits/VobjectConverterTrait.php %%WWWDIR%%/src/Calendar.php %%WWWDIR%%/src/CalendarSegment.php %%WWWDIR%%/src/Calendar_Holiday.php @@ -2759,12 +2419,16 @@ %%WWWDIR%%/src/Certificate_Item.php %%WWWDIR%%/src/Change.php %%WWWDIR%%/src/ChangeCost.php +%%WWWDIR%%/src/ChangeSatisfaction.php %%WWWDIR%%/src/ChangeTask.php %%WWWDIR%%/src/ChangeTemplate.php %%WWWDIR%%/src/ChangeTemplateHiddenField.php %%WWWDIR%%/src/ChangeTemplateMandatoryField.php %%WWWDIR%%/src/ChangeTemplatePredefinedField.php +%%WWWDIR%%/src/ChangeTemplateReadonlyField.php %%WWWDIR%%/src/ChangeValidation.php +%%WWWDIR%%/src/ChangeValidationStep.php +%%WWWDIR%%/src/Change_Change.php %%WWWDIR%%/src/Change_Group.php %%WWWDIR%%/src/Change_Item.php %%WWWDIR%%/src/Change_Problem.php @@ -2790,10 +2454,13 @@ %%WWWDIR%%/src/CommonITILActor.php %%WWWDIR%%/src/CommonITILCost.php %%WWWDIR%%/src/CommonITILObject.php +%%WWWDIR%%/src/CommonITILObject_CommonITILObject.php %%WWWDIR%%/src/CommonITILRecurrent.php %%WWWDIR%%/src/CommonITILRecurrentCron.php +%%WWWDIR%%/src/CommonITILSatisfaction.php %%WWWDIR%%/src/CommonITILTask.php %%WWWDIR%%/src/CommonITILValidation.php +%%WWWDIR%%/src/CommonITILValidationCron.php %%WWWDIR%%/src/CommonImplicitTreeDropdown.php %%WWWDIR%%/src/CommonItilObject_Item.php %%WWWDIR%%/src/CommonTreeDropdown.php @@ -2803,143 +2470,32 @@ %%WWWDIR%%/src/ComputerModel.php %%WWWDIR%%/src/ComputerType.php %%WWWDIR%%/src/ComputerVirtualMachine.php -%%WWWDIR%%/src/Computer_Item.php %%WWWDIR%%/src/Config.php -%%WWWDIR%%/src/Console/AbstractCommand.php -%%WWWDIR%%/src/Console/Application.php -%%WWWDIR%%/src/Console/Assets/CleanSoftwareCommand.php -%%WWWDIR%%/src/Console/Build/CompileScssCommand.php -%%WWWDIR%%/src/Console/Cache/ClearCommand.php -%%WWWDIR%%/src/Console/Cache/ConfigureCommand.php -%%WWWDIR%%/src/Console/Cache/DebugCommand.php -%%WWWDIR%%/src/Console/Cache/SetNamespacePrefixCommand.php -%%WWWDIR%%/src/Console/Command/ConfigurationCommandInterface.php -%%WWWDIR%%/src/Console/Command/ForceNoPluginsOptionCommandInterface.php -%%WWWDIR%%/src/Console/Command/GlpiCommandInterface.php -%%WWWDIR%%/src/Console/CommandLoader.php -%%WWWDIR%%/src/Console/Config/SetCommand.php -%%WWWDIR%%/src/Console/Database/AbstractConfigureCommand.php -%%WWWDIR%%/src/Console/Database/CheckSchemaIntegrityCommand.php -%%WWWDIR%%/src/Console/Database/ConfigureCommand.php -%%WWWDIR%%/src/Console/Database/EnableTimezonesCommand.php -%%WWWDIR%%/src/Console/Database/InstallCommand.php -%%WWWDIR%%/src/Console/Database/UpdateCommand.php -%%WWWDIR%%/src/Console/Diagnostic/CheckDocumentsIntegrityCommand.php -%%WWWDIR%%/src/Console/Diagnostic/CheckHtmlEncodingCommand.php -%%WWWDIR%%/src/Console/Exception/EarlyExitException.php -%%WWWDIR%%/src/Console/Ldap/SynchronizeUsersCommand.php -%%WWWDIR%%/src/Console/Maintenance/DisableMaintenanceModeCommand.php -%%WWWDIR%%/src/Console/Maintenance/EnableMaintenanceModeCommand.php -%%WWWDIR%%/src/Console/Marketplace/AbstractMarketplaceCommand.php -%%WWWDIR%%/src/Console/Marketplace/DownloadCommand.php -%%WWWDIR%%/src/Console/Marketplace/InfoCommand.php -%%WWWDIR%%/src/Console/Marketplace/SearchCommand.php -%%WWWDIR%%/src/Console/Migration/AbstractPluginToCoreCommand.php -%%WWWDIR%%/src/Console/Migration/AppliancesPluginToCoreCommand.php -%%WWWDIR%%/src/Console/Migration/BuildMissingTimestampsCommand.php -%%WWWDIR%%/src/Console/Migration/DatabasesPluginToCoreCommand.php -%%WWWDIR%%/src/Console/Migration/DomainsPluginToCoreCommand.php -%%WWWDIR%%/src/Console/Migration/DynamicRowFormatCommand.php -%%WWWDIR%%/src/Console/Migration/MigrateAllCommand.php -%%WWWDIR%%/src/Console/Migration/MyIsamToInnoDbCommand.php -%%WWWDIR%%/src/Console/Migration/RacksPluginToCoreCommand.php -%%WWWDIR%%/src/Console/Migration/TimestampsCommand.php -%%WWWDIR%%/src/Console/Migration/UnsignedKeysCommand.php -%%WWWDIR%%/src/Console/Migration/Utf8mb4Command.php -%%WWWDIR%%/src/Console/Plugin/AbstractPluginCommand.php -%%WWWDIR%%/src/Console/Plugin/ActivateCommand.php -%%WWWDIR%%/src/Console/Plugin/DeactivateCommand.php -%%WWWDIR%%/src/Console/Plugin/InstallCommand.php -%%WWWDIR%%/src/Console/Plugin/UninstallCommand.php -%%WWWDIR%%/src/Console/Rules/ProcessSoftwareCategoryRulesCommand.php -%%WWWDIR%%/src/Console/Rules/ReplayDictionnaryRulesCommand.php -%%WWWDIR%%/src/Console/Security/ChangekeyCommand.php -%%WWWDIR%%/src/Console/System/CheckRequirementsCommand.php -%%WWWDIR%%/src/Console/System/CheckStatusCommand.php -%%WWWDIR%%/src/Console/System/ListServicesCommand.php -%%WWWDIR%%/src/Console/Task/UnlockCommand.php -%%WWWDIR%%/src/Console/Traits/TelemetryActivationTrait.php %%WWWDIR%%/src/Consumable.php %%WWWDIR%%/src/ConsumableItem.php %%WWWDIR%%/src/ConsumableItemType.php %%WWWDIR%%/src/Contact.php %%WWWDIR%%/src/ContactType.php %%WWWDIR%%/src/Contact_Supplier.php -%%WWWDIR%%/src/ContentTemplates/Parameters/AbstractParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/AssetParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ChangeParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/CommonITILObjectParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/DropdownParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/EntityParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/GroupParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ITILCategoryParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/KnowbaseItemParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/LevelAgreementParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/LocationParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/OLAParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes/AbstractParameterType.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes/ArrayParameter.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes/AttributeParameter.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes/ObjectParameter.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes/ParameterTypeInterface.php -%%WWWDIR%%/src/ContentTemplates/Parameters/ProblemParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/RequestTypeParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/SLAParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/SupplierParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/TemplatesParametersInterface.php -%%WWWDIR%%/src/ContentTemplates/Parameters/TicketParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/TreeDropdownParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/UserCategoryParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/UserParameters.php -%%WWWDIR%%/src/ContentTemplates/Parameters/UserTitleParameters.php -%%WWWDIR%%/src/ContentTemplates/ParametersPreset.php -%%WWWDIR%%/src/ContentTemplates/TemplateDocumentation.php -%%WWWDIR%%/src/ContentTemplates/TemplateManager.php %%WWWDIR%%/src/Contract.php %%WWWDIR%%/src/ContractCost.php %%WWWDIR%%/src/ContractType.php %%WWWDIR%%/src/Contract_Item.php %%WWWDIR%%/src/Contract_Supplier.php +%%WWWDIR%%/src/Contract_User.php %%WWWDIR%%/src/CronTask.php %%WWWDIR%%/src/CronTaskLog.php -%%WWWDIR%%/src/Csv/CsvResponse.php -%%WWWDIR%%/src/Csv/ExportToCsvInterface.php -%%WWWDIR%%/src/Csv/ImpactCsvExport.php -%%WWWDIR%%/src/Csv/LogCsvExport.php -%%WWWDIR%%/src/Csv/PlanningCsv.php -%%WWWDIR%%/src/Csv/StatCsvExport.php %%WWWDIR%%/src/DBConnection.php %%WWWDIR%%/src/DBmysql.php %%WWWDIR%%/src/DBmysqlIterator.php %%WWWDIR%%/src/DCRoom.php -%%WWWDIR%%/src/Dashboard/Dashboard.php -%%WWWDIR%%/src/Dashboard/Filter.php -%%WWWDIR%%/src/Dashboard/Filters/AbstractFilter.php -%%WWWDIR%%/src/Dashboard/Filters/DatesFilter.php -%%WWWDIR%%/src/Dashboard/Filters/DatesModFilter.php -%%WWWDIR%%/src/Dashboard/Filters/GroupTechFilter.php -%%WWWDIR%%/src/Dashboard/Filters/ItilCategoryFilter.php -%%WWWDIR%%/src/Dashboard/Filters/LocationFilter.php -%%WWWDIR%%/src/Dashboard/Filters/ManufacturerFilter.php -%%WWWDIR%%/src/Dashboard/Filters/RequestTypeFilter.php -%%WWWDIR%%/src/Dashboard/Filters/StateFilter.php -%%WWWDIR%%/src/Dashboard/Filters/TicketTypeFilter.php -%%WWWDIR%%/src/Dashboard/Filters/UserTechFilter.php -%%WWWDIR%%/src/Dashboard/Grid.php -%%WWWDIR%%/src/Dashboard/Item.php -%%WWWDIR%%/src/Dashboard/Provider.php -%%WWWDIR%%/src/Dashboard/Right.php -%%WWWDIR%%/src/Dashboard/Widget.php %%WWWDIR%%/src/Database.php %%WWWDIR%%/src/DatabaseInstance.php %%WWWDIR%%/src/DatabaseInstanceCategory.php %%WWWDIR%%/src/DatabaseInstanceType.php %%WWWDIR%%/src/Datacenter.php %%WWWDIR%%/src/DbUtils.php -%%WWWDIR%%/src/Debug/Profile.php -%%WWWDIR%%/src/Debug/Profiler.php -%%WWWDIR%%/src/Debug/ProfilerSection.php -%%WWWDIR%%/src/Debug/Toolbar.php +%%WWWDIR%%/src/DefaultFilter.php %%WWWDIR%%/src/DeviceBattery.php %%WWWDIR%%/src/DeviceBatteryModel.php %%WWWDIR%%/src/DeviceBatteryType.php @@ -2962,6 +2518,7 @@ %%WWWDIR%%/src/DeviceGraphicCardModel.php %%WWWDIR%%/src/DeviceHardDrive.php %%WWWDIR%%/src/DeviceHardDriveModel.php +%%WWWDIR%%/src/DeviceHardDriveType.php %%WWWDIR%%/src/DeviceMemory.php %%WWWDIR%%/src/DeviceMemoryModel.php %%WWWDIR%%/src/DeviceMemoryType.php @@ -2995,45 +2552,951 @@ %%WWWDIR%%/src/Domain_Item.php %%WWWDIR%%/src/Dropdown.php %%WWWDIR%%/src/DropdownTranslation.php +%%WWWDIR%%/src/DropdownVisibility.php %%WWWDIR%%/src/Enclosure.php %%WWWDIR%%/src/EnclosureModel.php %%WWWDIR%%/src/Entity.php %%WWWDIR%%/src/Entity_KnowbaseItem.php %%WWWDIR%%/src/Entity_RSSFeed.php %%WWWDIR%%/src/Entity_Reminder.php -%%WWWDIR%%/src/Event.php -%%WWWDIR%%/src/Exception/ForgetPasswordException.php -%%WWWDIR%%/src/Exception/PasswordTooWeakException.php %%WWWDIR%%/src/ExtraVisibilityCriteria.php %%WWWDIR%%/src/FQDN.php %%WWWDIR%%/src/FQDNLabel.php -%%WWWDIR%%/src/Features/AssetImage.php -%%WWWDIR%%/src/Features/CacheableListInterface.php -%%WWWDIR%%/src/Features/Clonable.php -%%WWWDIR%%/src/Features/DCBreadcrumb.php -%%WWWDIR%%/src/Features/Inventoriable.php -%%WWWDIR%%/src/Features/Kanban.php -%%WWWDIR%%/src/Features/ParentStatus.php -%%WWWDIR%%/src/Features/PlanningEvent.php -%%WWWDIR%%/src/Features/Teamwork.php -%%WWWDIR%%/src/Features/Timeline.php -%%WWWDIR%%/src/Features/TreeBrowse.php %%WWWDIR%%/src/FieldUnicity.php %%WWWDIR%%/src/Fieldblacklist.php %%WWWDIR%%/src/Filesystem.php -%%WWWDIR%%/src/GLPI.php %%WWWDIR%%/src/GLPIKey.php %%WWWDIR%%/src/GLPIMailer.php %%WWWDIR%%/src/GLPINetwork.php %%WWWDIR%%/src/GLPIPDF.php %%WWWDIR%%/src/GLPIUploadHandler.php +%%WWWDIR%%/src/Glpi/Agent/Communication/AbstractRequest.php +%%WWWDIR%%/src/Glpi/Agent/Communication/Headers/Common.php +%%WWWDIR%%/src/Glpi/Altcha/AltchaManager.php +%%WWWDIR%%/src/Glpi/Altcha/AltchaMode.php +%%WWWDIR%%/src/Glpi/Altcha/InvalidPayloadException.php +%%WWWDIR%%/src/Glpi/Api/API.php +%%WWWDIR%%/src/Glpi/Api/APIRest.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/CommonDeprecatedTrait.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/ComputerAntivirus.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/ComputerVirtualMachine.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/Computer_Item.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/Computer_SoftwareLicense.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/Computer_SoftwareVersion.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/DeprecatedInterface.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/Netpoint.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/Pdu_Plug.php +%%WWWDIR%%/src/Glpi/Api/Deprecated/TicketFollowup.php +%%WWWDIR%%/src/Glpi/Api/HL/APIException.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/AbstractController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/AdministrationController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/AssetController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/CRUDControllerTrait.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/ComponentController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/CoreController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/CustomAssetController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/DropdownController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/GraphQLController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/ITILController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/ManagementController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/ProjectController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/ReportController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/RuleController.php +%%WWWDIR%%/src/Glpi/Api/HL/Controller/SetupController.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/CreateRoute.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/DeleteRoute.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/GetRoute.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/Parameter.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/Response.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/Route.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/Schema.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/SchemaReference.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/SearchRoute.php +%%WWWDIR%%/src/Glpi/Api/HL/Doc/UpdateRoute.php +%%WWWDIR%%/src/Glpi/Api/HL/GraphQL.php +%%WWWDIR%%/src/Glpi/Api/HL/GraphQLGenerator.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/AbstractMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/AuthMiddlewareInterface.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/CRUDRequestMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/CookieAuthMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/DebugRequestMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/DebugResponseMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/IPRestrictionRequestMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/InternalAuthMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/MiddlewareInput.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/OAuthRequestMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/RSQLRequestMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/RequestMiddlewareInterface.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/ResponseMiddlewareInterface.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/ResultFormatterMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/Middleware/SecurityResponseMiddleware.php +%%WWWDIR%%/src/Glpi/Api/HL/OpenAPIGenerator.php +%%WWWDIR%%/src/Glpi/Api/HL/RSQL/Error.php +%%WWWDIR%%/src/Glpi/Api/HL/RSQL/Lexer.php +%%WWWDIR%%/src/Glpi/Api/HL/RSQL/Parser.php +%%WWWDIR%%/src/Glpi/Api/HL/RSQL/RSQLException.php +%%WWWDIR%%/src/Glpi/Api/HL/RSQL/Result.php +%%WWWDIR%%/src/Glpi/Api/HL/ResourceAccessor.php +%%WWWDIR%%/src/Glpi/Api/HL/RightConditionNotMetException.php +%%WWWDIR%%/src/Glpi/Api/HL/Route.php +%%WWWDIR%%/src/Glpi/Api/HL/RoutePath.php +%%WWWDIR%%/src/Glpi/Api/HL/RouteVersion.php +%%WWWDIR%%/src/Glpi/Api/HL/Router.php +%%WWWDIR%%/src/Glpi/Api/HL/Search.php +%%WWWDIR%%/src/Glpi/Api/HL/Search/RecordSet.php +%%WWWDIR%%/src/Glpi/Api/HL/Search/SearchContext.php +%%WWWDIR%%/src/Glpi/Application/Environment.php +%%WWWDIR%%/src/Glpi/Application/ImportMapGenerator.php +%%WWWDIR%%/src/Glpi/Application/ResourcesChecker.php +%%WWWDIR%%/src/Glpi/Application/SystemConfigurator.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/ConfigExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/DataHelpersExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/DocumentExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/FrontEndAssetsExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/HtmlExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/I18nExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/IllustrationExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/ItemtypeExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/PhpExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/PluginExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/RoutingExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/SearchExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/SecurityExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/SessionExtension.php +%%WWWDIR%%/src/Glpi/Application/View/Extension/TeamExtension.php +%%WWWDIR%%/src/Glpi/Application/View/TemplateRenderer.php +%%WWWDIR%%/src/Glpi/Asset/Asset.php +%%WWWDIR%%/src/Glpi/Asset/AssetDefinition.php +%%WWWDIR%%/src/Glpi/Asset/AssetDefinitionManager.php +%%WWWDIR%%/src/Glpi/Asset/AssetModel.php +%%WWWDIR%%/src/Glpi/Asset/AssetType.php +%%WWWDIR%%/src/Glpi/Asset/Asset_PeripheralAsset.php +%%WWWDIR%%/src/Glpi/Asset/Capacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/AbstractCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/AllowedInGlobalSearchCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/CapacityInterface.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasAntivirusCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasAppliancesCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasCertificatesCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasContractsCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasDatabaseInstanceCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasDevicesCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasDocumentsCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasDomainsCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasHistoryCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasImpactCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasInfocomCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasKnowbaseCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasLinksCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasNetworkPortCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasNotepadCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasOperatingSystemCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasPeripheralAssetsCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasPlugCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasRemoteManagementCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasSocketCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasSoftwaresCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasVirtualMachineCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/HasVolumesCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/IsInventoriableCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/IsProjectAssetCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/IsRackableCapacity.php +%%WWWDIR%%/src/Glpi/Asset/Capacity/IsReservableCapacity.php +%%WWWDIR%%/src/Glpi/Asset/CapacityConfig.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldDefinition.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldOption/AbstractOption.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldOption/BooleanOption.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldOption/NumberOption.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldOption/OptionInterface.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldOption/ProfileRestrictOption.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/AbstractType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/BooleanType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/DateTimeType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/DateType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/DropdownType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/NumberType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/StringType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/TextType.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/TypeInterface.php +%%WWWDIR%%/src/Glpi/Asset/CustomFieldType/URLType.php +%%WWWDIR%%/src/Glpi/Asset/RuleDictionaryModel.php +%%WWWDIR%%/src/Glpi/Asset/RuleDictionaryModelCollection.php +%%WWWDIR%%/src/Glpi/Asset/RuleDictionaryType.php +%%WWWDIR%%/src/Glpi/Asset/RuleDictionaryTypeCollection.php +%%WWWDIR%%/src/Glpi/Cache/CacheManager.php +%%WWWDIR%%/src/Glpi/Cache/I18nCache.php +%%WWWDIR%%/src/Glpi/Cache/SimpleCache.php +%%WWWDIR%%/src/Glpi/CalDAV/Backend/Auth.php +%%WWWDIR%%/src/Glpi/CalDAV/Backend/Calendar.php +%%WWWDIR%%/src/Glpi/CalDAV/Backend/Principal.php +%%WWWDIR%%/src/Glpi/CalDAV/Contracts/CalDAVCompatibleItemInterface.php +%%WWWDIR%%/src/Glpi/CalDAV/Node/CalendarRoot.php +%%WWWDIR%%/src/Glpi/CalDAV/Node/Property.php +%%WWWDIR%%/src/Glpi/CalDAV/Plugin/Acl.php +%%WWWDIR%%/src/Glpi/CalDAV/Plugin/Browser.php +%%WWWDIR%%/src/Glpi/CalDAV/Plugin/CalDAV.php +%%WWWDIR%%/src/Glpi/CalDAV/Server.php +%%WWWDIR%%/src/Glpi/CalDAV/Traits/CalDAVPrincipalsTrait.php +%%WWWDIR%%/src/Glpi/CalDAV/Traits/CalDAVUriUtilTrait.php +%%WWWDIR%%/src/Glpi/CalDAV/Traits/VobjectConverterTrait.php +%%WWWDIR%%/src/Glpi/Console/AbstractCommand.php +%%WWWDIR%%/src/Glpi/Console/Application.php +%%WWWDIR%%/src/Glpi/Console/Assets/CleanSoftwareCommand.php +%%WWWDIR%%/src/Glpi/Console/Assets/PurgeSoftwareCommand.php +%%WWWDIR%%/src/Glpi/Console/Build/CompileScssCommand.php +%%WWWDIR%%/src/Glpi/Console/Build/GenerateCodeManifestCommand.php +%%WWWDIR%%/src/Glpi/Console/Cache/ClearCommand.php +%%WWWDIR%%/src/Glpi/Console/Cache/ConfigureCommand.php +%%WWWDIR%%/src/Glpi/Console/Cache/DebugCommand.php +%%WWWDIR%%/src/Glpi/Console/Cache/SetNamespacePrefixCommand.php +%%WWWDIR%%/src/Glpi/Console/Command/ConfigurationCommandInterface.php +%%WWWDIR%%/src/Glpi/Console/Command/GlpiCommandInterface.php +%%WWWDIR%%/src/Glpi/Console/CommandLoader.php +%%WWWDIR%%/src/Glpi/Console/Config/SetCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/AbstractConfigureCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/CheckSchemaIntegrityCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/ConfigureCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/EnableTimezonesCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/InstallCommand.php +%%WWWDIR%%/src/Glpi/Console/Database/UpdateCommand.php +%%WWWDIR%%/src/Glpi/Console/Diagnostic/CheckDocumentsIntegrityCommand.php +%%WWWDIR%%/src/Glpi/Console/Diagnostic/CheckHtmlEncodingCommand.php +%%WWWDIR%%/src/Glpi/Console/Diagnostic/CheckSourceCodeIntegrityCommand.php +%%WWWDIR%%/src/Glpi/Console/Exception/EarlyExitException.php +%%WWWDIR%%/src/Glpi/Console/Ldap/SynchronizeUsersCommand.php +%%WWWDIR%%/src/Glpi/Console/Maintenance/DisableMaintenanceModeCommand.php +%%WWWDIR%%/src/Glpi/Console/Maintenance/EnableMaintenanceModeCommand.php +%%WWWDIR%%/src/Glpi/Console/Marketplace/AbstractMarketplaceCommand.php +%%WWWDIR%%/src/Glpi/Console/Marketplace/DownloadCommand.php +%%WWWDIR%%/src/Glpi/Console/Marketplace/InfoCommand.php +%%WWWDIR%%/src/Glpi/Console/Marketplace/SearchCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/AbstractPluginMigrationCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/AbstractPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/AppliancesPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/BuildMissingTimestampsCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/DatabasesPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/DomainsPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/DynamicRowFormatCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/FormCreatorPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/GenericobjectPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/MigrateAllCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/MyIsamToInnoDbCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/RacksPluginToCoreCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/TimestampsCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/UnsignedKeysCommand.php +%%WWWDIR%%/src/Glpi/Console/Migration/Utf8mb4Command.php +%%WWWDIR%%/src/Glpi/Console/Plugin/AbstractPluginCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/ActivateCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/DeactivateCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/InstallCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/ListCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/ResumeExecutionCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/SuspendExecutionCommand.php +%%WWWDIR%%/src/Glpi/Console/Plugin/UninstallCommand.php +%%WWWDIR%%/src/Glpi/Console/Rules/ProcessSoftwareCategoryRulesCommand.php +%%WWWDIR%%/src/Glpi/Console/Rules/ReplayDictionnaryRulesCommand.php +%%WWWDIR%%/src/Glpi/Console/Security/ChangekeyCommand.php +%%WWWDIR%%/src/Glpi/Console/Security/DisableTFACommand.php +%%WWWDIR%%/src/Glpi/Console/System/CheckRequirementsCommand.php +%%WWWDIR%%/src/Glpi/Console/System/CheckStatusCommand.php +%%WWWDIR%%/src/Glpi/Console/System/ListServicesCommand.php +%%WWWDIR%%/src/Glpi/Console/Task/UnlockCommand.php +%%WWWDIR%%/src/Glpi/Console/Traits/PluginMigrationTrait.php +%%WWWDIR%%/src/Glpi/Console/Traits/TelemetryActivationTrait.php +%%WWWDIR%%/src/Glpi/Console/User/AbstractUserCommand.php +%%WWWDIR%%/src/Glpi/Console/User/CreateCommand.php +%%WWWDIR%%/src/Glpi/Console/User/DeleteCommand.php +%%WWWDIR%%/src/Glpi/Console/User/DisableCommand.php +%%WWWDIR%%/src/Glpi/Console/User/EnableCommand.php +%%WWWDIR%%/src/Glpi/Console/User/GrantCommand.php +%%WWWDIR%%/src/Glpi/Console/User/ResetPasswordCommand.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/AbstractParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/AssetParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ChangeParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/CommonITILObjectParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/DropdownParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/EntityParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/GroupParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ITILCategoryParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/KnowbaseItemParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/LevelAgreementParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/LocationParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/OLAParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes/AbstractParameterType.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes/ArrayParameter.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes/AttributeParameter.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes/ObjectParameter.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes/ParameterTypeInterface.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ProblemParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/RequestTypeParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/SLAParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/SupplierParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/TemplatesParametersInterface.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/TicketParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/TreeDropdownParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/UserCategoryParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/UserParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/UserTitleParameters.php +%%WWWDIR%%/src/Glpi/ContentTemplates/ParametersPreset.php +%%WWWDIR%%/src/Glpi/ContentTemplates/TemplateDocumentation.php +%%WWWDIR%%/src/Glpi/ContentTemplates/TemplateManager.php +%%WWWDIR%%/src/Glpi/Controller/AbstractController.php +%%WWWDIR%%/src/Glpi/Controller/Altcha/ChallengeController.php +%%WWWDIR%%/src/Glpi/Controller/ApiController.php +%%WWWDIR%%/src/Glpi/Controller/ApiRestController.php +%%WWWDIR%%/src/Glpi/Controller/CaldavController.php +%%WWWDIR%%/src/Glpi/Controller/CentralController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/AbstractTileController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/AddTileController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/CopyParentEntityController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/DeleteTileController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/SetTilesOrderController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/ShowAddTileFormController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/ShowEditTileFormController.php +%%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk/UpdateTileController.php +%%WWWDIR%%/src/Glpi/Controller/DropdownFormController.php +%%WWWDIR%%/src/Glpi/Controller/ErrorController.php +%%WWWDIR%%/src/Glpi/Controller/Form/AllowListDropdown/CountUsersController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Condition/EditorController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Condition/EngineController.php +%%WWWDIR%%/src/Glpi/Controller/Form/DelegationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Destination/AddDestinationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Destination/PurgeDestinationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Destination/UpdateDestinationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/ExportController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Import/Step1IndexController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Import/Step2PreviewController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Import/Step3ResolveIssuesController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Import/Step4ExecuteController.php +%%WWWDIR%%/src/Glpi/Controller/Form/QuestionActorsDropdownController.php +%%WWWDIR%%/src/Glpi/Controller/Form/RendererController.php +%%WWWDIR%%/src/Glpi/Controller/Form/SubmitAnswerController.php +%%WWWDIR%%/src/Glpi/Controller/Form/TagListController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Translation/AddNewFormTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Translation/DeleteFormTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Translation/UpdateFormTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/Form/Utils/CanCheckAccessPolicies.php +%%WWWDIR%%/src/Glpi/Controller/Form/ValidateAnswerController.php +%%WWWDIR%%/src/Glpi/Controller/GenericAjaxCrudController.php +%%WWWDIR%%/src/Glpi/Controller/GenericFormController.php +%%WWWDIR%%/src/Glpi/Controller/GenericListController.php +%%WWWDIR%%/src/Glpi/Controller/Helpdesk/IndexController.php +%%WWWDIR%%/src/Glpi/Controller/Helpdesk/SearchController.php +%%WWWDIR%%/src/Glpi/Controller/Helpdesk/Translation/AddNewHelpdeskTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/Helpdesk/Translation/DeleteHelpdeskTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/Helpdesk/Translation/UpdateHelpdeskTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/IndexController.php +%%WWWDIR%%/src/Glpi/Controller/InstallController.php +%%WWWDIR%%/src/Glpi/Controller/InventoryController.php +%%WWWDIR%%/src/Glpi/Controller/ItemType/Form/AuthMailFormController.php +%%WWWDIR%%/src/Glpi/Controller/ItemType/Form/ContactFormController.php +%%WWWDIR%%/src/Glpi/Controller/ItemType/Form/MailCollectorFormController.php +%%WWWDIR%%/src/Glpi/Controller/ItemType/Form/SavedSearchFormController.php +%%WWWDIR%%/src/Glpi/Controller/Knowbase/KnowbaseItemController.php +%%WWWDIR%%/src/Glpi/Controller/LegacyFileLoadController.php +%%WWWDIR%%/src/Glpi/Controller/MaintenanceController.php +%%WWWDIR%%/src/Glpi/Controller/Plugin/LogoController.php +%%WWWDIR%%/src/Glpi/Controller/ProgressController.php +%%WWWDIR%%/src/Glpi/Controller/RequestException.php +%%WWWDIR%%/src/Glpi/Controller/Security/MFAController.php +%%WWWDIR%%/src/Glpi/Controller/ServiceCatalog/IndexController.php +%%WWWDIR%%/src/Glpi/Controller/ServiceCatalog/ItemsController.php +%%WWWDIR%%/src/Glpi/Controller/Session/ChangeEntityController.php +%%WWWDIR%%/src/Glpi/Controller/Session/ChangeProfileController.php +%%WWWDIR%%/src/Glpi/Controller/StatusController.php +%%WWWDIR%%/src/Glpi/Controller/Traits/AsyncOperationProgressControllerTrait.php +%%WWWDIR%%/src/Glpi/Controller/Translation/AbstractTranslationController.php +%%WWWDIR%%/src/Glpi/Controller/UI/Illustration/CustomIllustrationController.php +%%WWWDIR%%/src/Glpi/Controller/UI/Illustration/CustomSceneController.php +%%WWWDIR%%/src/Glpi/Controller/UI/Illustration/SearchController.php +%%WWWDIR%%/src/Glpi/Controller/UI/Illustration/UploadController.php +%%WWWDIR%%/src/Glpi/Controller/WellKnownController.php +%%WWWDIR%%/src/Glpi/Csv/CsvResponse.php +%%WWWDIR%%/src/Glpi/Csv/ExportToCsvInterface.php +%%WWWDIR%%/src/Glpi/Csv/ImpactCsvExport.php +%%WWWDIR%%/src/Glpi/Csv/LogCsvExport.php +%%WWWDIR%%/src/Glpi/Csv/PlanningCsv.php +%%WWWDIR%%/src/Glpi/Csv/PrinterLogCsvExport.php +%%WWWDIR%%/src/Glpi/Csv/PrinterLogCsvExportComparison.php +%%WWWDIR%%/src/Glpi/Csv/StatCsvExport.php +%%WWWDIR%%/src/Glpi/CustomObject/AbstractDefinition.php +%%WWWDIR%%/src/Glpi/CustomObject/AbstractDefinitionManager.php +%%WWWDIR%%/src/Glpi/CustomObject/CustomObjectTrait.php +%%WWWDIR%%/src/Glpi/DBAL/JsonFieldInterface.php +%%WWWDIR%%/src/Glpi/DBAL/PrepareForCloneInterface.php +%%WWWDIR%%/src/Glpi/DBAL/QueryExpression.php +%%WWWDIR%%/src/Glpi/DBAL/QueryFunction.php +%%WWWDIR%%/src/Glpi/DBAL/QueryParam.php +%%WWWDIR%%/src/Glpi/DBAL/QuerySubQuery.php +%%WWWDIR%%/src/Glpi/DBAL/QueryUnion.php +%%WWWDIR%%/src/Glpi/Dashboard/Dashboard.php +%%WWWDIR%%/src/Glpi/Dashboard/FakeProvider.php +%%WWWDIR%%/src/Glpi/Dashboard/Filter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/AbstractFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/AbstractGroupFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/DatesFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/DatesModFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/GroupRequesterFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/GroupTechFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/ItilCategoryFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/LocationFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/ManufacturerFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/RequestTypeFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/StateFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/TicketTypeFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Filters/UserTechFilter.php +%%WWWDIR%%/src/Glpi/Dashboard/Grid.php +%%WWWDIR%%/src/Glpi/Dashboard/Item.php +%%WWWDIR%%/src/Glpi/Dashboard/Palette.php +%%WWWDIR%%/src/Glpi/Dashboard/Provider.php +%%WWWDIR%%/src/Glpi/Dashboard/Right.php +%%WWWDIR%%/src/Glpi/Dashboard/Widget.php +%%WWWDIR%%/src/Glpi/Debug/Profile.php +%%WWWDIR%%/src/Glpi/Debug/Profiler.php +%%WWWDIR%%/src/Glpi/Debug/ProfilerSection.php +%%WWWDIR%%/src/Glpi/DependencyInjection/PluginContainer.php +%%WWWDIR%%/src/Glpi/DependencyInjection/PublicService.php +%%WWWDIR%%/src/Glpi/Dropdown/Dropdown.php +%%WWWDIR%%/src/Glpi/Dropdown/DropdownDefinition.php +%%WWWDIR%%/src/Glpi/Dropdown/DropdownDefinitionManager.php +%%WWWDIR%%/src/Glpi/Error/ErrorDisplayHandler/CliDisplayHandler.php +%%WWWDIR%%/src/Glpi/Error/ErrorDisplayHandler/ConsoleErrorDisplayHandler.php +%%WWWDIR%%/src/Glpi/Error/ErrorDisplayHandler/ErrorDisplayHandler.php +%%WWWDIR%%/src/Glpi/Error/ErrorDisplayHandler/HtmlErrorDisplayHandler.php +%%WWWDIR%%/src/Glpi/Error/ErrorHandler.php +%%WWWDIR%%/src/Glpi/Error/ErrorUtils.php +%%WWWDIR%%/src/Glpi/Event.php +%%WWWDIR%%/src/Glpi/Exception/AuthenticationFailedException.php +%%WWWDIR%%/src/Glpi/Exception/EmptyCurlContentException.php +%%WWWDIR%%/src/Glpi/Exception/ForgetPasswordException.php +%%WWWDIR%%/src/Glpi/Exception/Http/AccessDeniedHttpException.php +%%WWWDIR%%/src/Glpi/Exception/Http/BadRequestHttpException.php +%%WWWDIR%%/src/Glpi/Exception/Http/HttpException.php +%%WWWDIR%%/src/Glpi/Exception/Http/HttpExceptionInterface.php +%%WWWDIR%%/src/Glpi/Exception/Http/HttpExceptionTrait.php +%%WWWDIR%%/src/Glpi/Exception/Http/NotFoundHttpException.php +%%WWWDIR%%/src/Glpi/Exception/Http/UnprocessableEntityHttpException.php +%%WWWDIR%%/src/Glpi/Exception/ItemLinkException.php +%%WWWDIR%%/src/Glpi/Exception/OAuth2KeyException.php +%%WWWDIR%%/src/Glpi/Exception/PasswordTooWeakException.php +%%WWWDIR%%/src/Glpi/Exception/RedirectException.php +%%WWWDIR%%/src/Glpi/Exception/SessionExpiredException.php +%%WWWDIR%%/src/Glpi/Features/AssetImage.php +%%WWWDIR%%/src/Glpi/Features/AssignableItem.php +%%WWWDIR%%/src/Glpi/Features/AssignableItemInterface.php +%%WWWDIR%%/src/Glpi/Features/CacheableListInterface.php +%%WWWDIR%%/src/Glpi/Features/Clonable.php +%%WWWDIR%%/src/Glpi/Features/CloneMapper.php +%%WWWDIR%%/src/Glpi/Features/CloneWithoutNameSuffix.php +%%WWWDIR%%/src/Glpi/Features/DCBreadcrumb.php +%%WWWDIR%%/src/Glpi/Features/DCBreadcrumbInterface.php +%%WWWDIR%%/src/Glpi/Features/Inventoriable.php +%%WWWDIR%%/src/Glpi/Features/Kanban.php +%%WWWDIR%%/src/Glpi/Features/KanbanInterface.php +%%WWWDIR%%/src/Glpi/Features/ParentStatus.php +%%WWWDIR%%/src/Glpi/Features/PlanningEvent.php +%%WWWDIR%%/src/Glpi/Features/State.php +%%WWWDIR%%/src/Glpi/Features/StateInterface.php +%%WWWDIR%%/src/Glpi/Features/Teamwork.php +%%WWWDIR%%/src/Glpi/Features/TeamworkInterface.php +%%WWWDIR%%/src/Glpi/Features/Timeline.php +%%WWWDIR%%/src/Glpi/Features/TreeBrowse.php +%%WWWDIR%%/src/Glpi/Features/TreeBrowseInterface.php +%%WWWDIR%%/src/Glpi/Features/ZonableModelPicture.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/AccessVote.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/AllowList.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/AllowListConfig.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/AllowListDropdown.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/ControlTypeInterface.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/DirectAccess.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType/DirectAccessConfig.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/FormAccessControl.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/FormAccessControlManager.php +%%WWWDIR%%/src/Glpi/Form/AccessControl/FormAccessParameters.php +%%WWWDIR%%/src/Glpi/Form/Answer.php +%%WWWDIR%%/src/Glpi/Form/AnswersHandler/AnswersHandler.php +%%WWWDIR%%/src/Glpi/Form/AnswersSet.php +%%WWWDIR%%/src/Glpi/Form/BlockInterface.php +%%WWWDIR%%/src/Glpi/Form/Category.php +%%WWWDIR%%/src/Glpi/Form/Clone/FormCloneHelper.php +%%WWWDIR%%/src/Glpi/Form/Comment.php +%%WWWDIR%%/src/Glpi/Form/Condition/CommentData.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionData.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/AbstractDateTimeConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/ActorConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/ArrayConditionHandlerTrait.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/ConditionHandlerInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/DateAndTimeConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/DateConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/EmptyConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/ItemAsTextConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/ItemConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/MultipleChoiceFromValuesConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/NumberConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/RegexConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/RequestTypeConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/RichTextConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/SingleChoiceFromValuesConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/StringConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/TimeConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/UrgencyConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/UserDevicesAsTextConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/UserDevicesConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler/VisibilityConditionHandler.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionValueTransformerInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableCreationInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableCreationTrait.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableTrait.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableValidationTrait.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableVisibilityInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ConditionableVisibilityTrait.php +%%WWWDIR%%/src/Glpi/Form/Condition/CreationStrategy.php +%%WWWDIR%%/src/Glpi/Form/Condition/EditorManager.php +%%WWWDIR%%/src/Glpi/Form/Condition/Engine.php +%%WWWDIR%%/src/Glpi/Form/Condition/EngineCreationOutput.php +%%WWWDIR%%/src/Glpi/Form/Condition/EngineInput.php +%%WWWDIR%%/src/Glpi/Form/Condition/EngineValidationOutput.php +%%WWWDIR%%/src/Glpi/Form/Condition/EngineVisibilityOutput.php +%%WWWDIR%%/src/Glpi/Form/Condition/FormData.php +%%WWWDIR%%/src/Glpi/Form/Condition/LogicOperator.php +%%WWWDIR%%/src/Glpi/Form/Condition/QuestionData.php +%%WWWDIR%%/src/Glpi/Form/Condition/SectionData.php +%%WWWDIR%%/src/Glpi/Form/Condition/StrategyInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/Type.php +%%WWWDIR%%/src/Glpi/Form/Condition/UsedAsCriteriaInterface.php +%%WWWDIR%%/src/Glpi/Form/Condition/ValidationStrategy.php +%%WWWDIR%%/src/Glpi/Form/Condition/ValueOperator.php +%%WWWDIR%%/src/Glpi/Form/Condition/VisibilityStrategy.php +%%WWWDIR%%/src/Glpi/Form/DelegationData.php +%%WWWDIR%%/src/Glpi/Form/Destination/AbstractCommonITILFormDestination.php +%%WWWDIR%%/src/Glpi/Form/Destination/AbstractConfigField.php +%%WWWDIR%%/src/Glpi/Form/Destination/AnswersSet_FormDestinationItem.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/AssigneeField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/AssigneeFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/AssociatedItemsField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/AssociatedItemsFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/AssociatedItemsFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/Category.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ContentField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/EntityField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/EntityFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/EntityFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILActorField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILActorFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILActorFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILCategoryField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILCategoryFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILCategoryFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILFollowupField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILFollowupFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILFollowupFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILTaskField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILTaskFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ITILTaskFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LinkedITILObjectsField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LinkedITILObjectsFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LinkedITILObjectsFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LinkedITILObjectsFieldStrategyConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LocationField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LocationFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/LocationFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/OLATTOField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/OLATTOFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/OLATTRField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/OLATTRFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ObserverField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ObserverFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestSourceField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestSourceFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestSourceFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestTypeField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestTypeFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequestTypeFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequesterField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/RequesterFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLATTOField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLATTOFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLATTRField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLATTRFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLMField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLMFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SLMFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/SimpleValueConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/StatusField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/TemplateField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/TemplateFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/TemplateFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/TitleField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/UrgencyField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/UrgencyFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/UrgencyFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ValidationField.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ValidationFieldConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ValidationFieldStrategy.php +%%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField/ValidationFieldStrategyConfig.php +%%WWWDIR%%/src/Glpi/Form/Destination/ConfigFieldWithStrategiesInterface.php +%%WWWDIR%%/src/Glpi/Form/Destination/DestinationFieldInterface.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestination.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestinationChange.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestinationInterface.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestinationManager.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestinationProblem.php +%%WWWDIR%%/src/Glpi/Form/Destination/FormDestinationTicket.php +%%WWWDIR%%/src/Glpi/Form/Destination/HasFieldWithDestinationId.php +%%WWWDIR%%/src/Glpi/Form/Destination/HasFieldWithQuestionId.php +%%WWWDIR%%/src/Glpi/Form/Destination/HasFormTags.php +%%WWWDIR%%/src/Glpi/Form/Dropdown/FormActorsDropdown.php +%%WWWDIR%%/src/Glpi/Form/EndUserInputNameProvider.php +%%WWWDIR%%/src/Glpi/Form/Export/Context/DatabaseMapper.php +%%WWWDIR%%/src/Glpi/Form/Export/Result/ExportResult.php +%%WWWDIR%%/src/Glpi/Form/Export/Result/ImportError.php +%%WWWDIR%%/src/Glpi/Form/Export/Result/ImportResult.php +%%WWWDIR%%/src/Glpi/Form/Export/Result/ImportResultIssues.php +%%WWWDIR%%/src/Glpi/Form/Export/Result/ImportResultPreview.php +%%WWWDIR%%/src/Glpi/Form/Export/Serializer/AbstractFormSerializer.php +%%WWWDIR%%/src/Glpi/Form/Export/Serializer/DynamicExportData.php +%%WWWDIR%%/src/Glpi/Form/Export/Serializer/DynamicExportDataField.php +%%WWWDIR%%/src/Glpi/Form/Export/Serializer/FormSerializer.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/AccesControlPolicyContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/CommentContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/ConditionDataSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/ContentSpecificationInterface.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/CustomIllustrationContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/DataRequirementSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/DestinationContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/ExportContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/FormContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/QuestionContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/SectionContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Export/Specification/TranslationContentSpecification.php +%%WWWDIR%%/src/Glpi/Form/Form.php +%%WWWDIR%%/src/Glpi/Form/FormTranslation.php +%%WWWDIR%%/src/Glpi/Form/Migration/ConditionHandlerDataConverterInterface.php +%%WWWDIR%%/src/Glpi/Form/Migration/DestinationFieldConverterInterface.php +%%WWWDIR%%/src/Glpi/Form/Migration/FormMigration.php +%%WWWDIR%%/src/Glpi/Form/Migration/FormQuestionDataConverterInterface.php +%%WWWDIR%%/src/Glpi/Form/Migration/TagConversionTrait.php +%%WWWDIR%%/src/Glpi/Form/Migration/TypesConversionMapper.php +%%WWWDIR%%/src/Glpi/Form/Question.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/AbstractQuestionType.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/AbstractQuestionTypeActors.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/AbstractQuestionTypeSelectable.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/AbstractQuestionTypeShortAnswer.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeActorsDefaultValueConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeActorsExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeAssignee.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeCategory.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeCategoryInterface.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeCheckbox.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeDateTime.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeDateTimeExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeDropdown.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeDropdownExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeEmail.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeFile.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeInterface.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeItem.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeItemDefaultValueConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeItemDropdown.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeItemDropdownExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeItemExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeLongText.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeNumber.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeObserver.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeRadio.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeRequestType.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeRequester.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeSelectableExtraDataConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeShortText.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeUrgency.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeUserDevice.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypeUserDevicesConfig.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/QuestionTypesManager.php +%%WWWDIR%%/src/Glpi/Form/QuestionType/TranslationAwareQuestionType.php +%%WWWDIR%%/src/Glpi/Form/RenderLayout.php +%%WWWDIR%%/src/Glpi/Form/Section.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/HomeSearchManager.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ItemRequest.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ItemRequestContext.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/CategoryProvider.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/CompositeProviderInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/FormProvider.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/ItemProviderInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/KnowbaseItemProvider.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider/LeafProviderInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ServiceCatalog.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ServiceCatalogCompositeInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ServiceCatalogItemInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ServiceCatalogLeafInterface.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/ServiceCatalogManager.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/AbstractSortStrategy.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/AlphabeticalSort.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/PopularitySort.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/ReverseAlphabeticalSort.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/SortStrategyEnum.php +%%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy/SortStrategyInterface.php +%%WWWDIR%%/src/Glpi/Form/Tag/AnswerTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/CommentDescriptionTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/CommentTitleTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/FormTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/FormTagsManager.php +%%WWWDIR%%/src/Glpi/Form/Tag/QuestionTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/SectionTagProvider.php +%%WWWDIR%%/src/Glpi/Form/Tag/Tag.php +%%WWWDIR%%/src/Glpi/Form/Tag/TagProviderInterface.php +%%WWWDIR%%/src/Glpi/Form/Tag/TagWithIdValueInterface.php +%%WWWDIR%%/src/Glpi/Form/ValidationResult.php +%%WWWDIR%%/src/Glpi/FuzzyMatcher/FuzzyMatcher.php +%%WWWDIR%%/src/Glpi/FuzzyMatcher/FuzzyMatcherStrategyInterface.php +%%WWWDIR%%/src/Glpi/FuzzyMatcher/PartialMatchStrategy.php +%%WWWDIR%%/src/Glpi/Helpdesk/DefaultDataManager.php +%%WWWDIR%%/src/Glpi/Helpdesk/HelpdeskTranslation.php +%%WWWDIR%%/src/Glpi/Helpdesk/HomePageTabs.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/ExternalPageTile.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/FormTile.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/GlpiPageTile.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/InvalidTileException.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/Item_Tile.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/LinkableToTilesInterface.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/TileInterface.php +%%WWWDIR%%/src/Glpi/Helpdesk/Tile/TilesManager.php +%%WWWDIR%%/src/Glpi/Http/Firewall.php +%%WWWDIR%%/src/Glpi/Http/HeaderlessStreamedResponse.php +%%WWWDIR%%/src/Glpi/Http/JSONResponse.php +%%WWWDIR%%/src/Glpi/Http/RedirectResponse.php +%%WWWDIR%%/src/Glpi/Http/Request.php +%%WWWDIR%%/src/Glpi/Http/RequestRouterTrait.php +%%WWWDIR%%/src/Glpi/Http/Response.php +%%WWWDIR%%/src/Glpi/Http/SessionManager.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Antivirus.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Battery.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Bios.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Camera.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Cartridge.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Controller.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/DatabaseInstance.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Device.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Drive.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Environment.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Firmware.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/GraphicCard.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/HardDrive.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/InventoryAsset.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/InventoryNetworkPort.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Memory.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Monitor.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/NetworkCard.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/NetworkPort.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/OperatingSystem.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Peripheral.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/PowerSupply.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Printer.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Process.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Processor.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/RemoteManagement.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Sensor.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Simcard.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Software.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/SoundCard.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/VirtualMachine.php +%%WWWDIR%%/src/Glpi/Inventory/Asset/Volume.php +%%WWWDIR%%/src/Glpi/Inventory/Conf.php +%%WWWDIR%%/src/Glpi/Inventory/Inventory.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/Computer.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/GenericAsset.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/GenericNetworkAsset.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/GenericPrinterAsset.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/Itemtype.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/MainAsset.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/NetworkEquipment.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/Phone.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/Printer.php +%%WWWDIR%%/src/Glpi/Inventory/MainAsset/Unmanaged.php +%%WWWDIR%%/src/Glpi/Inventory/Request.php +%%WWWDIR%%/src/Glpi/ItemTranslation/Context/ProvideTranslationsInterface.php +%%WWWDIR%%/src/Glpi/ItemTranslation/Context/TranslationHandler.php +%%WWWDIR%%/src/Glpi/ItemTranslation/ItemTranslation.php +%%WWWDIR%%/src/Glpi/Kernel/Kernel.php +%%WWWDIR%%/src/Glpi/Kernel/KernelListenerTrait.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/ControllerListener/CheckCsrfListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/ControllerListener/FirewallStrategyListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/ExceptionListener/AccessErrorListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/ExceptionListener/ProgressErrorListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/ExceptionListener/RedirectExceptionListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/BootPlugins.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/CheckPluginsStates.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/CustomObjectsAutoloaderRegistration.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/CustomObjectsBoot.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/FlushBootErrors.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/InitializeCache.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/InitializeDbConnection.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/InitializePlugins.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/LoadLanguage.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/LoadLegacyConfiguration.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/ProfilerStart.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener/SessionStart.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/CatchInventoryAgentRequestListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/CheckDatabaseStatusListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/CheckMaintenanceListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/ErrorHandlerRequestListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/FrontEndAssetsListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/LegacyItemtypeRouteListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/LegacyRouterListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/PluginsRouterListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/RedirectLegacyRouteListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/SessionCheckCookieListener.php +%%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener/SessionVariables.php +%%WWWDIR%%/src/Glpi/Kernel/ListenersPriority.php +%%WWWDIR%%/src/Glpi/Kernel/PostBootEvent.php +%%WWWDIR%%/src/Glpi/Log/AbstractLogHandler.php +%%WWWDIR%%/src/Glpi/Log/AbstractLogLineFormatter.php +%%WWWDIR%%/src/Glpi/Log/AccessLogHandler.php +%%WWWDIR%%/src/Glpi/Log/AccessLogLineFormatter.php +%%WWWDIR%%/src/Glpi/Log/ErrorLogHandler.php +%%WWWDIR%%/src/Glpi/Log/ErrorLogLineFormatter.php +%%WWWDIR%%/src/Glpi/Mail/Protocol/ProtocolInterface.php +%%WWWDIR%%/src/Glpi/Mail/SMTP/OauthConfig.php +%%WWWDIR%%/src/Glpi/Mail/SMTP/OauthProvider/Azure.php +%%WWWDIR%%/src/Glpi/Mail/SMTP/OauthProvider/Google.php +%%WWWDIR%%/src/Glpi/Mail/SMTP/OauthProvider/ProviderInterface.php +%%WWWDIR%%/src/Glpi/Marketplace/Api/Plugins.php +%%WWWDIR%%/src/Glpi/Marketplace/Controller.php +%%WWWDIR%%/src/Glpi/Marketplace/NotificationTargetController.php +%%WWWDIR%%/src/Glpi/Marketplace/View.php +%%WWWDIR%%/src/Glpi/Message/MessageType.php +%%WWWDIR%%/src/Glpi/Migration/AbstractPluginMigration.php +%%WWWDIR%%/src/Glpi/Migration/GenericobjectPluginMigration.php +%%WWWDIR%%/src/Glpi/Migration/MigrationException.php +%%WWWDIR%%/src/Glpi/Migration/PluginMigrationResult.php +%%WWWDIR%%/src/Glpi/OAuth/AccessToken.php +%%WWWDIR%%/src/Glpi/OAuth/AccessTokenRepository.php +%%WWWDIR%%/src/Glpi/OAuth/AuthCode.php +%%WWWDIR%%/src/Glpi/OAuth/AuthCodeRepository.php +%%WWWDIR%%/src/Glpi/OAuth/Client.php +%%WWWDIR%%/src/Glpi/OAuth/ClientRepository.php +%%WWWDIR%%/src/Glpi/OAuth/RefreshToken.php +%%WWWDIR%%/src/Glpi/OAuth/RefreshTokenRepository.php +%%WWWDIR%%/src/Glpi/OAuth/Scope.php +%%WWWDIR%%/src/Glpi/OAuth/ScopeRepository.php +%%WWWDIR%%/src/Glpi/OAuth/Server.php +%%WWWDIR%%/src/Glpi/OAuth/User.php +%%WWWDIR%%/src/Glpi/OAuth/UserRepository.php +%%WWWDIR%%/src/Glpi/Plugin/HookManager.php +%%WWWDIR%%/src/Glpi/Plugin/Hooks.php +%%WWWDIR%%/src/Glpi/Progress/AbstractProgressIndicator.php +%%WWWDIR%%/src/Glpi/Progress/ConsoleProgressIndicator.php +%%WWWDIR%%/src/Glpi/Progress/ProgressStorage.php +%%WWWDIR%%/src/Glpi/Progress/StoredProgressIndicator.php +%%WWWDIR%%/src/Glpi/RichText/RichText.php +%%WWWDIR%%/src/Glpi/RichText/UserMention.php +%%WWWDIR%%/src/Glpi/Routing/Attribute/ItemtypeFormRoute.php +%%WWWDIR%%/src/Glpi/Routing/Attribute/ItemtypeListRoute.php +%%WWWDIR%%/src/Glpi/Routing/PluginRoutesLoader.php +%%WWWDIR%%/src/Glpi/Rules/RulesManager.php +%%WWWDIR%%/src/Glpi/Search/CriteriaFilter.php +%%WWWDIR%%/src/Glpi/Search/DefaultSearchRequestInterface.php +%%WWWDIR%%/src/Glpi/Search/FilterableInterface.php +%%WWWDIR%%/src/Glpi/Search/FilterableTrait.php +%%WWWDIR%%/src/Glpi/Search/Input/QueryBuilder.php +%%WWWDIR%%/src/Glpi/Search/Input/SearchInputInterface.php +%%WWWDIR%%/src/Glpi/Search/Output/AbstractSearchOutput.php +%%WWWDIR%%/src/Glpi/Search/Output/Csv.php +%%WWWDIR%%/src/Glpi/Search/Output/ExportSearchOutput.php +%%WWWDIR%%/src/Glpi/Search/Output/HTMLSearchOutput.php +%%WWWDIR%%/src/Glpi/Search/Output/MapSearchOutput.php +%%WWWDIR%%/src/Glpi/Search/Output/NamesListSearchOutput.php +%%WWWDIR%%/src/Glpi/Search/Output/Ods.php +%%WWWDIR%%/src/Glpi/Search/Output/Pdf.php +%%WWWDIR%%/src/Glpi/Search/Output/Spreadsheet.php +%%WWWDIR%%/src/Glpi/Search/Output/Tcpdf.php +%%WWWDIR%%/src/Glpi/Search/Output/Xlsx.php +%%WWWDIR%%/src/Glpi/Search/Provider/SQLProvider.php +%%WWWDIR%%/src/Glpi/Search/Provider/SearchProviderInterface.php +%%WWWDIR%%/src/Glpi/Search/SearchEngine.php +%%WWWDIR%%/src/Glpi/Search/SearchOption.php +%%WWWDIR%%/src/Glpi/Security/Attribute/SecurityStrategy.php +%%WWWDIR%%/src/Glpi/Security/PermissionManager.php +%%WWWDIR%%/src/Glpi/Security/TOTPManager.php +%%WWWDIR%%/src/Glpi/Session/SessionInfo.php +%%WWWDIR%%/src/Glpi/Socket.php +%%WWWDIR%%/src/Glpi/SocketModel.php +%%WWWDIR%%/src/Glpi/Stat/Data/Graph/StatDataSatisfaction.php +%%WWWDIR%%/src/Glpi/Stat/Data/Graph/StatDataSatisfactionSurvey.php +%%WWWDIR%%/src/Glpi/Stat/Data/Graph/StatDataTicketAverageTime.php +%%WWWDIR%%/src/Glpi/Stat/Data/Graph/StatDataTicketNumber.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataClosed.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataLate.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataLocation.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataOpenSatisfaction.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataOpened.php +%%WWWDIR%%/src/Glpi/Stat/Data/Location/StatDataSolved.php +%%WWWDIR%%/src/Glpi/Stat/Data/Sglobal/StatDataAverageSatisfaction.php +%%WWWDIR%%/src/Glpi/Stat/Data/Sglobal/StatDataSatisfaction.php +%%WWWDIR%%/src/Glpi/Stat/Data/Sglobal/StatDataTicketAverageTime.php +%%WWWDIR%%/src/Glpi/Stat/Data/Sglobal/StatDataTicketNumber.php +%%WWWDIR%%/src/Glpi/Stat/StatData.php +%%WWWDIR%%/src/Glpi/Stat/StatDataAlwaysDisplay.php +%%WWWDIR%%/src/Glpi/System/Diagnostic/AbstractDatabaseChecker.php +%%WWWDIR%%/src/Glpi/System/Diagnostic/DatabaseKeysChecker.php +%%WWWDIR%%/src/Glpi/System/Diagnostic/DatabaseSchemaConsistencyChecker.php +%%WWWDIR%%/src/Glpi/System/Diagnostic/DatabaseSchemaIntegrityChecker.php +%%WWWDIR%%/src/Glpi/System/Diagnostic/SourceCodeIntegrityChecker.php +%%WWWDIR%%/src/Glpi/System/Log/LogParser.php +%%WWWDIR%%/src/Glpi/System/Log/LogViewer.php +%%WWWDIR%%/src/Glpi/System/Requirement/AbstractRequirement.php +%%WWWDIR%%/src/Glpi/System/Requirement/DatabaseTablesEngine.php +%%WWWDIR%%/src/Glpi/System/Requirement/DbConfiguration.php +%%WWWDIR%%/src/Glpi/System/Requirement/DbEngine.php +%%WWWDIR%%/src/Glpi/System/Requirement/DbTimezones.php +%%WWWDIR%%/src/Glpi/System/Requirement/DirectoriesWriteAccess.php +%%WWWDIR%%/src/Glpi/System/Requirement/DirectoryWriteAccess.php +%%WWWDIR%%/src/Glpi/System/Requirement/Extension.php +%%WWWDIR%%/src/Glpi/System/Requirement/ExtensionClass.php +%%WWWDIR%%/src/Glpi/System/Requirement/ExtensionConstant.php +%%WWWDIR%%/src/Glpi/System/Requirement/ExtensionFunction.php +%%WWWDIR%%/src/Glpi/System/Requirement/ExtensionGroup.php +%%WWWDIR%%/src/Glpi/System/Requirement/IntegerSize.php +%%WWWDIR%%/src/Glpi/System/Requirement/LogsWriteAccess.php +%%WWWDIR%%/src/Glpi/System/Requirement/MemoryLimit.php +%%WWWDIR%%/src/Glpi/System/Requirement/PhpSupportedVersion.php +%%WWWDIR%%/src/Glpi/System/Requirement/PhpVersion.php +%%WWWDIR%%/src/Glpi/System/Requirement/RequirementInterface.php +%%WWWDIR%%/src/Glpi/System/Requirement/SeLinux.php +%%WWWDIR%%/src/Glpi/System/Requirement/SessionsConfiguration.php +%%WWWDIR%%/src/Glpi/System/Requirement/SessionsSecurityConfiguration.php +%%WWWDIR%%/src/Glpi/System/RequirementsList.php +%%WWWDIR%%/src/Glpi/System/RequirementsManager.php +%%WWWDIR%%/src/Glpi/System/Status/StatusChecker.php +%%WWWDIR%%/src/Glpi/System/Variables.php +%%WWWDIR%%/src/Glpi/Team/Team.php +%%WWWDIR%%/src/Glpi/Toolbox/ArrayNormalizer.php +%%WWWDIR%%/src/Glpi/Toolbox/ArrayPathAccessor.php +%%WWWDIR%%/src/Glpi/Toolbox/DataExport.php +%%WWWDIR%%/src/Glpi/Toolbox/DatabaseSchema.php +%%WWWDIR%%/src/Glpi/Toolbox/Filesystem.php +%%WWWDIR%%/src/Glpi/Toolbox/FrontEnd.php +%%WWWDIR%%/src/Glpi/Toolbox/MapperInterface.php +%%WWWDIR%%/src/Glpi/Toolbox/MarkdownBuilder.php +%%WWWDIR%%/src/Glpi/Toolbox/MarkdownRenderer.php +%%WWWDIR%%/src/Glpi/Toolbox/Sanitizer.php +%%WWWDIR%%/src/Glpi/Toolbox/SingletonTrait.php +%%WWWDIR%%/src/Glpi/Toolbox/URL.php +%%WWWDIR%%/src/Glpi/Toolbox/UuidStore.php +%%WWWDIR%%/src/Glpi/Toolbox/VersionParser.php +%%WWWDIR%%/src/Glpi/UI/IllustrationManager.php +%%WWWDIR%%/src/Glpi/UI/Theme.php +%%WWWDIR%%/src/Glpi/UI/ThemeManager.php +%%WWWDIR%%/src/Glpi/Urgency.php %%WWWDIR%%/src/Group.php +%%WWWDIR%%/src/Group_Item.php %%WWWDIR%%/src/Group_KnowbaseItem.php %%WWWDIR%%/src/Group_Problem.php %%WWWDIR%%/src/Group_RSSFeed.php %%WWWDIR%%/src/Group_Reminder.php %%WWWDIR%%/src/Group_Ticket.php %%WWWDIR%%/src/Group_User.php +%%WWWDIR%%/src/HTMLCompositeTableInterface.php %%WWWDIR%%/src/HTMLTableBase.php %%WWWDIR%%/src/HTMLTableCell.php %%WWWDIR%%/src/HTMLTableCellFatherCoherentHeader.php @@ -3051,9 +3514,6 @@ %%WWWDIR%%/src/HTMLTableUnknownHeadersOrder.php %%WWWDIR%%/src/Holiday.php %%WWWDIR%%/src/Html.php -%%WWWDIR%%/src/Http/Firewall.php -%%WWWDIR%%/src/Http/ProxyRouter.php -%%WWWDIR%%/src/Http/Response.php %%WWWDIR%%/src/IPAddress.php %%WWWDIR%%/src/IPAddress_IPNetwork.php %%WWWDIR%%/src/IPNetmask.php @@ -3062,12 +3522,18 @@ %%WWWDIR%%/src/ITILCategory.php %%WWWDIR%%/src/ITILFollowup.php %%WWWDIR%%/src/ITILFollowupTemplate.php +%%WWWDIR%%/src/ITILReminder.php %%WWWDIR%%/src/ITILSolution.php +%%WWWDIR%%/src/ITILSubItemRights.php %%WWWDIR%%/src/ITILTemplate.php %%WWWDIR%%/src/ITILTemplateField.php %%WWWDIR%%/src/ITILTemplateHiddenField.php %%WWWDIR%%/src/ITILTemplateMandatoryField.php %%WWWDIR%%/src/ITILTemplatePredefinedField.php +%%WWWDIR%%/src/ITILTemplateReadonlyField.php +%%WWWDIR%%/src/ITILValidationTemplate.php +%%WWWDIR%%/src/ITILValidationTemplate_Target.php +%%WWWDIR%%/src/ITIL_ValidationStep.php %%WWWDIR%%/src/ImageFormat.php %%WWWDIR%%/src/ImageResolution.php %%WWWDIR%%/src/Impact.php @@ -3077,44 +3543,8 @@ %%WWWDIR%%/src/ImpactRelation.php %%WWWDIR%%/src/Infocom.php %%WWWDIR%%/src/InterfaceType.php -%%WWWDIR%%/src/Inventory/Asset/Antivirus.php -%%WWWDIR%%/src/Inventory/Asset/Battery.php -%%WWWDIR%%/src/Inventory/Asset/Bios.php -%%WWWDIR%%/src/Inventory/Asset/Camera.php -%%WWWDIR%%/src/Inventory/Asset/Cartridge.php -%%WWWDIR%%/src/Inventory/Asset/Computer.php -%%WWWDIR%%/src/Inventory/Asset/Controller.php -%%WWWDIR%%/src/Inventory/Asset/DatabaseInstance.php -%%WWWDIR%%/src/Inventory/Asset/Device.php -%%WWWDIR%%/src/Inventory/Asset/Drive.php -%%WWWDIR%%/src/Inventory/Asset/Firmware.php -%%WWWDIR%%/src/Inventory/Asset/GraphicCard.php -%%WWWDIR%%/src/Inventory/Asset/HardDrive.php -%%WWWDIR%%/src/Inventory/Asset/InventoryAsset.php -%%WWWDIR%%/src/Inventory/Asset/InventoryNetworkPort.php -%%WWWDIR%%/src/Inventory/Asset/MainAsset.php -%%WWWDIR%%/src/Inventory/Asset/Memory.php -%%WWWDIR%%/src/Inventory/Asset/Monitor.php -%%WWWDIR%%/src/Inventory/Asset/NetworkCard.php -%%WWWDIR%%/src/Inventory/Asset/NetworkEquipment.php -%%WWWDIR%%/src/Inventory/Asset/NetworkPort.php -%%WWWDIR%%/src/Inventory/Asset/OperatingSystem.php -%%WWWDIR%%/src/Inventory/Asset/Peripheral.php -%%WWWDIR%%/src/Inventory/Asset/Phone.php -%%WWWDIR%%/src/Inventory/Asset/PowerSupply.php -%%WWWDIR%%/src/Inventory/Asset/Printer.php -%%WWWDIR%%/src/Inventory/Asset/Processor.php -%%WWWDIR%%/src/Inventory/Asset/RemoteManagement.php -%%WWWDIR%%/src/Inventory/Asset/Sensor.php -%%WWWDIR%%/src/Inventory/Asset/Simcard.php -%%WWWDIR%%/src/Inventory/Asset/Software.php -%%WWWDIR%%/src/Inventory/Asset/SoundCard.php -%%WWWDIR%%/src/Inventory/Asset/Unmanaged.php -%%WWWDIR%%/src/Inventory/Asset/VirtualMachine.php -%%WWWDIR%%/src/Inventory/Asset/Volume.php -%%WWWDIR%%/src/Inventory/Conf.php -%%WWWDIR%%/src/Inventory/Inventory.php -%%WWWDIR%%/src/Inventory/Request.php +%%WWWDIR%%/src/ItemAntivirus.php +%%WWWDIR%%/src/ItemVirtualMachine.php %%WWWDIR%%/src/Item_Cluster.php %%WWWDIR%%/src/Item_DeviceBattery.php %%WWWDIR%%/src/Item_DeviceCamera.php @@ -3139,15 +3569,20 @@ %%WWWDIR%%/src/Item_Devices.php %%WWWDIR%%/src/Item_Disk.php %%WWWDIR%%/src/Item_Enclosure.php +%%WWWDIR%%/src/Item_Environment.php %%WWWDIR%%/src/Item_Kanban.php +%%WWWDIR%%/src/Item_Line.php %%WWWDIR%%/src/Item_OperatingSystem.php +%%WWWDIR%%/src/Item_Plug.php %%WWWDIR%%/src/Item_Problem.php +%%WWWDIR%%/src/Item_Process.php %%WWWDIR%%/src/Item_Project.php %%WWWDIR%%/src/Item_Rack.php %%WWWDIR%%/src/Item_RemoteManagement.php %%WWWDIR%%/src/Item_SoftwareLicense.php %%WWWDIR%%/src/Item_SoftwareVersion.php %%WWWDIR%%/src/Item_Ticket.php +%%WWWDIR%%/src/Item_TicketRecurrent.php %%WWWDIR%%/src/Itil_Project.php %%WWWDIR%%/src/Knowbase.php %%WWWDIR%%/src/KnowbaseItem.php @@ -3170,31 +3605,20 @@ %%WWWDIR%%/src/Lock.php %%WWWDIR%%/src/Lockedfield.php %%WWWDIR%%/src/Log.php -%%WWWDIR%%/src/Mail/Protocol/ProtocolInterface.php -%%WWWDIR%%/src/Mail/SMTP/OAuthTokenProvider.php -%%WWWDIR%%/src/Mail/SMTP/OauthConfig.php -%%WWWDIR%%/src/Mail/SMTP/OauthProvider/Azure.php -%%WWWDIR%%/src/Mail/SMTP/OauthProvider/Google.php -%%WWWDIR%%/src/Mail/SMTP/OauthProvider/ProviderInterface.php %%WWWDIR%%/src/MailCollector.php %%WWWDIR%%/src/ManualLink.php %%WWWDIR%%/src/Manufacturer.php %%WWWDIR%%/src/MapGeolocation.php -%%WWWDIR%%/src/Marketplace/Api/Plugins.php -%%WWWDIR%%/src/Marketplace/Controller.php -%%WWWDIR%%/src/Marketplace/NotificationTargetController.php -%%WWWDIR%%/src/Marketplace/View.php %%WWWDIR%%/src/MassiveAction.php %%WWWDIR%%/src/Migration.php -%%WWWDIR%%/src/MigrationCleaner.php %%WWWDIR%%/src/Monitor.php %%WWWDIR%%/src/MonitorModel.php %%WWWDIR%%/src/MonitorType.php -%%WWWDIR%%/src/Netpoint.php %%WWWDIR%%/src/Network.php %%WWWDIR%%/src/NetworkAlias.php %%WWWDIR%%/src/NetworkEquipment.php %%WWWDIR%%/src/NetworkEquipmentModel.php +%%WWWDIR%%/src/NetworkEquipmentModelStencil.php %%WWWDIR%%/src/NetworkEquipmentType.php %%WWWDIR%%/src/NetworkInterface.php %%WWWDIR%%/src/NetworkName.php @@ -3209,7 +3633,6 @@ %%WWWDIR%%/src/NetworkPortInstantiation.php %%WWWDIR%%/src/NetworkPortLocal.php %%WWWDIR%%/src/NetworkPortMetrics.php -%%WWWDIR%%/src/NetworkPortMigration.php %%WWWDIR%%/src/NetworkPortType.php %%WWWDIR%%/src/NetworkPortWifi.php %%WWWDIR%%/src/NetworkPort_NetworkPort.php @@ -3241,6 +3664,7 @@ %%WWWDIR%%/src/NotificationTargetDomain.php %%WWWDIR%%/src/NotificationTargetFieldUnicity.php %%WWWDIR%%/src/NotificationTargetInfocom.php +%%WWWDIR%%/src/NotificationTargetKnowbaseItem.php %%WWWDIR%%/src/NotificationTargetMailCollector.php %%WWWDIR%%/src/NotificationTargetObjectLock.php %%WWWDIR%%/src/NotificationTargetPlanningRecall.php @@ -3255,6 +3679,7 @@ %%WWWDIR%%/src/NotificationTemplate.php %%WWWDIR%%/src/NotificationTemplateTranslation.php %%WWWDIR%%/src/Notification_NotificationTemplate.php +%%WWWDIR%%/src/OAuthClient.php %%WWWDIR%%/src/OLA.php %%WWWDIR%%/src/ObjectLock.php %%WWWDIR%%/src/OlaLevel.php @@ -3276,6 +3701,7 @@ %%WWWDIR%%/src/PassiveDCEquipment.php %%WWWDIR%%/src/PassiveDCEquipmentModel.php %%WWWDIR%%/src/PassiveDCEquipmentType.php +%%WWWDIR%%/src/PasswordHistory.php %%WWWDIR%%/src/Pdu_Plug.php %%WWWDIR%%/src/PendingReason.php %%WWWDIR%%/src/PendingReasonCron.php @@ -3294,8 +3720,6 @@ %%WWWDIR%%/src/PlanningRecall.php %%WWWDIR%%/src/Plug.php %%WWWDIR%%/src/Plugin.php -%%WWWDIR%%/src/Plugin/HookManager.php -%%WWWDIR%%/src/Plugin/Hooks.php %%WWWDIR%%/src/Preference.php %%WWWDIR%%/src/Printer.php %%WWWDIR%%/src/PrinterLog.php @@ -3309,6 +3733,8 @@ %%WWWDIR%%/src/ProblemTemplateHiddenField.php %%WWWDIR%%/src/ProblemTemplateMandatoryField.php %%WWWDIR%%/src/ProblemTemplatePredefinedField.php +%%WWWDIR%%/src/ProblemTemplateReadonlyField.php +%%WWWDIR%%/src/Problem_Problem.php %%WWWDIR%%/src/Problem_Supplier.php %%WWWDIR%%/src/Problem_Ticket.php %%WWWDIR%%/src/Problem_User.php @@ -3323,17 +3749,20 @@ %%WWWDIR%%/src/ProjectTask.php %%WWWDIR%%/src/ProjectTaskLink.php %%WWWDIR%%/src/ProjectTaskTeam.php +%%WWWDIR%%/src/ProjectTaskTeamDropdown.php %%WWWDIR%%/src/ProjectTaskTemplate.php %%WWWDIR%%/src/ProjectTaskType.php %%WWWDIR%%/src/ProjectTask_Ticket.php %%WWWDIR%%/src/ProjectTeam.php %%WWWDIR%%/src/ProjectType.php %%WWWDIR%%/src/PurgeLogs.php +%%WWWDIR%%/src/PurgeSoftwareTask.php %%WWWDIR%%/src/QueryExpression.php %%WWWDIR%%/src/QueryParam.php %%WWWDIR%%/src/QuerySubQuery.php %%WWWDIR%%/src/QueryUnion.php %%WWWDIR%%/src/QueuedNotification.php +%%WWWDIR%%/src/QueuedWebhook.php %%WWWDIR%%/src/RSSFeed.php %%WWWDIR%%/src/RSSFeed_User.php %%WWWDIR%%/src/Rack.php @@ -3349,14 +3778,18 @@ %%WWWDIR%%/src/RequestType.php %%WWWDIR%%/src/Reservation.php %%WWWDIR%%/src/ReservationItem.php -%%WWWDIR%%/src/RichText/RichText.php -%%WWWDIR%%/src/RichText/UserMention.php %%WWWDIR%%/src/Rule.php %%WWWDIR%%/src/RuleAction.php %%WWWDIR%%/src/RuleAsset.php %%WWWDIR%%/src/RuleAssetCollection.php +%%WWWDIR%%/src/RuleChange.php +%%WWWDIR%%/src/RuleChangeCollection.php %%WWWDIR%%/src/RuleCollection.php +%%WWWDIR%%/src/RuleCommonITILObject.php +%%WWWDIR%%/src/RuleCommonITILObjectCollection.php %%WWWDIR%%/src/RuleCriteria.php +%%WWWDIR%%/src/RuleDefineItemtype.php +%%WWWDIR%%/src/RuleDefineItemtypeCollection.php %%WWWDIR%%/src/RuleDictionnaryComputerModel.php %%WWWDIR%%/src/RuleDictionnaryComputerModelCollection.php %%WWWDIR%%/src/RuleDictionnaryComputerType.php @@ -3401,8 +3834,6 @@ %%WWWDIR%%/src/RuleDictionnarySoftwareCollection.php %%WWWDIR%%/src/RuleImportAsset.php %%WWWDIR%%/src/RuleImportAssetCollection.php -%%WWWDIR%%/src/RuleImportComputer.php -%%WWWDIR%%/src/RuleImportComputerCollection.php %%WWWDIR%%/src/RuleImportEntity.php %%WWWDIR%%/src/RuleImportEntityCollection.php %%WWWDIR%%/src/RuleLocation.php @@ -3410,6 +3841,8 @@ %%WWWDIR%%/src/RuleMailCollector.php %%WWWDIR%%/src/RuleMailCollectorCollection.php %%WWWDIR%%/src/RuleMatchedLog.php +%%WWWDIR%%/src/RuleProblem.php +%%WWWDIR%%/src/RuleProblemCollection.php %%WWWDIR%%/src/RuleRight.php %%WWWDIR%%/src/RuleRightCollection.php %%WWWDIR%%/src/RuleRightParameter.php @@ -3417,7 +3850,6 @@ %%WWWDIR%%/src/RuleSoftwareCategoryCollection.php %%WWWDIR%%/src/RuleTicket.php %%WWWDIR%%/src/RuleTicketCollection.php -%%WWWDIR%%/src/Rules/RulesManager.php %%WWWDIR%%/src/SLA.php %%WWWDIR%%/src/SLM.php %%WWWDIR%%/src/SNMPCredential.php @@ -3432,73 +3864,23 @@ %%WWWDIR%%/src/SlaLevelAction.php %%WWWDIR%%/src/SlaLevelCriteria.php %%WWWDIR%%/src/SlaLevel_Ticket.php -%%WWWDIR%%/src/Socket.php -%%WWWDIR%%/src/SocketModel.php %%WWWDIR%%/src/Software.php %%WWWDIR%%/src/SoftwareCategory.php %%WWWDIR%%/src/SoftwareLicense.php %%WWWDIR%%/src/SoftwareLicenseType.php +%%WWWDIR%%/src/SoftwareLicense_User.php %%WWWDIR%%/src/SoftwareVersion.php %%WWWDIR%%/src/SolutionTemplate.php %%WWWDIR%%/src/SolutionType.php %%WWWDIR%%/src/SsoVariable.php %%WWWDIR%%/src/Stat.php -%%WWWDIR%%/src/Stat/Data/Graph/StatDataSatisfaction.php -%%WWWDIR%%/src/Stat/Data/Graph/StatDataSatisfactionSurvey.php -%%WWWDIR%%/src/Stat/Data/Graph/StatDataTicketAverageTime.php -%%WWWDIR%%/src/Stat/Data/Graph/StatDataTicketNumber.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataClosed.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataLate.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataLocation.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataOpenSatisfaction.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataOpened.php -%%WWWDIR%%/src/Stat/Data/Location/StatDataSolved.php -%%WWWDIR%%/src/Stat/Data/Sglobal/StatDataAverageSatisfaction.php -%%WWWDIR%%/src/Stat/Data/Sglobal/StatDataSatisfaction.php -%%WWWDIR%%/src/Stat/Data/Sglobal/StatDataTicketAverageTime.php -%%WWWDIR%%/src/Stat/Data/Sglobal/StatDataTicketNumber.php -%%WWWDIR%%/src/Stat/StatData.php -%%WWWDIR%%/src/Stat/StatDataAlwaysDisplay.php %%WWWDIR%%/src/State.php +%%WWWDIR%%/src/Stencil.php %%WWWDIR%%/src/Supplier.php %%WWWDIR%%/src/SupplierType.php %%WWWDIR%%/src/Supplier_Ticket.php -%%WWWDIR%%/src/System/Diagnostic/AbstractDatabaseChecker.php -%%WWWDIR%%/src/System/Diagnostic/DatabaseKeysChecker.php -%%WWWDIR%%/src/System/Diagnostic/DatabaseSchemaConsistencyChecker.php -%%WWWDIR%%/src/System/Diagnostic/DatabaseSchemaIntegrityChecker.php -%%WWWDIR%%/src/System/Requirement/AbstractRequirement.php -%%WWWDIR%%/src/System/Requirement/DataDirectoriesProtectedPath.php -%%WWWDIR%%/src/System/Requirement/DbConfiguration.php -%%WWWDIR%%/src/System/Requirement/DbEngine.php -%%WWWDIR%%/src/System/Requirement/DbTimezones.php -%%WWWDIR%%/src/System/Requirement/DirectoriesWriteAccess.php -%%WWWDIR%%/src/System/Requirement/DirectoryWriteAccess.php -%%WWWDIR%%/src/System/Requirement/Extension.php -%%WWWDIR%%/src/System/Requirement/ExtensionClass.php -%%WWWDIR%%/src/System/Requirement/ExtensionConstant.php -%%WWWDIR%%/src/System/Requirement/ExtensionFunction.php -%%WWWDIR%%/src/System/Requirement/ExtensionGroup.php -%%WWWDIR%%/src/System/Requirement/InstallationNotOverriden.php -%%WWWDIR%%/src/System/Requirement/IntegerSize.php -%%WWWDIR%%/src/System/Requirement/LogsWriteAccess.php -%%WWWDIR%%/src/System/Requirement/MemoryLimit.php -%%WWWDIR%%/src/System/Requirement/MysqliMysqlnd.php -%%WWWDIR%%/src/System/Requirement/PhpSupportedVersion.php -%%WWWDIR%%/src/System/Requirement/PhpVersion.php -%%WWWDIR%%/src/System/Requirement/ProtectedWebAccess.php -%%WWWDIR%%/src/System/Requirement/RequirementInterface.php -%%WWWDIR%%/src/System/Requirement/SafeDocumentRoot.php -%%WWWDIR%%/src/System/Requirement/SeLinux.php -%%WWWDIR%%/src/System/Requirement/SessionsConfiguration.php -%%WWWDIR%%/src/System/Requirement/SessionsSecurityConfiguration.php -%%WWWDIR%%/src/System/RequirementsList.php -%%WWWDIR%%/src/System/RequirementsManager.php -%%WWWDIR%%/src/System/Status/StatusChecker.php -%%WWWDIR%%/src/System/Variables.php %%WWWDIR%%/src/TaskCategory.php %%WWWDIR%%/src/TaskTemplate.php -%%WWWDIR%%/src/Team/Team.php %%WWWDIR%%/src/Telemetry.php %%WWWDIR%%/src/Ticket.php %%WWWDIR%%/src/TicketCost.php @@ -3509,21 +3891,14 @@ %%WWWDIR%%/src/TicketTemplateHiddenField.php %%WWWDIR%%/src/TicketTemplateMandatoryField.php %%WWWDIR%%/src/TicketTemplatePredefinedField.php +%%WWWDIR%%/src/TicketTemplateReadonlyField.php %%WWWDIR%%/src/TicketValidation.php +%%WWWDIR%%/src/TicketValidationStep.php %%WWWDIR%%/src/Ticket_Contract.php %%WWWDIR%%/src/Ticket_Ticket.php %%WWWDIR%%/src/Ticket_User.php %%WWWDIR%%/src/Timer.php %%WWWDIR%%/src/Toolbox.php -%%WWWDIR%%/src/Toolbox/ArrayNormalizer.php -%%WWWDIR%%/src/Toolbox/DataExport.php -%%WWWDIR%%/src/Toolbox/DatabaseSchema.php -%%WWWDIR%%/src/Toolbox/Filesystem.php -%%WWWDIR%%/src/Toolbox/FrontEnd.php -%%WWWDIR%%/src/Toolbox/MarkdownBuilder.php -%%WWWDIR%%/src/Toolbox/Sanitizer.php -%%WWWDIR%%/src/Toolbox/URL.php -%%WWWDIR%%/src/Toolbox/VersionParser.php %%WWWDIR%%/src/Transfer.php %%WWWDIR%%/src/USBVendor.php %%WWWDIR%%/src/Unmanaged.php @@ -3534,43 +3909,76 @@ %%WWWDIR%%/src/UserEmail.php %%WWWDIR%%/src/UserTitle.php %%WWWDIR%%/src/VObject.php +%%WWWDIR%%/src/ValidationStep.php +%%WWWDIR%%/src/ValidatorSubstitute.php %%WWWDIR%%/src/VirtualMachineState.php %%WWWDIR%%/src/VirtualMachineSystem.php %%WWWDIR%%/src/VirtualMachineType.php %%WWWDIR%%/src/Vlan.php +%%WWWDIR%%/src/Webhook.php +%%WWWDIR%%/src/WebhookCategory.php %%WWWDIR%%/src/WifiNetwork.php %%WWWDIR%%/src/XHProf.php -%%WWWDIR%%/src/XML.php -%%WWWDIR%%/status.php -%%WWWDIR%%/templates/anonymous_helpdesk.html.twig +%%WWWDIR%%/src/autoload/CFG_GLPI.php +%%WWWDIR%%/src/autoload/constants.php +%%WWWDIR%%/src/autoload/dbutils-aliases.php +%%WWWDIR%%/src/autoload/i18n.php +%%WWWDIR%%/src/autoload/legacy-autoloader.php +%%WWWDIR%%/src/autoload/misc-functions.php +%%WWWDIR%%/templates/central/embed_dashboard.html.twig %%WWWDIR%%/templates/central/lists/itemtype_count.html.twig +%%WWWDIR%%/templates/central/lists/table.html.twig %%WWWDIR%%/templates/central/messages.html.twig %%WWWDIR%%/templates/central/widget_tab.html.twig +%%WWWDIR%%/templates/components/add_visibility_target.html.twig %%WWWDIR%%/templates/components/alerts_macros.html.twig +%%WWWDIR%%/templates/components/altcha/widget.html.twig +%%WWWDIR%%/templates/components/assets/link_existing_or_new_item_device.html.twig %%WWWDIR%%/templates/components/checkbox_matrix.html.twig +%%WWWDIR%%/templates/components/danger_modal.html.twig %%WWWDIR%%/templates/components/dashboard/widget_form.html.twig +%%WWWDIR%%/templates/components/datatable.html.twig %%WWWDIR%%/templates/components/dates_timeline.html.twig %%WWWDIR%%/templates/components/debug/debug_toolbar.html.twig +%%WWWDIR%%/templates/components/dropdown/comments.html.twig %%WWWDIR%%/templates/components/dropdown/limit.html.twig +%%WWWDIR%%/templates/components/form/basic_inputs_macros.html.twig %%WWWDIR%%/templates/components/form/buttons.html.twig -%%WWWDIR%%/templates/components/form/computerantivirus.html.twig -%%WWWDIR%%/templates/components/form/computervirtualmachine.html.twig %%WWWDIR%%/templates/components/form/dates.html.twig %%WWWDIR%%/templates/components/form/fields_macros.html.twig %%WWWDIR%%/templates/components/form/flags.html.twig %%WWWDIR%%/templates/components/form/header.html.twig %%WWWDIR%%/templates/components/form/header_content.html.twig %%WWWDIR%%/templates/components/form/inventory_info.html.twig +%%WWWDIR%%/templates/components/form/item_antivirus.html.twig %%WWWDIR%%/templates/components/form/item_device.html.twig %%WWWDIR%%/templates/components/form/item_disk.html.twig +%%WWWDIR%%/templates/components/form/item_itilobject_group.html.twig +%%WWWDIR%%/templates/components/form/item_itilobject_item_list.html.twig +%%WWWDIR%%/templates/components/form/item_remotemanagement_form.html.twig +%%WWWDIR%%/templates/components/form/item_remotemanagement_list.html.twig +%%WWWDIR%%/templates/components/form/itemvirtualmachine.html.twig %%WWWDIR%%/templates/components/form/link_existing_or_new.html.twig %%WWWDIR%%/templates/components/form/modals_macros.html.twig %%WWWDIR%%/templates/components/form/networkname.html.twig +%%WWWDIR%%/templates/components/form/pending_reason_is_default.html.twig %%WWWDIR%%/templates/components/form/pictures.html.twig +%%WWWDIR%%/templates/components/form/reservation.html.twig +%%WWWDIR%%/templates/components/form/reservationitem_comment.html.twig +%%WWWDIR%%/templates/components/form/rulematchedlogs.html.twig %%WWWDIR%%/templates/components/form/single-action.html.twig %%WWWDIR%%/templates/components/form/snmpcredential.html.twig %%WWWDIR%%/templates/components/form/support_hours.html.twig +%%WWWDIR%%/templates/components/form/viewsubitem.html.twig %%WWWDIR%%/templates/components/group/info_card.html.twig +%%WWWDIR%%/templates/components/helpdesk_forms/delegation_alert.html.twig +%%WWWDIR%%/templates/components/helpdesk_forms/service_catalog_item.html.twig +%%WWWDIR%%/templates/components/helpdesk_forms/service_catalog_items.html.twig +%%WWWDIR%%/templates/components/helpdesk_forms/service_catalog_nested_item.html.twig +%%WWWDIR%%/templates/components/illustration/custom_icon.html.twig +%%WWWDIR%%/templates/components/illustration/icon.svg.twig +%%WWWDIR%%/templates/components/illustration/icon_picker_modal.html.twig +%%WWWDIR%%/templates/components/illustration/icon_picker_search_results.html.twig %%WWWDIR%%/templates/components/infocom.html.twig %%WWWDIR%%/templates/components/itilobject/actors/assign_to_me.html.twig %%WWWDIR%%/templates/components/itilobject/actors/field.html.twig @@ -3582,20 +3990,25 @@ %%WWWDIR%%/templates/components/itilobject/fields/status.html.twig %%WWWDIR%%/templates/components/itilobject/fields_panel.html.twig %%WWWDIR%%/templates/components/itilobject/footer.html.twig +%%WWWDIR%%/templates/components/itilobject/itilsatisfaction.html.twig +%%WWWDIR%%/templates/components/itilobject/itiltemplate.html.twig %%WWWDIR%%/templates/components/itilobject/layout.html.twig -%%WWWDIR%%/templates/components/itilobject/linked_tickets.html.twig +%%WWWDIR%%/templates/components/itilobject/linked_itilobjects.html.twig %%WWWDIR%%/templates/components/itilobject/mainform_close.html.twig %%WWWDIR%%/templates/components/itilobject/mainform_open.html.twig -%%WWWDIR%%/templates/components/itilobject/selfservice.html.twig %%WWWDIR%%/templates/components/itilobject/service_levels.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/approbation_form.html.twig +%%WWWDIR%%/templates/components/itilobject/timeline/document/document_list_item.html.twig +%%WWWDIR%%/templates/components/itilobject/timeline/document/post_figure_content.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/filter_timeline.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_document_item.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_followup.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_solution.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_task.html.twig +%%WWWDIR%%/templates/components/itilobject/timeline/form_task_main_form.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_timeline_item.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/form_validation.html.twig +%%WWWDIR%%/templates/components/itilobject/timeline/knowledge_item.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/main_description.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/new_form.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/pending_reasons.html.twig @@ -3606,34 +4019,62 @@ %%WWWDIR%%/templates/components/itilobject/timeline/timeline_item_header.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/timeline_item_header_badges.html.twig %%WWWDIR%%/templates/components/itilobject/timeline/todo-list-summary.html.twig +%%WWWDIR%%/templates/components/itilobject/validation.html.twig +%%WWWDIR%%/templates/components/itilobject/validationstep.html.twig %%WWWDIR%%/templates/components/kanban/item_panels/default_panel.html.twig %%WWWDIR%%/templates/components/kanban/kanban.html.twig %%WWWDIR%%/templates/components/kanban/teammember.html.twig %%WWWDIR%%/templates/components/logs.html.twig %%WWWDIR%%/templates/components/masonry_grid.html.twig +%%WWWDIR%%/templates/components/massive_action/add_task.html.twig %%WWWDIR%%/templates/components/messages_after_redirect_alerts.html.twig %%WWWDIR%%/templates/components/messages_after_redirect_toasts.html.twig %%WWWDIR%%/templates/components/modal.html.twig +%%WWWDIR%%/templates/components/notepad/form.html.twig %%WWWDIR%%/templates/components/pager.html.twig %%WWWDIR%%/templates/components/photoswipe.html.twig -%%WWWDIR%%/templates/components/plugin_uninstall_modal.html.twig +%%WWWDIR%%/templates/components/plugin_update_modal.html.twig +%%WWWDIR%%/templates/components/printer_graph_buttons.html.twig %%WWWDIR%%/templates/components/rss_feed.html.twig %%WWWDIR%%/templates/components/search/controls.html.twig +%%WWWDIR%%/templates/components/search/criteria_filter.html.twig +%%WWWDIR%%/templates/components/search/criteria_filter_actions.html.twig %%WWWDIR%%/templates/components/search/display_data.html.twig +%%WWWDIR%%/templates/components/search/displaypreference_config.html.twig +%%WWWDIR%%/templates/components/search/displaypreference_list.html.twig +%%WWWDIR%%/templates/components/search/displaypreference_modal.html.twig +%%WWWDIR%%/templates/components/search/map.html.twig +%%WWWDIR%%/templates/components/search/query_builder/criteria.html.twig +%%WWWDIR%%/templates/components/search/query_builder/criteria_group.html.twig +%%WWWDIR%%/templates/components/search/query_builder/main.html.twig +%%WWWDIR%%/templates/components/search/query_builder/metacriteria.html.twig +%%WWWDIR%%/templates/components/search/query_builder/search_option.html.twig +%%WWWDIR%%/templates/components/search/query_builder/search_option_value.html.twig +%%WWWDIR%%/templates/components/search/query_builder/sort/criteria.html.twig +%%WWWDIR%%/templates/components/search/query_builder/sort/main.html.twig +%%WWWDIR%%/templates/components/search/status_area.html.twig %%WWWDIR%%/templates/components/search/table.html.twig %%WWWDIR%%/templates/components/supplier/info_card.html.twig %%WWWDIR%%/templates/components/table.html.twig +%%WWWDIR%%/templates/components/user/create_user.html.twig %%WWWDIR%%/templates/components/user/info_card.html.twig %%WWWDIR%%/templates/components/user/link_with_tooltip.html.twig +%%WWWDIR%%/templates/components/user/password_security_checks.html.twig %%WWWDIR%%/templates/components/user/picture.html.twig -%%WWWDIR%%/templates/display_and_die.html.twig %%WWWDIR%%/templates/dropdown_form.html.twig +%%WWWDIR%%/templates/error_block.html.twig +%%WWWDIR%%/templates/error_page.html.twig +%%WWWDIR%%/templates/forgotpassword.html.twig %%WWWDIR%%/templates/generic_show_form.html.twig %%WWWDIR%%/templates/impact/edit_compound_modal.html.twig +%%WWWDIR%%/templates/impact/edit_edge_modal.html.twig %%WWWDIR%%/templates/impact/ongoing_modal.html.twig %%WWWDIR%%/templates/install/accept_license.html.twig +%%WWWDIR%%/templates/install/agree_unstable.html.twig %%WWWDIR%%/templates/install/blocks/requirements_table.html.twig %%WWWDIR%%/templates/install/choose_language.html.twig +%%WWWDIR%%/templates/install/install.install_required.html.twig +%%WWWDIR%%/templates/install/post_update_step.html.twig %%WWWDIR%%/templates/install/step0.html.twig %%WWWDIR%%/templates/install/step1.html.twig %%WWWDIR%%/templates/install/step2.html.twig @@ -3641,67 +4082,484 @@ %%WWWDIR%%/templates/install/step6.html.twig %%WWWDIR%%/templates/install/step7.html.twig %%WWWDIR%%/templates/install/step8.html.twig -%%WWWDIR%%/templates/install/update.html.twig %%WWWDIR%%/templates/install/update.invalid_database.html.twig +%%WWWDIR%%/templates/install/update.need_update.html.twig %%WWWDIR%%/templates/layout/page_card_notlogged.html.twig +%%WWWDIR%%/templates/layout/page_skeleton.html.twig +%%WWWDIR%%/templates/layout/page_without_tabs.html.twig %%WWWDIR%%/templates/layout/parts/breadcrumbs.html.twig %%WWWDIR%%/templates/layout/parts/context_links.html.twig +%%WWWDIR%%/templates/layout/parts/dcbreadcrumbs.html.twig %%WWWDIR%%/templates/layout/parts/global_search_form.html.twig %%WWWDIR%%/templates/layout/parts/goto_button.html.twig %%WWWDIR%%/templates/layout/parts/head.html.twig %%WWWDIR%%/templates/layout/parts/impersonate_banner.html.twig %%WWWDIR%%/templates/layout/parts/menu.html.twig +%%WWWDIR%%/templates/layout/parts/objectlock_message.html.twig %%WWWDIR%%/templates/layout/parts/page_footer.html.twig %%WWWDIR%%/templates/layout/parts/page_header.html.twig %%WWWDIR%%/templates/layout/parts/page_header_empty.html.twig %%WWWDIR%%/templates/layout/parts/profile_selector.html.twig +%%WWWDIR%%/templates/layout/parts/profile_selector_form.html.twig %%WWWDIR%%/templates/layout/parts/saved_searches.html.twig %%WWWDIR%%/templates/layout/parts/saved_searches_list.html.twig %%WWWDIR%%/templates/layout/parts/user_header.html.twig %%WWWDIR%%/templates/maintenance.html.twig -%%WWWDIR%%/templates/pages/admin/events_list.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_backup_codes.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_config.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_enforced_setup.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_new_secret.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_request.html.twig +%%WWWDIR%%/templates/pages/2fa/2fa_status.html.twig +%%WWWDIR%%/templates/pages/2fa/macros.html.twig +%%WWWDIR%%/templates/pages/admin/add_profile_authorization.html.twig +%%WWWDIR%%/templates/pages/admin/assetdefinition/capacities.html.twig +%%WWWDIR%%/templates/pages/admin/assetdefinition/capacity/is_inventoriable_capacity_configuration_form.html.twig +%%WWWDIR%%/templates/pages/admin/assetdefinition/fields_display.html.twig +%%WWWDIR%%/templates/pages/admin/customobjects/main.html.twig +%%WWWDIR%%/templates/pages/admin/customobjects/plurals.html.twig +%%WWWDIR%%/templates/pages/admin/customobjects/profiles.html.twig +%%WWWDIR%%/templates/pages/admin/customobjects/translations.html.twig +%%WWWDIR%%/templates/pages/admin/entity/address.html.twig +%%WWWDIR%%/templates/pages/admin/entity/advanced.html.twig +%%WWWDIR%%/templates/pages/admin/entity/assets.html.twig +%%WWWDIR%%/templates/pages/admin/entity/assistance.html.twig +%%WWWDIR%%/templates/pages/admin/entity/custom_ui.html.twig +%%WWWDIR%%/templates/pages/admin/entity/notifications.html.twig +%%WWWDIR%%/templates/pages/admin/entity/survey_config.html.twig +%%WWWDIR%%/templates/pages/admin/external_page_tile_config_fields.html.twig +%%WWWDIR%%/templates/pages/admin/form/access_control.html.twig +%%WWWDIR%%/templates/pages/admin/form/access_control/allow_list.html.twig +%%WWWDIR%%/templates/pages/admin/form/access_control/direct_access.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_configuration.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/actor.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/dropdown_multiple.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/input.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/item_dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form/condition_handler_templates/user_devices_dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form/conditional_validation_dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form/conditional_validation_editor.html.twig +%%WWWDIR%%/templates/pages/admin/form/conditional_visibility_dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form/conditional_visibility_editor.html.twig +%%WWWDIR%%/templates/pages/admin/form/destination_visibility_conditions_configuration.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_comment.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_destination.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_destination_actions.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_destination_commonitil_config.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_editor.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_horizontal_block.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_horizontal_block_placeholder.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_horizontal_block_toolbar.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_question.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_section.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_toolbar.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_translation.html.twig +%%WWWDIR%%/templates/pages/admin/form/form_translations.html.twig +%%WWWDIR%%/templates/pages/admin/form/import/step1_index.html.twig +%%WWWDIR%%/templates/pages/admin/form/import/step2_preview.html.twig +%%WWWDIR%%/templates/pages/admin/form/import/step3_resolve_issues.html.twig +%%WWWDIR%%/templates/pages/admin/form/import/step4_execute.html.twig +%%WWWDIR%%/templates/pages/admin/form/item_has_conditions_for_deletion_modal.html.twig +%%WWWDIR%%/templates/pages/admin/form/item_has_conditions_for_new_question_type_modal.html.twig +%%WWWDIR%%/templates/pages/admin/form/item_has_conditions_modal_base.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/associated_items.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/entity.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/itilactor.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/itilcategory.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/itilfollowuptemplate.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/itiltasktemplate.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/linked_itilobjects.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/location.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/request_source.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/request_type.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/slm.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/template.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/urgency.html.twig +%%WWWDIR%%/templates/pages/admin/form/itil_config_fields/validation.html.twig +%%WWWDIR%%/templates/pages/admin/form/move_section_modal.html.twig +%%WWWDIR%%/templates/pages/admin/form/question_type/base_advanced_configuration.html.twig +%%WWWDIR%%/templates/pages/admin/form/question_type/item/administration_template.html.twig +%%WWWDIR%%/templates/pages/admin/form/question_type/item/advanced_configuration.html.twig +%%WWWDIR%%/templates/pages/admin/form/question_type/item/end_user_template.html.twig +%%WWWDIR%%/templates/pages/admin/form/question_type/item_dropdown/advanced_configuration.html.twig +%%WWWDIR%%/templates/pages/admin/form/service_catalog_tab.html.twig +%%WWWDIR%%/templates/pages/admin/form/submit_button_conditional_visibility_dropdown.html.twig +%%WWWDIR%%/templates/pages/admin/form_tile_config_fields.html.twig +%%WWWDIR%%/templates/pages/admin/glpi_page_tile_config_fields.html.twig +%%WWWDIR%%/templates/pages/admin/group.html.twig +%%WWWDIR%%/templates/pages/admin/group_ldap.html.twig +%%WWWDIR%%/templates/pages/admin/group_user.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config_add_tile_form.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config_edit_tile_form.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config_for_empty_entity.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config_for_entity.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_config_tiles.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_translation.html.twig +%%WWWDIR%%/templates/pages/admin/helpdesk_home_translations.html.twig %%WWWDIR%%/templates/pages/admin/inventory/agent.html.twig +%%WWWDIR%%/templates/pages/admin/inventory/conf/index.html.twig %%WWWDIR%%/templates/pages/admin/inventory/lockedfield.html.twig %%WWWDIR%%/templates/pages/admin/inventory/upload_form.html.twig %%WWWDIR%%/templates/pages/admin/inventory/upload_result.html.twig -%%WWWDIR%%/templates/pages/admin/ldap.choose_directory.html.twig +%%WWWDIR%%/templates/pages/admin/ldap.group_criteria.html.twig %%WWWDIR%%/templates/pages/admin/ldap.groups.html.twig +%%WWWDIR%%/templates/pages/admin/ldap.user_criteria.html.twig %%WWWDIR%%/templates/pages/admin/ldap.users.html.twig -%%WWWDIR%%/templates/pages/admin/rules_list.html.twig +%%WWWDIR%%/templates/pages/admin/log_viewer.html.twig +%%WWWDIR%%/templates/pages/admin/logs_list.html.twig +%%WWWDIR%%/templates/pages/admin/plugins/list_suspend_banner.html.twig +%%WWWDIR%%/templates/pages/admin/profile/admin.html.twig +%%WWWDIR%%/templates/pages/admin/profile/assets.html.twig +%%WWWDIR%%/templates/pages/admin/profile/assistance.html.twig +%%WWWDIR%%/templates/pages/admin/profile/assistance_simple.html.twig +%%WWWDIR%%/templates/pages/admin/profile/base_tab.html.twig +%%WWWDIR%%/templates/pages/admin/profile/form.html.twig +%%WWWDIR%%/templates/pages/admin/profile/legend.html.twig +%%WWWDIR%%/templates/pages/admin/profile/lifecycle.html.twig +%%WWWDIR%%/templates/pages/admin/profile/lifecycle_simple.html.twig +%%WWWDIR%%/templates/pages/admin/profile/management.html.twig +%%WWWDIR%%/templates/pages/admin/profile/setup.html.twig +%%WWWDIR%%/templates/pages/admin/profile/setup_simple.html.twig +%%WWWDIR%%/templates/pages/admin/profile/tools.html.twig +%%WWWDIR%%/templates/pages/admin/profile/tools_simple.html.twig +%%WWWDIR%%/templates/pages/admin/rules/action.html.twig +%%WWWDIR%%/templates/pages/admin/rules/backup_header.html.twig +%%WWWDIR%%/templates/pages/admin/rules/collections_list.html.twig +%%WWWDIR%%/templates/pages/admin/rules/criteria.html.twig +%%WWWDIR%%/templates/pages/admin/rules/engine_preview_criteria.html.twig +%%WWWDIR%%/templates/pages/admin/rules/engine_preview_results.html.twig +%%WWWDIR%%/templates/pages/admin/rules/engine_summary.html.twig +%%WWWDIR%%/templates/pages/admin/rules/form.html.twig +%%WWWDIR%%/templates/pages/admin/rules/import.html.twig +%%WWWDIR%%/templates/pages/admin/rules/import_preview.html.twig +%%WWWDIR%%/templates/pages/admin/rules/index.html.twig +%%WWWDIR%%/templates/pages/admin/rules/preview_criteria.html.twig +%%WWWDIR%%/templates/pages/admin/rules/ruleright_form.html.twig +%%WWWDIR%%/templates/pages/admin/transfer.html.twig +%%WWWDIR%%/templates/pages/admin/transfer_list.html.twig +%%WWWDIR%%/templates/pages/admin/user.substitute.html.twig +%%WWWDIR%%/templates/pages/admin/user/change_other_password.html.twig +%%WWWDIR%%/templates/pages/admin/user/user.html.twig +%%WWWDIR%%/templates/pages/admin/user/user_picture_field.html.twig +%%WWWDIR%%/templates/pages/assets/asset.html.twig %%WWWDIR%%/templates/pages/assets/cable.html.twig +%%WWWDIR%%/templates/pages/assets/cartridge.html.twig %%WWWDIR%%/templates/pages/assets/cartridgeitem.html.twig +%%WWWDIR%%/templates/pages/assets/consumable_list.html.twig %%WWWDIR%%/templates/pages/assets/consumableitem.html.twig +%%WWWDIR%%/templates/pages/assets/customfield.html.twig %%WWWDIR%%/templates/pages/assets/enclosure.html.twig %%WWWDIR%%/templates/pages/assets/monitor.html.twig +%%WWWDIR%%/templates/pages/assets/networkport/form.html.twig +%%WWWDIR%%/templates/pages/assets/networkport/networkname_short.html.twig %%WWWDIR%%/templates/pages/assets/operatingsystem.html.twig %%WWWDIR%%/templates/pages/assets/phone.html.twig %%WWWDIR%%/templates/pages/assets/printer.html.twig %%WWWDIR%%/templates/pages/assets/rack.html.twig %%WWWDIR%%/templates/pages/assets/socket.html.twig +%%WWWDIR%%/templates/pages/assets/socket_networkport.html.twig +%%WWWDIR%%/templates/pages/assets/socket_short_form.html.twig %%WWWDIR%%/templates/pages/assets/software.html.twig +%%WWWDIR%%/templates/pages/assets/template_list.html.twig %%WWWDIR%%/templates/pages/assets/unmanaged.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/add_classic_event.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/availability.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/external_event.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/filters.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/planning.html.twig +%%WWWDIR%%/templates/pages/assistance/planning/single_filter.html.twig +%%WWWDIR%%/templates/pages/assistance/stats/form.html.twig +%%WWWDIR%%/templates/pages/assistance/stats/global_form.html.twig +%%WWWDIR%%/templates/pages/assistance/stats/single_item_pager.html.twig +%%WWWDIR%%/templates/pages/assistance/stats/title.html.twig +%%WWWDIR%%/templates/pages/central/index.html.twig +%%WWWDIR%%/templates/pages/form_renderer.html.twig +%%WWWDIR%%/templates/pages/generic_form.html.twig +%%WWWDIR%%/templates/pages/generic_in_modal.html.twig +%%WWWDIR%%/templates/pages/generic_list.html.twig +%%WWWDIR%%/templates/pages/helpdesk/index.html.twig +%%WWWDIR%%/templates/pages/helpdesk/search.html.twig %%WWWDIR%%/templates/pages/login.html.twig %%WWWDIR%%/templates/pages/login_error.html.twig %%WWWDIR%%/templates/pages/management/appliance.html.twig +%%WWWDIR%%/templates/pages/management/budget.html.twig %%WWWDIR%%/templates/pages/management/certificate.html.twig +%%WWWDIR%%/templates/pages/management/contact_supplier.html.twig %%WWWDIR%%/templates/pages/management/contract.html.twig +%%WWWDIR%%/templates/pages/management/cost.html.twig +%%WWWDIR%%/templates/pages/management/database.html.twig +%%WWWDIR%%/templates/pages/management/databaseinstance.html.twig +%%WWWDIR%%/templates/pages/management/dcroom.html.twig +%%WWWDIR%%/templates/pages/management/dcroom_racks.html.twig +%%WWWDIR%%/templates/pages/management/document.html.twig +%%WWWDIR%%/templates/pages/management/document_item.html.twig +%%WWWDIR%%/templates/pages/management/domainrecord.html.twig +%%WWWDIR%%/templates/pages/management/domainrecordtype_helper.html.twig +%%WWWDIR%%/templates/pages/management/item_line.html.twig +%%WWWDIR%%/templates/pages/management/license_progressbar.html.twig %%WWWDIR%%/templates/pages/management/line.html.twig %%WWWDIR%%/templates/pages/management/softwarelicense.html.twig -%%WWWDIR%%/templates/pages/self-service/home.html.twig +%%WWWDIR%%/templates/pages/oauth/authorize.html.twig +%%WWWDIR%%/templates/pages/self-service/service_catalog.html.twig %%WWWDIR%%/templates/pages/setup/apiclient.html.twig %%WWWDIR%%/templates/pages/setup/authentication.html.twig +%%WWWDIR%%/templates/pages/setup/authentication/ldap_replicate.html.twig +%%WWWDIR%%/templates/pages/setup/authentication/mail.html.twig +%%WWWDIR%%/templates/pages/setup/authentication/other_ext_setup.html.twig +%%WWWDIR%%/templates/pages/setup/authentication/setup.html.twig +%%WWWDIR%%/templates/pages/setup/authentication/sync.html.twig +%%WWWDIR%%/templates/pages/setup/calendar_holiday.html.twig +%%WWWDIR%%/templates/pages/setup/calendarsegment.html.twig +%%WWWDIR%%/templates/pages/setup/crontask/crontask.html.twig +%%WWWDIR%%/templates/pages/setup/crontask/statistics.html.twig +%%WWWDIR%%/templates/pages/setup/custom_dropdown.html.twig %%WWWDIR%%/templates/pages/setup/dropdowns_list.html.twig +%%WWWDIR%%/templates/pages/setup/dropdowntranslation.html.twig +%%WWWDIR%%/templates/pages/setup/externallink.html.twig +%%WWWDIR%%/templates/pages/setup/externallink_itemtype.html.twig +%%WWWDIR%%/templates/pages/setup/general/api_apiclients_section.html.twig +%%WWWDIR%%/templates/pages/setup/general/api_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/assets_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/assistance_setup.html.twig %%WWWDIR%%/templates/pages/setup/general/base_form.html.twig +%%WWWDIR%%/templates/pages/setup/general/dbreplica_setup.html.twig %%WWWDIR%%/templates/pages/setup/general/general_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/glpinetwork_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/logs_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/management_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/performance.html.twig +%%WWWDIR%%/templates/pages/setup/general/preferences_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/security_setup.html.twig +%%WWWDIR%%/templates/pages/setup/general/systeminfo_form.html.twig +%%WWWDIR%%/templates/pages/setup/general/systeminfo_table.html.twig +%%WWWDIR%%/templates/pages/setup/ldap/adv_info.html.twig +%%WWWDIR%%/templates/pages/setup/ldap/form.html.twig +%%WWWDIR%%/templates/pages/setup/ldap/group_config.html.twig +%%WWWDIR%%/templates/pages/setup/ldap/test_form.html.twig +%%WWWDIR%%/templates/pages/setup/ldap/user_config_form.html.twig +%%WWWDIR%%/templates/pages/setup/levelagreement_level.html.twig +%%WWWDIR%%/templates/pages/setup/mailcollector/folder_list.html.twig +%%WWWDIR%%/templates/pages/setup/mailcollector/server_config_fields.html.twig +%%WWWDIR%%/templates/pages/setup/mailcollector/setup_form.html.twig +%%WWWDIR%%/templates/pages/setup/manuallink.html.twig +%%WWWDIR%%/templates/pages/setup/marketplace/card.html.twig +%%WWWDIR%%/templates/pages/setup/notification/ajax_setting.html.twig +%%WWWDIR%%/templates/pages/setup/notification/group_notifications.html.twig +%%WWWDIR%%/templates/pages/setup/notification/mailing_setting.html.twig +%%WWWDIR%%/templates/pages/setup/notification/notification.html.twig +%%WWWDIR%%/templates/pages/setup/notification/notification_notificationtemplate.html.twig +%%WWWDIR%%/templates/pages/setup/notification/queued_notification.html.twig +%%WWWDIR%%/templates/pages/setup/notification/recipients.html.twig +%%WWWDIR%%/templates/pages/setup/notification/template.html.twig +%%WWWDIR%%/templates/pages/setup/notification/translation.html.twig +%%WWWDIR%%/templates/pages/setup/notification/translation_debug.html.twig +%%WWWDIR%%/templates/pages/setup/oauthclient.html.twig %%WWWDIR%%/templates/pages/setup/setup_notifications.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/payload_editor.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/queuedwebhook.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/webhook.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/webhook_headers.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/webhook_security.html.twig +%%WWWDIR%%/templates/pages/setup/webhook/webhooktest.html.twig +%%WWWDIR%%/templates/pages/tools/find_available_reservation.html.twig +%%WWWDIR%%/templates/pages/tools/item_project.html.twig +%%WWWDIR%%/templates/pages/tools/kb/article.html.twig +%%WWWDIR%%/templates/pages/tools/kb/comment_form.html.twig +%%WWWDIR%%/templates/pages/tools/kb/comments.html.twig +%%WWWDIR%%/templates/pages/tools/kb/knowbaseitem.html.twig +%%WWWDIR%%/templates/pages/tools/kb/knowbaseitem_item.html.twig +%%WWWDIR%%/templates/pages/tools/kb/translation.html.twig +%%WWWDIR%%/templates/pages/tools/project.html.twig %%WWWDIR%%/templates/pages/tools/project_task.html.twig +%%WWWDIR%%/templates/pages/tools/reminder.html.twig +%%WWWDIR%%/templates/pages/tools/reminder_planning.html.twig +%%WWWDIR%%/templates/pages/tools/reminder_translation.html.twig +%%WWWDIR%%/templates/pages/tools/report/network_criteria.html.twig +%%WWWDIR%%/templates/pages/tools/rss_form.html.twig +%%WWWDIR%%/templates/pages/tools/savedsearch/alert.html.twig +%%WWWDIR%%/templates/pages/tools/savedsearch/alert_list_notification.html.twig +%%WWWDIR%%/templates/pages/tools/savedsearch/form.html.twig +%%WWWDIR%%/templates/pages/tools/savedsearch/save_button.html.twig +%%WWWDIR%%/templates/pages/tools/search_knowbaseitem.html.twig %%WWWDIR%%/templates/password_form.html.twig -%%WWWDIR%%/vendor/.htaccess +%%WWWDIR%%/templates/stencil/editor.html.twig +%%WWWDIR%%/templates/stencil/parts/label.html.twig +%%WWWDIR%%/templates/stencil/parts/port/popover.html.twig +%%WWWDIR%%/templates/stencil/parts/port/status.html.twig +%%WWWDIR%%/templates/stencil/parts/zones.html.twig +%%WWWDIR%%/templates/stencil/view.html.twig +%%WWWDIR%%/templates/updatepassword.html.twig +%%WWWDIR%%/vendor/altcha-org/altcha/CODE_OF_CONDUCT.md +%%WWWDIR%%/vendor/altcha-org/altcha/CONTRIBUTING.md +%%WWWDIR%%/vendor/altcha-org/altcha/LICENSE.txt +%%WWWDIR%%/vendor/altcha-org/altcha/README.md +%%WWWDIR%%/vendor/altcha-org/altcha/composer.json +%%WWWDIR%%/vendor/altcha-org/altcha/composer.lock +%%WWWDIR%%/vendor/altcha-org/altcha/phpstan-baseline.neon +%%WWWDIR%%/vendor/altcha-org/altcha/phpstan.neon +%%WWWDIR%%/vendor/altcha-org/altcha/phpunit.xml.dist +%%WWWDIR%%/vendor/altcha-org/altcha/src/Altcha.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/BaseChallengeOptions.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Challenge.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/ChallengeOptions.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/CheckChallengeOptions.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Hasher/Algorithm.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Hasher/Hasher.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Hasher/HasherInterface.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Payload.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/ServerSignaturePayload.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/ServerSignatureVerification.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/ServerSignatureVerificationData.php +%%WWWDIR%%/vendor/altcha-org/altcha/src/Solution.php +%%WWWDIR%%/vendor/altcha-org/altcha/tests/AltchaTest.php +%%WWWDIR%%/vendor/apereo/phpcas/CAS.php +%%WWWDIR%%/vendor/apereo/phpcas/LICENSE +%%WWWDIR%%/vendor/apereo/phpcas/NOTICE +%%WWWDIR%%/vendor/apereo/phpcas/README.md +%%WWWDIR%%/vendor/apereo/phpcas/composer.json +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/AuthenticationException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Autoload.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Client.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/CookieJar.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Exception.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/GracefullTerminationException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/InvalidArgumentException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Catalan.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/ChineseSimplified.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/English.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/French.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Galego.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/German.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Greek.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Japanese.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/LanguageInterface.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Portuguese.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages/Spanish.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/OutOfSequenceBeforeAuthenticationCallException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/OutOfSequenceBeforeClientException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/OutOfSequenceBeforeProxyException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/OutOfSequenceException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/PGTStorage/AbstractStorage.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/PGTStorage/Db.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/PGTStorage/File.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Abstract.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Exception.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Http.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Http/Abstract.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Http/Get.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Http/Post.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Imap.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Testable.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain/AllowedList.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain/Any.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain/Interface.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain/Trusted.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyTicketException.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/AbstractRequest.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/CurlMultiRequest.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/CurlRequest.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/Exception.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/MultiRequestInterface.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request/RequestInterface.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ServiceBaseUrl/AllowedListDiscovery.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ServiceBaseUrl/Base.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ServiceBaseUrl/Interface.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ServiceBaseUrl/Static.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Session/PhpSession.php +%%WWWDIR%%/vendor/apereo/phpcas/source/CAS/TypeMismatchException.php %%WWWDIR%%/vendor/autoload.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/LICENSE +%%WWWDIR%%/vendor/bacon/bacon-qr-code/README.md +%%WWWDIR%%/vendor/bacon/bacon-qr-code/composer.json +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/BitArray.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/BitMatrix.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/BitUtils.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/CharacterSetEci.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/EcBlock.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/EcBlocks.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/ErrorCorrectionLevel.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/FormatInformation.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/Mode.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/ReedSolomonCodec.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common/Version.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/BlockPair.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/ByteMatrix.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/Encoder.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/MaskUtil.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/MatrixUtil.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder/QrCode.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/OutOfBoundsException.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/RuntimeException.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/UnexpectedValueException.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception/WriterException.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color/Alpha.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color/Cmyk.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color/ColorInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color/Gray.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color/Rgb.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/CompositeEye.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/EyeInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/ModuleEye.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/PointyEye.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/SimpleCircleEye.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye/SquareEye.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/GDLibRenderer.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image/EpsImageBackEnd.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image/ImageBackEndInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image/ImagickImageBackEnd.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image/SvgImageBackEnd.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image/TransformationMatrix.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/ImageRenderer.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/DotsModule.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/EdgeIterator/Edge.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/EdgeIterator/EdgeIterator.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/ModuleInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/RoundnessModule.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/SquareModule.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/Close.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/Curve.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/EllipticArc.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/Line.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/Move.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/OperationInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path/Path.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/PlainTextRenderer.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererInterface.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/EyeFill.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/Fill.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/Gradient.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/GradientType.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/RendererStyle.php +%%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Writer.php +%%WWWDIR%%/vendor/bin/build_hw_jsons +%%WWWDIR%%/vendor/bin/cam +%%WWWDIR%%/vendor/bin/convert +%%WWWDIR%%/vendor/bin/export-plural-rules +%%WWWDIR%%/vendor/bin/generate-defuse-key +%%WWWDIR%%/vendor/bin/generate-deps-for-config-factory +%%WWWDIR%%/vendor/bin/generate-factory-for-class +%%WWWDIR%%/vendor/bin/generate_vcards +%%WWWDIR%%/vendor/bin/html-to-markdown +%%WWWDIR%%/vendor/bin/import-cldr-data +%%WWWDIR%%/vendor/bin/jsonlint +%%WWWDIR%%/vendor/bin/naturalselection +%%WWWDIR%%/vendor/bin/patch-type-declarations +%%WWWDIR%%/vendor/bin/refresh_hw_sources +%%WWWDIR%%/vendor/bin/sabredav +%%WWWDIR%%/vendor/bin/validate +%%WWWDIR%%/vendor/bin/var-dump-server +%%WWWDIR%%/vendor/bin/vobject %%WWWDIR%%/vendor/brick/math/CHANGELOG.md %%WWWDIR%%/vendor/brick/math/LICENSE -%%WWWDIR%%/vendor/brick/math/SECURITY.md %%WWWDIR%%/vendor/brick/math/composer.json +%%WWWDIR%%/vendor/brick/math/phpstan.neon %%WWWDIR%%/vendor/brick/math/src/BigDecimal.php %%WWWDIR%%/vendor/brick/math/src/BigInteger.php %%WWWDIR%%/vendor/brick/math/src/BigNumber.php @@ -3716,6 +4574,7 @@ %%WWWDIR%%/vendor/brick/math/src/Internal/Calculator/BcMathCalculator.php %%WWWDIR%%/vendor/brick/math/src/Internal/Calculator/GmpCalculator.php %%WWWDIR%%/vendor/brick/math/src/Internal/Calculator/NativeCalculator.php +%%WWWDIR%%/vendor/brick/math/src/Internal/CalculatorRegistry.php %%WWWDIR%%/vendor/brick/math/src/RoundingMode.php %%WWWDIR%%/vendor/composer/ClassLoader.php %%WWWDIR%%/vendor/composer/InstalledVersions.php @@ -3728,24 +4587,106 @@ %%WWWDIR%%/vendor/composer/autoload_static.php %%WWWDIR%%/vendor/composer/installed.json %%WWWDIR%%/vendor/composer/installed.php -%%WWWDIR%%/vendor/container-interop/container-interop/LICENSE -%%WWWDIR%%/vendor/container-interop/container-interop/README.md -%%WWWDIR%%/vendor/container-interop/container-interop/composer.json -%%WWWDIR%%/vendor/container-interop/container-interop/docs/ContainerInterface-meta.md -%%WWWDIR%%/vendor/container-interop/container-interop/docs/ContainerInterface.md -%%WWWDIR%%/vendor/container-interop/container-interop/docs/Delegate-lookup-meta.md -%%WWWDIR%%/vendor/container-interop/container-interop/docs/Delegate-lookup.md -%%WWWDIR%%/vendor/container-interop/container-interop/docs/images/interoperating_containers.png -%%WWWDIR%%/vendor/container-interop/container-interop/docs/images/priority.png -%%WWWDIR%%/vendor/container-interop/container-interop/docs/images/side_by_side_containers.png -%%WWWDIR%%/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php -%%WWWDIR%%/vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php -%%WWWDIR%%/vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php +%%WWWDIR%%/vendor/composer/pcre/LICENSE +%%WWWDIR%%/vendor/composer/pcre/README.md +%%WWWDIR%%/vendor/composer/pcre/composer.json +%%WWWDIR%%/vendor/composer/pcre/extension.neon +%%WWWDIR%%/vendor/composer/pcre/src/MatchAllResult.php +%%WWWDIR%%/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php +%%WWWDIR%%/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php +%%WWWDIR%%/vendor/composer/pcre/src/MatchResult.php +%%WWWDIR%%/vendor/composer/pcre/src/MatchStrictGroupsResult.php +%%WWWDIR%%/vendor/composer/pcre/src/MatchWithOffsetsResult.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php +%%WWWDIR%%/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php +%%WWWDIR%%/vendor/composer/pcre/src/PcreException.php +%%WWWDIR%%/vendor/composer/pcre/src/Preg.php +%%WWWDIR%%/vendor/composer/pcre/src/Regex.php +%%WWWDIR%%/vendor/composer/pcre/src/ReplaceResult.php +%%WWWDIR%%/vendor/composer/pcre/src/UnexpectedNullMatchException.php +%%WWWDIR%%/vendor/dasprid/enum/LICENSE +%%WWWDIR%%/vendor/dasprid/enum/README.md +%%WWWDIR%%/vendor/dasprid/enum/composer.json +%%WWWDIR%%/vendor/dasprid/enum/src/AbstractEnum.php +%%WWWDIR%%/vendor/dasprid/enum/src/EnumMap.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/CloneNotSupportedException.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/ExpectationException.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/IllegalArgumentException.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/MismatchException.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/SerializeNotSupportedException.php +%%WWWDIR%%/vendor/dasprid/enum/src/Exception/UnserializeNotSupportedException.php +%%WWWDIR%%/vendor/dasprid/enum/src/NullValue.php +%%WWWDIR%%/vendor/defuse/php-encryption/LICENSE +%%WWWDIR%%/vendor/defuse/php-encryption/README.md +%%WWWDIR%%/vendor/defuse/php-encryption/bin/generate-defuse-key +%%WWWDIR%%/vendor/defuse/php-encryption/composer.json +%%WWWDIR%%/vendor/defuse/php-encryption/dist/Makefile +%%WWWDIR%%/vendor/defuse/php-encryption/dist/box.json +%%WWWDIR%%/vendor/defuse/php-encryption/dist/phar-testing-autoload.php +%%WWWDIR%%/vendor/defuse/php-encryption/dist/signingkey-new.asc +%%WWWDIR%%/vendor/defuse/php-encryption/dist/signingkey-new.asc.sig +%%WWWDIR%%/vendor/defuse/php-encryption/dist/signingkey.asc +%%WWWDIR%%/vendor/defuse/php-encryption/docs/CryptoDetails.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/FAQ.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/InstallingAndVerifying.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/InternalDeveloperDocs.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/Tutorial.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/UpgradingFromV1.2.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/classes/Crypto.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/classes/File.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/classes/Key.md +%%WWWDIR%%/vendor/defuse/php-encryption/docs/classes/KeyProtectedByPassword.md +%%WWWDIR%%/vendor/defuse/php-encryption/src/Core.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Crypto.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/DerivedKeys.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Encoding.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Exception/BadFormatException.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Exception/CryptoException.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Exception/EnvironmentIsBrokenException.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Exception/IOException.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Exception/WrongKeyOrModifiedCiphertextException.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/File.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/Key.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/KeyOrPassword.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/KeyProtectedByPassword.php +%%WWWDIR%%/vendor/defuse/php-encryption/src/RuntimeTests.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/CHANGELOG.md +%%WWWDIR%%/vendor/dflydev/dot-access-data/LICENSE +%%WWWDIR%%/vendor/dflydev/dot-access-data/README.md +%%WWWDIR%%/vendor/dflydev/dot-access-data/composer.json +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/Data.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/DataInterface.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/Exception/DataException.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/Exception/InvalidPathException.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/Exception/MissingPathException.php +%%WWWDIR%%/vendor/dflydev/dot-access-data/src/Util.php +%%WWWDIR%%/vendor/doctrine/deprecations/LICENSE +%%WWWDIR%%/vendor/doctrine/deprecations/README.md +%%WWWDIR%%/vendor/doctrine/deprecations/composer.json +%%WWWDIR%%/vendor/doctrine/deprecations/src/Deprecation.php +%%WWWDIR%%/vendor/doctrine/deprecations/src/PHPUnit/VerifyDeprecations.php +%%WWWDIR%%/vendor/doctrine/lexer/LICENSE +%%WWWDIR%%/vendor/doctrine/lexer/README.md +%%WWWDIR%%/vendor/doctrine/lexer/UPGRADE.md +%%WWWDIR%%/vendor/doctrine/lexer/composer.json +%%WWWDIR%%/vendor/doctrine/lexer/src/AbstractLexer.php +%%WWWDIR%%/vendor/doctrine/lexer/src/Token.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/CONTRIBUTING.md %%WWWDIR%%/vendor/donatj/phpuseragentparser/LICENSE.md %%WWWDIR%%/vendor/donatj/phpuseragentparser/Makefile %%WWWDIR%%/vendor/donatj/phpuseragentparser/README.md +%%WWWDIR%%/vendor/donatj/phpuseragentparser/bin/benchmark.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/bin/constant_generator.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/bin/init_user_agent.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/bin/user_agent_sorter.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/composer.json +%%WWWDIR%%/vendor/donatj/phpuseragentparser/examples/object-oriented.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/examples/procedural.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/phpunit.xml.dist %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgent/Browsers.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgent/Platforms.php @@ -3753,11 +4694,109 @@ %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgent/UserAgentInterface.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgent/UserAgentParser.php %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgentParser.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/tests/UserAgentParserFunctionTest.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/tests/UserAgentParserObjectTest.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/tests/bootstrap.php +%%WWWDIR%%/vendor/donatj/phpuseragentparser/tests/user_agents.dist.json +%%WWWDIR%%/vendor/egulias/email-validator/CONTRIBUTING.md +%%WWWDIR%%/vendor/egulias/email-validator/LICENSE +%%WWWDIR%%/vendor/egulias/email-validator/composer.json +%%WWWDIR%%/vendor/egulias/email-validator/src/EmailLexer.php +%%WWWDIR%%/vendor/egulias/email-validator/src/EmailParser.php +%%WWWDIR%%/vendor/egulias/email-validator/src/EmailValidator.php +%%WWWDIR%%/vendor/egulias/email-validator/src/MessageIDParser.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/Comment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/CommentStrategy/CommentStrategy.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/CommentStrategy/DomainComment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/CommentStrategy/LocalComment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/DomainLiteral.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/DomainPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/DoubleQuote.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/FoldingWhiteSpace.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/IDLeftPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/IDRightPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/LocalPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Parser/PartParser.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/InvalidEmail.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/MultipleErrors.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/AtextAfterCFWS.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CRLFAtTheEnd.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CRLFX2.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CRNoLF.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CharNotAllowed.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CommaInDomain.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/CommentsInIDRight.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ConsecutiveAt.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ConsecutiveDot.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DetailedReason.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DomainAcceptsNoMail.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DomainHyphened.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DomainTooLong.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DotAtEnd.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/DotAtStart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/EmptyReason.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ExceptionFound.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ExpectingATEXT.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ExpectingCTEXT.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ExpectingDTEXT.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/ExpectingDomainLiteralClose.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/LabelTooLong.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/LocalOrReservedDomain.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/NoDNSRecord.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/NoDomainPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/NoLocalPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/RFCWarnings.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/Reason.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/SpoofEmail.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/UnOpenedComment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/UnableToGetDNSRecord.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/UnclosedComment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/UnclosedQuotedString.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason/UnusualElements.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/Result.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/SpoofEmail.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Result/ValidEmail.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/DNSCheckValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/DNSGetRecordWrapper.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/DNSRecords.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/EmailValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/Exception/EmptyValidationList.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/Extra/SpoofCheckValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/MessageIDValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/MultipleValidationWithAnd.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/NoRFCWarningsValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Validation/RFCValidation.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/AddressLiteral.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/CFWSNearAt.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/CFWSWithFWS.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/Comment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/DeprecatedComment.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/DomainLiteral.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/EmailTooLong.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6BadChar.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6ColonEnd.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6ColonStart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6Deprecated.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6DoubleColon.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6GroupCount.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/IPV6MaxGroups.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/LocalTooLong.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/NoDNSMXRecord.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/ObsoleteDTEXT.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/QuotedPart.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/QuotedString.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/TLD.php +%%WWWDIR%%/vendor/egulias/email-validator/src/Warning/Warning.php %%WWWDIR%%/vendor/elvanto/litemoji/LICENSE %%WWWDIR%%/vendor/elvanto/litemoji/README.md %%WWWDIR%%/vendor/elvanto/litemoji/composer.json %%WWWDIR%%/vendor/elvanto/litemoji/src/LitEmoji.php -%%WWWDIR%%/vendor/elvanto/litemoji/src/shortcodes-array.php +%%WWWDIR%%/vendor/elvanto/litemoji/src/cldr.php +%%WWWDIR%%/vendor/elvanto/litemoji/src/emojibase.php +%%WWWDIR%%/vendor/elvanto/litemoji/src/github.php +%%WWWDIR%%/vendor/elvanto/litemoji/src/iamcal.php +%%WWWDIR%%/vendor/elvanto/litemoji/src/joypixels.php %%WWWDIR%%/vendor/firebase/php-jwt/CHANGELOG.md %%WWWDIR%%/vendor/firebase/php-jwt/LICENSE %%WWWDIR%%/vendor/firebase/php-jwt/README.md @@ -3770,6 +4809,30 @@ %%WWWDIR%%/vendor/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php %%WWWDIR%%/vendor/firebase/php-jwt/src/Key.php %%WWWDIR%%/vendor/firebase/php-jwt/src/SignatureInvalidException.php +%%WWWDIR%%/vendor/gettext/languages/LICENSE +%%WWWDIR%%/vendor/gettext/languages/UNICODE-LICENSE.txt +%%WWWDIR%%/vendor/gettext/languages/bin/export-plural-rules +%%WWWDIR%%/vendor/gettext/languages/bin/export-plural-rules.bat +%%WWWDIR%%/vendor/gettext/languages/bin/import-cldr-data +%%WWWDIR%%/vendor/gettext/languages/bin/import-cldr-data.bat +%%WWWDIR%%/vendor/gettext/languages/composer.json +%%WWWDIR%%/vendor/gettext/languages/src/Category.php +%%WWWDIR%%/vendor/gettext/languages/src/CldrData.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Exporter.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Html.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Json.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Php.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Po.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Prettyjson.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Ruby.php +%%WWWDIR%%/vendor/gettext/languages/src/Exporter/Xml.php +%%WWWDIR%%/vendor/gettext/languages/src/FormulaConverter.php +%%WWWDIR%%/vendor/gettext/languages/src/Language.php +%%WWWDIR%%/vendor/gettext/languages/src/autoloader.php +%%WWWDIR%%/vendor/gettext/languages/src/cldr-data/main/en-US/languages.json +%%WWWDIR%%/vendor/gettext/languages/src/cldr-data/main/en-US/scripts.json +%%WWWDIR%%/vendor/gettext/languages/src/cldr-data/main/en-US/territories.json +%%WWWDIR%%/vendor/gettext/languages/src/cldr-data/supplemental/plurals.json %%WWWDIR%%/vendor/glpi-project/inventory_format/CHANGELOG.md %%WWWDIR%%/vendor/glpi-project/inventory_format/LICENSE %%WWWDIR%%/vendor/glpi-project/inventory_format/README.md @@ -3796,6 +4859,7 @@ %%WWWDIR%%/vendor/guzzlehttp/guzzle/README.md %%WWWDIR%%/vendor/guzzlehttp/guzzle/UPGRADING.md %%WWWDIR%%/vendor/guzzlehttp/guzzle/composer.json +%%WWWDIR%%/vendor/guzzlehttp/guzzle/package-lock.json %%WWWDIR%%/vendor/guzzlehttp/guzzle/src/BodySummarizer.php %%WWWDIR%%/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php %%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Client.php @@ -3857,8 +4921,6 @@ %%WWWDIR%%/vendor/guzzlehttp/promises/src/TaskQueue.php %%WWWDIR%%/vendor/guzzlehttp/promises/src/TaskQueueInterface.php %%WWWDIR%%/vendor/guzzlehttp/promises/src/Utils.php -%%WWWDIR%%/vendor/guzzlehttp/promises/src/functions.php -%%WWWDIR%%/vendor/guzzlehttp/promises/src/functions_include.php %%WWWDIR%%/vendor/guzzlehttp/psr7/CHANGELOG.md %%WWWDIR%%/vendor/guzzlehttp/psr7/LICENSE %%WWWDIR%%/vendor/guzzlehttp/psr7/README.md @@ -3898,23 +4960,31 @@ %%WWWDIR%%/vendor/html2text/html2text/composer.json %%WWWDIR%%/vendor/html2text/html2text/phpunit.xml.dist %%WWWDIR%%/vendor/html2text/html2text/src/Html2Text.php -%%WWWDIR%%/vendor/htmlawed/htmlawed/composer.json -%%WWWDIR%%/vendor/htmlawed/htmlawed/htmLawed.php -%%WWWDIR%%/vendor/htmlawed/htmlawed/htmLawed_README.htm -%%WWWDIR%%/vendor/htmlawed/htmlawed/htmLawed_README.txt -%%WWWDIR%%/vendor/htmlawed/htmlawed/htmLawed_TESTCASE.txt -%%WWWDIR%%/vendor/iamcal/lib_autolink/LICENSE -%%WWWDIR%%/vendor/iamcal/lib_autolink/README.md -%%WWWDIR%%/vendor/iamcal/lib_autolink/composer.json -%%WWWDIR%%/vendor/iamcal/lib_autolink/lib_autolink.php +%%WWWDIR%%/vendor/html2text/html2text/test/BasicTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/BlockquoteTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/ConstructorTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/DefinitionListTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/DelTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/HtmlCharsTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/ImageTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/InsTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/LinkTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/ListTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/PreTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/PrintTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/SearchReplaceTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/SpanTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/StrToUpperTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/TableTest.php +%%WWWDIR%%/vendor/html2text/html2text/test/bootstrap.php %%WWWDIR%%/vendor/laminas/laminas-i18n/COPYRIGHT.md %%WWWDIR%%/vendor/laminas/laminas-i18n/LICENSE.md %%WWWDIR%%/vendor/laminas/laminas-i18n/README.md %%WWWDIR%%/vendor/laminas/laminas-i18n/composer.json %%WWWDIR%%/vendor/laminas/laminas-i18n/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-i18n/psalm-baseline.xml -%%WWWDIR%%/vendor/laminas/laminas-i18n/psalm.xml +%%WWWDIR%%/vendor/laminas/laminas-i18n/renovate.json %%WWWDIR%%/vendor/laminas/laminas-i18n/src/ConfigProvider.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/CountryCode.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Exception/ExceptionInterface.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Exception/ExtensionNotLoadedException.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Exception/InvalidArgumentException.php @@ -3927,6 +4997,8 @@ %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Filter/Alpha.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Filter/NumberFormat.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Filter/NumberParse.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/Geography/CountryCodeListInterface.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/Geography/DefaultCountryCodeList.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Module.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator/Loader/AbstractFileLoader.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator/Loader/FileLoaderInterface.php @@ -3948,6 +5020,7 @@ %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator/TranslatorServiceFactory.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/Alnum.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/Alpha.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/CountryCode.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/DateTime.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/IsFloat.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/IsInt.php @@ -4198,6 +5271,8 @@ %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/PhoneNumber/ZW.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/PostCode.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/AbstractTranslatorHelper.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/Container/CountryCodeDataListFactory.php +%%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/CountryCodeDataList.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/CurrencyFormat.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/DateFormat.php %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/NumberFormat.php @@ -4211,7 +5286,6 @@ %%WWWDIR%%/vendor/laminas/laminas-loader/README.md %%WWWDIR%%/vendor/laminas/laminas-loader/composer.json %%WWWDIR%%/vendor/laminas/laminas-loader/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-loader/phpcs.xml.dist %%WWWDIR%%/vendor/laminas/laminas-loader/src/AutoloaderFactory.php %%WWWDIR%%/vendor/laminas/laminas-loader/src/ClassMapAutoloader.php %%WWWDIR%%/vendor/laminas/laminas-loader/src/Exception/BadMethodCallException.php @@ -4289,13 +5363,17 @@ %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Exception/RuntimeException.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Imap.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Pop3.php +%%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Pop3/Response.php +%%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Pop3/Xoauth2/Microsoft.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/ProtocolTrait.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp/Auth/Crammd5.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp/Auth/Login.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp/Auth/Plain.php +%%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp/Auth/Xoauth2.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/SmtpPluginManager.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/SmtpPluginManagerFactory.php +%%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Xoauth2/Xoauth2.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage/AbstractStorage.php %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage/Exception/ExceptionInterface.php @@ -4340,7 +5418,6 @@ %%WWWDIR%%/vendor/laminas/laminas-mime/README.md %%WWWDIR%%/vendor/laminas/laminas-mime/composer.json %%WWWDIR%%/vendor/laminas/laminas-mime/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-mime/phpcs.xml.dist %%WWWDIR%%/vendor/laminas/laminas-mime/src/Decode.php %%WWWDIR%%/vendor/laminas/laminas-mime/src/Exception/ExceptionInterface.php %%WWWDIR%%/vendor/laminas/laminas-mime/src/Exception/InvalidArgumentException.php @@ -4348,7 +5425,6 @@ %%WWWDIR%%/vendor/laminas/laminas-mime/src/Message.php %%WWWDIR%%/vendor/laminas/laminas-mime/src/Mime.php %%WWWDIR%%/vendor/laminas/laminas-mime/src/Part.php -%%WWWDIR%%/vendor/laminas/laminas-servicemanager/CHANGELOG.md %%WWWDIR%%/vendor/laminas/laminas-servicemanager/COPYRIGHT.md %%WWWDIR%%/vendor/laminas/laminas-servicemanager/LICENSE.md %%WWWDIR%%/vendor/laminas/laminas-servicemanager/README.md @@ -4356,9 +5432,6 @@ %%WWWDIR%%/vendor/laminas/laminas-servicemanager/bin/generate-factory-for-class %%WWWDIR%%/vendor/laminas/laminas-servicemanager/composer.json %%WWWDIR%%/vendor/laminas/laminas-servicemanager/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-servicemanager/phpcs.xml.dist -%%WWWDIR%%/vendor/laminas/laminas-servicemanager/psalm-baseline.xml -%%WWWDIR%%/vendor/laminas/laminas-servicemanager/psalm.xml.dist %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/AbstractFactory/ConfigAbstractFactory.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/AbstractFactory/ReflectionBasedAbstractFactory.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/AbstractFactoryInterface.php @@ -4382,7 +5455,6 @@ %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/InitializerInterface.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/PluginManagerInterface.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/Proxy/LazyServiceFactory.php -%%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/PsrContainerDecorator.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/ServiceLocatorInterface.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/ServiceManager.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/Test/CommonPluginManagerTrait.php @@ -4390,14 +5462,11 @@ %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/Tool/ConfigDumperCommand.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/Tool/FactoryCreator.php %%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/Tool/FactoryCreatorCommand.php +%%WWWDIR%%/vendor/laminas/laminas-servicemanager/src/autoload.php %%WWWDIR%%/vendor/laminas/laminas-stdlib/COPYRIGHT.md %%WWWDIR%%/vendor/laminas/laminas-stdlib/LICENSE.md %%WWWDIR%%/vendor/laminas/laminas-stdlib/README.md %%WWWDIR%%/vendor/laminas/laminas-stdlib/composer.json -%%WWWDIR%%/vendor/laminas/laminas-stdlib/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-stdlib/phpcs.xml.dist -%%WWWDIR%%/vendor/laminas/laminas-stdlib/psalm-baseline.xml -%%WWWDIR%%/vendor/laminas/laminas-stdlib/psalm.xml.dist %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/AbstractOptions.php %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/ArrayObject.php %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/ArraySerializableInterface.php @@ -4445,15 +5514,20 @@ %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/StringWrapper/MbString.php %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/StringWrapper/Native.php %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/StringWrapper/StringWrapperInterface.php +%%WWWDIR%%/vendor/laminas/laminas-translator/COPYRIGHT.md +%%WWWDIR%%/vendor/laminas/laminas-translator/LICENSE.md +%%WWWDIR%%/vendor/laminas/laminas-translator/README.md +%%WWWDIR%%/vendor/laminas/laminas-translator/composer.json +%%WWWDIR%%/vendor/laminas/laminas-translator/composer.lock +%%WWWDIR%%/vendor/laminas/laminas-translator/renovate.json +%%WWWDIR%%/vendor/laminas/laminas-translator/src/TranslatorInterface.php %%WWWDIR%%/vendor/laminas/laminas-validator/COPYRIGHT.md %%WWWDIR%%/vendor/laminas/laminas-validator/LICENSE.md %%WWWDIR%%/vendor/laminas/laminas-validator/README.md %%WWWDIR%%/vendor/laminas/laminas-validator/bin/update_hostname_validator.php %%WWWDIR%%/vendor/laminas/laminas-validator/composer.json %%WWWDIR%%/vendor/laminas/laminas-validator/composer.lock -%%WWWDIR%%/vendor/laminas/laminas-validator/phpcs.xml.dist -%%WWWDIR%%/vendor/laminas/laminas-validator/psalm-baseline.xml -%%WWWDIR%%/vendor/laminas/laminas-validator/psalm.xml.dist +%%WWWDIR%%/vendor/laminas/laminas-validator/renovate.json %%WWWDIR%%/vendor/laminas/laminas-validator/src/AbstractValidator.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Barcode.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Barcode/AbstractAdapter.php @@ -4495,6 +5569,7 @@ %%WWWDIR%%/vendor/laminas/laminas-validator/src/CreditCard.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Csrf.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Date.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/DateComparison.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/DateStep.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Db/AbstractDb.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Db/NoRecordExists.php @@ -4531,6 +5606,7 @@ %%WWWDIR%%/vendor/laminas/laminas-validator/src/GpsPoint.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/GreaterThan.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Hex.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/HostWithPublicIPv4Address.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Hostname.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Hostname/Biz.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Hostname/Cn.php @@ -4540,14 +5616,17 @@ %%WWWDIR%%/vendor/laminas/laminas-validator/src/Identical.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/InArray.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Ip.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/IsArray.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/IsCountable.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/IsInstanceOf.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/IsJsonString.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Isbn.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Isbn/Isbn10.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Isbn/Isbn13.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/LessThan.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Module.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/NotEmpty.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/NumberComparison.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Regex.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Sitemap/Changefreq.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Sitemap/Lastmod.php @@ -4557,7 +5636,10 @@ %%WWWDIR%%/vendor/laminas/laminas-validator/src/Step.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/StringLength.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Timezone.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator/DummyTranslator.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator/Translator.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator/TranslatorAwareInterface.php +%%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator/TranslatorFactory.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator/TranslatorInterface.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/UndisclosedPassword.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/Uri.php @@ -4568,29 +5650,471 @@ %%WWWDIR%%/vendor/laminas/laminas-validator/src/ValidatorPluginManagerAwareInterface.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/ValidatorPluginManagerFactory.php %%WWWDIR%%/vendor/laminas/laminas-validator/src/ValidatorProviderInterface.php -%%WWWDIR%%/vendor/league/csv/CHANGELOG.md +%%WWWDIR%%/vendor/lcobucci/clock/LICENSE +%%WWWDIR%%/vendor/lcobucci/clock/composer.json +%%WWWDIR%%/vendor/lcobucci/clock/src/Clock.php +%%WWWDIR%%/vendor/lcobucci/clock/src/FrozenClock.php +%%WWWDIR%%/vendor/lcobucci/clock/src/SystemClock.php +%%WWWDIR%%/vendor/lcobucci/jwt/LICENSE +%%WWWDIR%%/vendor/lcobucci/jwt/composer.json +%%WWWDIR%%/vendor/lcobucci/jwt/src/Builder.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/ClaimsFormatter.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Configuration.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Decoder.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoder.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/CannotDecodeContent.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/CannotEncodeContent.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/ChainedFormatter.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/JoseEncoder.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/MicrosecondBasedDateConversion.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/UnifyAudience.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding/UnixTimestampDates.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Exception.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/JwtFacade.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Parser.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Blake2b.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/CannotSignPayload.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/ConversionFailed.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/MultibyteStringConverter.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha256.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha384.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha512.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/SignatureConverter.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Eddsa.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha256.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha384.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha512.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/InvalidKeyProvided.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Key.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Key/FileCouldNotBeRead.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Key/InMemory.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/OpenSSL.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha256.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha384.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha512.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/SodiumBase64Polyfill.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/Builder.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/DataSet.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/InvalidTokenStructure.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/Parser.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/Plain.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/RegisteredClaimGiven.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/RegisteredClaims.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/Signature.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Token/UnsupportedHeaderFound.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/UnencryptedToken.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/CannotValidateARegisteredClaim.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/HasClaim.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/HasClaimWithValue.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/IdentifiedBy.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/IssuedBy.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/LeewayCannotBeNegative.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/LooseValidAt.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/PermittedFor.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/RelatedTo.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/SignedWith.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/SignedWithOneInSet.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/SignedWithUntilDate.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint/StrictValidAt.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/ConstraintViolation.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/NoConstraintsGiven.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/RequiredConstraintsViolated.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/SignedWith.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/ValidAt.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Validator.php +%%WWWDIR%%/vendor/lcobucci/jwt/src/Validator.php +%%WWWDIR%%/vendor/league/commonmark/CHANGELOG.md +%%WWWDIR%%/vendor/league/commonmark/LICENSE +%%WWWDIR%%/vendor/league/commonmark/README.md +%%WWWDIR%%/vendor/league/commonmark/composer.json +%%WWWDIR%%/vendor/league/commonmark/src/CommonMarkConverter.php +%%WWWDIR%%/vendor/league/commonmark/src/ConverterInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Bracket.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Delimiter.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterStack.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/CacheableDelimiterProcessorInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorCollection.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorCollectionInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/StaggeredDelimiterProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Environment/Environment.php +%%WWWDIR%%/vendor/league/commonmark/src/Environment/EnvironmentAwareInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Environment/EnvironmentBuilderInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Environment/EnvironmentInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/AbstractEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/DocumentParsedEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/DocumentPreParsedEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/DocumentPreRenderEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/DocumentRenderedEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Event/ListenerData.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/AlreadyInitializedException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/CommonMarkException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/IOException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/LogicException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/MissingDependencyException.php +%%WWWDIR%%/vendor/league/commonmark/src/Exception/UnexpectedEncodingException.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/AttributesExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Event/AttributesListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Node/Attributes.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Node/AttributesInline.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Parser/AttributesBlockContinueParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Parser/AttributesBlockStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Parser/AttributesInlineParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Util/AttributesHelper.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Autolink/AutolinkExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Autolink/EmailAutolinkParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Autolink/UrlAutolinkParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/CommonMarkCoreExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Delimiter/Processor/EmphasisDelimiterProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/BlockQuote.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/FencedCode.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/Heading.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/HtmlBlock.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/IndentedCode.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/ListBlock.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/ListData.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/ListItem.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block/ThematicBreak.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/AbstractWebResource.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/Code.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/Emphasis.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/HtmlInline.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/Image.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/Link.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline/Strong.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/BlockQuoteParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/BlockQuoteStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/FencedCodeParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/FencedCodeStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/HeadingParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/HeadingStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/HtmlBlockParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/HtmlBlockStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/IndentedCodeParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/IndentedCodeStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/ListBlockParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/ListBlockStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/ListItemParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/ThematicBreakParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/ThematicBreakStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/AutolinkParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/BacktickParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/BangParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/CloseBracketParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/EntityParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/EscapableParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/HtmlInlineParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/OpenBracketParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/BlockQuoteRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/FencedCodeRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/HeadingRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/HtmlBlockRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/IndentedCodeRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/ListBlockRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/ListItemRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block/ThematicBreakRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/CodeRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/EmphasisRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/HtmlInlineRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/ImageRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/LinkRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline/StrongRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/ConfigurableExtensionInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DefaultAttributes/ApplyDefaultAttributesProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DefaultAttributes/DefaultAttributesExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/DescriptionListExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Event/ConsecutiveDescriptionListMerger.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Event/LooseDescriptionHandler.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Node/Description.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Node/DescriptionList.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Node/DescriptionTerm.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Parser/DescriptionContinueParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Parser/DescriptionListContinueParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Parser/DescriptionStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Parser/DescriptionTermContinueParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Renderer/DescriptionListRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Renderer/DescriptionRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Renderer/DescriptionTermRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DisallowedRawHtml/DisallowedRawHtmlExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/DisallowedRawHtml/DisallowedRawHtmlRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/Bridge/OscaroteroEmbedAdapter.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/DomainFilteringAdapter.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/Embed.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedAdapterInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/EmbedStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/ExtensionInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/ExternalLink/ExternalLinkExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/ExternalLink/ExternalLinkProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Event/AnonymousFootnotesListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Event/FixOrphanedFootnotesAndRefsListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Event/GatherFootnotesListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Event/NumberFootnotesListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/FootnoteExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Node/Footnote.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Node/FootnoteBackref.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Node/FootnoteContainer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Node/FootnoteRef.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Parser/AnonymousFootnoteRefParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Parser/FootnoteParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Parser/FootnoteRefParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Parser/FootnoteStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Renderer/FootnoteBackrefRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Renderer/FootnoteContainerRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Renderer/FootnoteRefRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Renderer/FootnoteRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Data/FrontMatterDataParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Data/LibYamlFrontMatterParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Data/SymfonyYamlFrontMatterParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Exception/InvalidFrontMatterException.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/FrontMatterExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/FrontMatterParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/FrontMatterParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/FrontMatterProviderInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Input/MarkdownInputWithFrontMatter.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Listener/FrontMatterPostRenderListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Listener/FrontMatterPreParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Output/RenderedContentWithFrontMatter.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/GithubFlavoredMarkdownExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/HeadingPermalink/HeadingPermalink.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/HeadingPermalink/HeadingPermalinkExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/HeadingPermalink/HeadingPermalinkProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/HeadingPermalink/HeadingPermalinkRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/InlinesOnly/ChildRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/InlinesOnly/InlinesOnlyExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/Generator/CallbackGenerator.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/Generator/MentionGeneratorInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/Generator/StringTemplateLinkGenerator.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/Mention.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/MentionExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/MentionParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/DashParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/EllipsesParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/Quote.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/QuoteParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/QuoteProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/ReplaceUnpairedQuotesListener.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct/SmartPunctExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Strikethrough/Strikethrough.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Strikethrough/StrikethroughDelimiterProcessor.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Strikethrough/StrikethroughExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Strikethrough/StrikethroughRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/Table.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableCell.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableCellRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableRow.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableRowRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableSection.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableSectionRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/Table/TableStartParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Node/TableOfContents.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Node/TableOfContentsPlaceholder.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/AsIsNormalizerStrategy.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/FlatNormalizerStrategy.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/NormalizerStrategyInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/RelativeNormalizerStrategy.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsBuilder.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsGenerator.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsGeneratorInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsPlaceholderParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsPlaceholderRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/TableOfContentsRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TaskList/TaskListExtension.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TaskList/TaskListItemMarker.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TaskList/TaskListItemMarkerParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Extension/TaskList/TaskListItemMarkerRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/GithubFlavoredMarkdownConverter.php +%%WWWDIR%%/vendor/league/commonmark/src/Input/MarkdownInput.php +%%WWWDIR%%/vendor/league/commonmark/src/Input/MarkdownInputInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/MarkdownConverter.php +%%WWWDIR%%/vendor/league/commonmark/src/MarkdownConverterInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Block/AbstractBlock.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Block/Document.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Block/Paragraph.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Block/TightBlockInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/AbstractInline.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/AbstractStringContainer.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/AdjacentTextMerger.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/DelimitedInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/Newline.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Inline/Text.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Node.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/NodeIterator.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/NodeWalker.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/NodeWalkerEvent.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Query.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Query/AndExpr.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Query/ExpressionInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/Query/OrExpr.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/RawMarkupContainerInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/StringContainerHelper.php +%%WWWDIR%%/vendor/league/commonmark/src/Node/StringContainerInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Normalizer/SlugNormalizer.php +%%WWWDIR%%/vendor/league/commonmark/src/Normalizer/TextNormalizer.php +%%WWWDIR%%/vendor/league/commonmark/src/Normalizer/TextNormalizerInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Normalizer/UniqueSlugNormalizer.php +%%WWWDIR%%/vendor/league/commonmark/src/Normalizer/UniqueSlugNormalizerInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Output/RenderedContent.php +%%WWWDIR%%/vendor/league/commonmark/src/Output/RenderedContentInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/AbstractBlockContinueParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/BlockContinue.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/BlockContinueParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/BlockContinueParserWithInlinesInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/BlockStart.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/BlockStartParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/DocumentBlockParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/ParagraphParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Block/SkipLinesStartingWithLettersParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Cursor.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/CursorState.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Inline/InlineParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Inline/InlineParserMatch.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/Inline/NewlineParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/InlineParserContext.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/InlineParserEngine.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/InlineParserEngineInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParserInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParserState.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParserStateInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Parser/ParserLogicException.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/MemoryLimitedReferenceMap.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/Reference.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceMap.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceMapInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceParser.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceableInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/Block/DocumentRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/Block/ParagraphRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/ChildNodeRendererInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/DocumentRendererInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/HtmlDecorator.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/HtmlRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/Inline/NewlineRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/Inline/TextRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/MarkdownRendererInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/NoMatchingRendererException.php +%%WWWDIR%%/vendor/league/commonmark/src/Renderer/NodeRendererInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/ArrayCollection.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/Html5EntityDecoder.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/HtmlElement.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/HtmlFilter.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/LinkParserHelper.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/PrioritizedList.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/RegexHelper.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/SpecReader.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/UrlEncoder.php +%%WWWDIR%%/vendor/league/commonmark/src/Util/Xml.php +%%WWWDIR%%/vendor/league/commonmark/src/Xml/FallbackNodeXmlRenderer.php +%%WWWDIR%%/vendor/league/commonmark/src/Xml/MarkdownToXmlConverter.php +%%WWWDIR%%/vendor/league/commonmark/src/Xml/XmlNodeRendererInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Xml/XmlRenderer.php +%%WWWDIR%%/vendor/league/config/CHANGELOG.md +%%WWWDIR%%/vendor/league/config/LICENSE.md +%%WWWDIR%%/vendor/league/config/README.md +%%WWWDIR%%/vendor/league/config/composer.json +%%WWWDIR%%/vendor/league/config/src/Configuration.php +%%WWWDIR%%/vendor/league/config/src/ConfigurationAwareInterface.php +%%WWWDIR%%/vendor/league/config/src/ConfigurationBuilderInterface.php +%%WWWDIR%%/vendor/league/config/src/ConfigurationInterface.php +%%WWWDIR%%/vendor/league/config/src/ConfigurationProviderInterface.php +%%WWWDIR%%/vendor/league/config/src/Exception/ConfigurationExceptionInterface.php +%%WWWDIR%%/vendor/league/config/src/Exception/InvalidConfigurationException.php +%%WWWDIR%%/vendor/league/config/src/Exception/UnknownOptionException.php +%%WWWDIR%%/vendor/league/config/src/Exception/ValidationException.php +%%WWWDIR%%/vendor/league/config/src/MutableConfigurationInterface.php +%%WWWDIR%%/vendor/league/config/src/ReadOnlyConfiguration.php +%%WWWDIR%%/vendor/league/config/src/SchemaBuilderInterface.php %%WWWDIR%%/vendor/league/csv/LICENSE %%WWWDIR%%/vendor/league/csv/autoload.php %%WWWDIR%%/vendor/league/csv/composer.json +%%WWWDIR%%/vendor/league/csv/phpstan-build.neon %%WWWDIR%%/vendor/league/csv/src/AbstractCsv.php +%%WWWDIR%%/vendor/league/csv/src/Bom.php +%%WWWDIR%%/vendor/league/csv/src/Buffer.php %%WWWDIR%%/vendor/league/csv/src/ByteSequence.php +%%WWWDIR%%/vendor/league/csv/src/CallbackStreamFilter.php %%WWWDIR%%/vendor/league/csv/src/CannotInsertRecord.php %%WWWDIR%%/vendor/league/csv/src/CharsetConverter.php %%WWWDIR%%/vendor/league/csv/src/ColumnConsistency.php %%WWWDIR%%/vendor/league/csv/src/EncloseField.php %%WWWDIR%%/vendor/league/csv/src/EscapeFormula.php %%WWWDIR%%/vendor/league/csv/src/Exception.php +%%WWWDIR%%/vendor/league/csv/src/FragmentFinder.php +%%WWWDIR%%/vendor/league/csv/src/FragmentNotFound.php %%WWWDIR%%/vendor/league/csv/src/HTMLConverter.php +%%WWWDIR%%/vendor/league/csv/src/HttpHeaders.php %%WWWDIR%%/vendor/league/csv/src/Info.php %%WWWDIR%%/vendor/league/csv/src/InvalidArgument.php +%%WWWDIR%%/vendor/league/csv/src/JsonConverter.php +%%WWWDIR%%/vendor/league/csv/src/JsonFormat.php %%WWWDIR%%/vendor/league/csv/src/MapIterator.php +%%WWWDIR%%/vendor/league/csv/src/Query/Constraint/Column.php +%%WWWDIR%%/vendor/league/csv/src/Query/Constraint/Comparison.php +%%WWWDIR%%/vendor/league/csv/src/Query/Constraint/Criteria.php +%%WWWDIR%%/vendor/league/csv/src/Query/Constraint/Offset.php +%%WWWDIR%%/vendor/league/csv/src/Query/Constraint/TwoColumns.php +%%WWWDIR%%/vendor/league/csv/src/Query/Limit.php +%%WWWDIR%%/vendor/league/csv/src/Query/Ordering/Column.php +%%WWWDIR%%/vendor/league/csv/src/Query/Ordering/MultiSort.php +%%WWWDIR%%/vendor/league/csv/src/Query/Predicate.php +%%WWWDIR%%/vendor/league/csv/src/Query/PredicateCombinator.php +%%WWWDIR%%/vendor/league/csv/src/Query/QueryException.php +%%WWWDIR%%/vendor/league/csv/src/Query/Row.php +%%WWWDIR%%/vendor/league/csv/src/Query/Sort.php +%%WWWDIR%%/vendor/league/csv/src/Query/SortCombinator.php %%WWWDIR%%/vendor/league/csv/src/RFC4180Field.php +%%WWWDIR%%/vendor/league/csv/src/RdbmsResult.php %%WWWDIR%%/vendor/league/csv/src/Reader.php %%WWWDIR%%/vendor/league/csv/src/ResultSet.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/AfterMapping.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/ArrayShape.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CallbackCasting.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToArray.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToBool.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToDate.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToEnum.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToFloat.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToInt.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/CastToString.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/DenormalizationFailed.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/Denormalizer.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/MapCell.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/MapRecord.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/MappingFailed.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/PropertySetter.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/SerializationFailed.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/Type.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/TypeCasting.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/TypeCastingFailed.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/TypeCastingInfo.php +%%WWWDIR%%/vendor/league/csv/src/Serializer/TypeCastingTargetType.php %%WWWDIR%%/vendor/league/csv/src/Statement.php %%WWWDIR%%/vendor/league/csv/src/Stream.php +%%WWWDIR%%/vendor/league/csv/src/StreamFilter.php +%%WWWDIR%%/vendor/league/csv/src/SwapDelimiter.php %%WWWDIR%%/vendor/league/csv/src/SyntaxError.php +%%WWWDIR%%/vendor/league/csv/src/TabularData.php +%%WWWDIR%%/vendor/league/csv/src/TabularDataProvider.php %%WWWDIR%%/vendor/league/csv/src/TabularDataReader.php +%%WWWDIR%%/vendor/league/csv/src/TabularDataWriter.php %%WWWDIR%%/vendor/league/csv/src/UnableToProcessCsv.php %%WWWDIR%%/vendor/league/csv/src/UnavailableFeature.php %%WWWDIR%%/vendor/league/csv/src/UnavailableStream.php @@ -4598,6 +6122,60 @@ %%WWWDIR%%/vendor/league/csv/src/XMLConverter.php %%WWWDIR%%/vendor/league/csv/src/functions.php %%WWWDIR%%/vendor/league/csv/src/functions_include.php +%%WWWDIR%%/vendor/league/event/LICENSE +%%WWWDIR%%/vendor/league/event/composer.json +%%WWWDIR%%/vendor/league/event/src/BufferedEventDispatcher.php +%%WWWDIR%%/vendor/league/event/src/EventDispatcher.php +%%WWWDIR%%/vendor/league/event/src/EventDispatcherAware.php +%%WWWDIR%%/vendor/league/event/src/EventDispatcherAwareBehavior.php +%%WWWDIR%%/vendor/league/event/src/EventDispatchingListenerRegistry.php +%%WWWDIR%%/vendor/league/event/src/EventGenerator.php +%%WWWDIR%%/vendor/league/event/src/EventGeneratorBehavior.php +%%WWWDIR%%/vendor/league/event/src/HasEventName.php +%%WWWDIR%%/vendor/league/event/src/Listener.php +%%WWWDIR%%/vendor/league/event/src/ListenerPriority.php +%%WWWDIR%%/vendor/league/event/src/ListenerRegistry.php +%%WWWDIR%%/vendor/league/event/src/ListenerSubscriber.php +%%WWWDIR%%/vendor/league/event/src/OneTimeListener.php +%%WWWDIR%%/vendor/league/event/src/PrioritizedListenerRegistry.php +%%WWWDIR%%/vendor/league/event/src/PrioritizedListenersForEvent.php +%%WWWDIR%%/vendor/league/event/src/UnableToSubscribeListener.php +%%WWWDIR%%/vendor/league/html-to-markdown/CHANGELOG.md +%%WWWDIR%%/vendor/league/html-to-markdown/CONDUCT.md +%%WWWDIR%%/vendor/league/html-to-markdown/LICENSE +%%WWWDIR%%/vendor/league/html-to-markdown/README.md +%%WWWDIR%%/vendor/league/html-to-markdown/bin/html-to-markdown +%%WWWDIR%%/vendor/league/html-to-markdown/composer.json +%%WWWDIR%%/vendor/league/html-to-markdown/phpcs.xml.dist +%%WWWDIR%%/vendor/league/html-to-markdown/phpstan.neon.dist +%%WWWDIR%%/vendor/league/html-to-markdown/psalm.xml +%%WWWDIR%%/vendor/league/html-to-markdown/src/Coerce.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Configuration.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/BlockquoteConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/CodeConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/CommentConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/ConverterInterface.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/DefaultConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/DivConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/EmphasisConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/HardBreakConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/HeaderConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/HorizontalRuleConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/ImageConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/LinkConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/ListBlockConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/ListItemConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/ParagraphConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/PreformattedConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/TableConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Converter/TextConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Element.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/ElementInterface.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/Environment.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/HtmlConverter.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/HtmlConverterInterface.php +%%WWWDIR%%/vendor/league/html-to-markdown/src/PreConverterInterface.php %%WWWDIR%%/vendor/league/oauth2-client/LICENSE %%WWWDIR%%/vendor/league/oauth2-client/README.md %%WWWDIR%%/vendor/league/oauth2-client/composer.json @@ -4637,27 +6215,267 @@ %%WWWDIR%%/vendor/league/oauth2-google/src/Exception/HostedDomainException.php %%WWWDIR%%/vendor/league/oauth2-google/src/Provider/Google.php %%WWWDIR%%/vendor/league/oauth2-google/src/Provider/GoogleUser.php +%%WWWDIR%%/vendor/league/oauth2-server/LICENSE +%%WWWDIR%%/vendor/league/oauth2-server/composer.json +%%WWWDIR%%/vendor/league/oauth2-server/phpcs.xml.dist +%%WWWDIR%%/vendor/league/oauth2-server/phpstan.neon.dist +%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationServer.php +%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationValidators/AuthorizationValidatorInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/CodeChallengeVerifierInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/PlainVerifier.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/S256Verifier.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CryptKey.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CryptKeyInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/CryptTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/AccessTokenEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/AuthCodeEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/ClientEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/DeviceCodeEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/RefreshTokenEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/ScopeEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/TokenInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/AccessTokenTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/AuthCodeTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/ClientTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/DeviceCodeTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/EntityTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/RefreshTokenTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/ScopeTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/TokenEntityTrait.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/UserEntityInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/EventEmitting/AbstractEvent.php +%%WWWDIR%%/vendor/league/oauth2-server/src/EventEmitting/EmitterAwareInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/EventEmitting/EmitterAwarePolyfill.php +%%WWWDIR%%/vendor/league/oauth2-server/src/EventEmitting/EventEmitter.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Exception/OAuthServerException.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Exception/UniqueTokenIdentifierConstraintViolationException.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AbstractAuthorizeGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AbstractGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/DeviceCodeGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/GrantTypeInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/ImplicitGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/PasswordGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Middleware/AuthorizationServerMiddleware.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Middleware/ResourceServerMiddleware.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RedirectUriValidators/RedirectUriValidator.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RedirectUriValidators/RedirectUriValidatorInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/AccessTokenRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/AuthCodeRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/ClientRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/DeviceCodeRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/RefreshTokenRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/RepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/ScopeRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/UserRepositoryInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RequestAccessTokenEvent.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RequestEvent.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RequestRefreshTokenEvent.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RequestTypes/AuthorizationRequest.php +%%WWWDIR%%/vendor/league/oauth2-server/src/RequestTypes/AuthorizationRequestInterface.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResourceServer.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/AbstractResponseType.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/BearerTokenResponse.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/DeviceCodeResponse.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/RedirectResponse.php +%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/ResponseTypeInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/AuthorityInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/DataPathInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/DomainHostInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/FragmentInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/HostInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/IpHostInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/PathInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/PortInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/QueryInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/SegmentedPathInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/UriAccess.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/UriComponentInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/UriException.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/UriInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Contracts/UserInfoInterface.php +%%WWWDIR%%/vendor/league/uri-interfaces/Encoder.php +%%WWWDIR%%/vendor/league/uri-interfaces/Exceptions/ConversionFailed.php +%%WWWDIR%%/vendor/league/uri-interfaces/Exceptions/MissingFeature.php +%%WWWDIR%%/vendor/league/uri-interfaces/Exceptions/OffsetOutOfBounds.php +%%WWWDIR%%/vendor/league/uri-interfaces/Exceptions/SyntaxError.php +%%WWWDIR%%/vendor/league/uri-interfaces/FeatureDetection.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv4/BCMathCalculator.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv4/Calculator.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv4/Converter.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv4/GMPCalculator.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv4/NativeCalculator.php +%%WWWDIR%%/vendor/league/uri-interfaces/IPv6/Converter.php +%%WWWDIR%%/vendor/league/uri-interfaces/Idna/Converter.php +%%WWWDIR%%/vendor/league/uri-interfaces/Idna/Error.php +%%WWWDIR%%/vendor/league/uri-interfaces/Idna/Option.php +%%WWWDIR%%/vendor/league/uri-interfaces/Idna/Result.php +%%WWWDIR%%/vendor/league/uri-interfaces/KeyValuePair/Converter.php +%%WWWDIR%%/vendor/league/uri-interfaces/LICENSE +%%WWWDIR%%/vendor/league/uri-interfaces/QueryString.php +%%WWWDIR%%/vendor/league/uri-interfaces/UriString.php +%%WWWDIR%%/vendor/league/uri-interfaces/composer.json +%%WWWDIR%%/vendor/league/uri/BaseUri.php +%%WWWDIR%%/vendor/league/uri/Http.php +%%WWWDIR%%/vendor/league/uri/HttpFactory.php +%%WWWDIR%%/vendor/league/uri/LICENSE +%%WWWDIR%%/vendor/league/uri/Uri.php +%%WWWDIR%%/vendor/league/uri/UriInfo.php +%%WWWDIR%%/vendor/league/uri/UriResolver.php +%%WWWDIR%%/vendor/league/uri/UriTemplate.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/Expression.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/Operator.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/Template.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/TemplateCanNotBeExpanded.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/VarSpecifier.php +%%WWWDIR%%/vendor/league/uri/UriTemplate/VariableBag.php +%%WWWDIR%%/vendor/league/uri/composer.json +%%WWWDIR%%/vendor/maennchen/zipstream-php/LICENSE +%%WWWDIR%%/vendor/maennchen/zipstream-php/README.md +%%WWWDIR%%/vendor/maennchen/zipstream-php/composer.json +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/ContentLength.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/FlySystem.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/Nginx.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/Options.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/PSR7Streams.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/StreamOutput.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/Symfony.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/Varnish.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/guides/index.rst +%%WWWDIR%%/vendor/maennchen/zipstream-php/phpdoc.dist.xml +%%WWWDIR%%/vendor/maennchen/zipstream-php/phpunit.xml.dist +%%WWWDIR%%/vendor/maennchen/zipstream-php/psalm.xml +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/CentralDirectoryFileHeader.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/CompressionMethod.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/DataDescriptor.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/EndOfCentralDirectory.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/DosTimeOverflowException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/FileNotFoundException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/FileNotReadableException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/FileSizeIncorrectException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/OverflowException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/ResourceActionException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/SimulationFileUnknownException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/StreamNotReadableException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception/StreamNotSeekableException.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/File.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/GeneralPurposeBitFlag.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/LocalFileHeader.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/OperationMode.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/PackField.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Time.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Version.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zip64/DataDescriptor.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zip64/EndOfCentralDirectory.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zip64/EndOfCentralDirectoryLocator.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zip64/ExtendedInformationExtraField.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/ZipStream.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Assertions.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/CentralDirectoryFileHeaderTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/DataDescriptorTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/EndOfCentralDirectoryTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/EndlessCycleStream.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/FaultInjectionResource.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/LocalFileHeaderTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/PackFieldTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/ResourceStream.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Tempfile.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/TimeTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Util.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zip64/DataDescriptorTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zip64/EndOfCentralDirectoryLocatorTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zip64/EndOfCentralDirectoryTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zip64/ExtendedInformationExtraFieldTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/ZipStreamTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php +%%WWWDIR%%/vendor/maennchen/zipstream-php/test/bootstrap.php +%%WWWDIR%%/vendor/markbaker/complex/README.md +%%WWWDIR%%/vendor/markbaker/complex/classes/src/Complex.php +%%WWWDIR%%/vendor/markbaker/complex/classes/src/Exception.php +%%WWWDIR%%/vendor/markbaker/complex/classes/src/Functions.php +%%WWWDIR%%/vendor/markbaker/complex/classes/src/Operations.php +%%WWWDIR%%/vendor/markbaker/complex/composer.json +%%WWWDIR%%/vendor/markbaker/complex/examples/complexTest.php +%%WWWDIR%%/vendor/markbaker/complex/examples/testFunctions.php +%%WWWDIR%%/vendor/markbaker/complex/examples/testOperations.php +%%WWWDIR%%/vendor/markbaker/complex/license.md +%%WWWDIR%%/vendor/markbaker/matrix/README.md +%%WWWDIR%%/vendor/markbaker/matrix/buildPhar.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Builder.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Decomposition/Decomposition.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Decomposition/LU.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Decomposition/QR.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Div0Exception.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Exception.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Functions.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Matrix.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operations.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/Addition.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/DirectSum.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/Division.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/Multiplication.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/Operator.php +%%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators/Subtraction.php +%%WWWDIR%%/vendor/markbaker/matrix/composer.json +%%WWWDIR%%/vendor/markbaker/matrix/examples/test.php +%%WWWDIR%%/vendor/markbaker/matrix/infection.json.dist +%%WWWDIR%%/vendor/markbaker/matrix/license.md +%%WWWDIR%%/vendor/markbaker/matrix/phpstan.neon +%%WWWDIR%%/vendor/masterminds/html5/CREDITS +%%WWWDIR%%/vendor/masterminds/html5/LICENSE.txt +%%WWWDIR%%/vendor/masterminds/html5/README.md +%%WWWDIR%%/vendor/masterminds/html5/RELEASE.md +%%WWWDIR%%/vendor/masterminds/html5/UPGRADING.md +%%WWWDIR%%/vendor/masterminds/html5/bin/entities.php +%%WWWDIR%%/vendor/masterminds/html5/composer.json +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Elements.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Entities.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Exception.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/InstructionProcessor.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/CharacterReference.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/DOMTreeBuilder.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/EventHandler.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/FileInputStream.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/InputStream.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/ParseError.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/README.md +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/Scanner.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/StringInputStream.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/Tokenizer.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/TreeBuildingRules.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser/UTF8Utils.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer/HTML5Entities.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer/OutputRules.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer/README.md +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer/RulesInterface.php +%%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer/Traverser.php %%WWWDIR%%/vendor/mexitek/phpcolors/LICENSE %%WWWDIR%%/vendor/mexitek/phpcolors/README.md %%WWWDIR%%/vendor/mexitek/phpcolors/composer.json +%%WWWDIR%%/vendor/mexitek/phpcolors/demo/demo.php +%%WWWDIR%%/vendor/mexitek/phpcolors/demo/phpColor-demo.png %%WWWDIR%%/vendor/mexitek/phpcolors/src/Mexitek/PHPColors/Color.php -%%WWWDIR%%/vendor/michelf/php-markdown/License.md -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/Markdown.inc.php -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/Markdown.php -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/MarkdownExtra.inc.php -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/MarkdownExtra.php -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/MarkdownInterface.inc.php -%%WWWDIR%%/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php -%%WWWDIR%%/vendor/michelf/php-markdown/Readme.md -%%WWWDIR%%/vendor/michelf/php-markdown/Readme.php -%%WWWDIR%%/vendor/michelf/php-markdown/composer.json -%%WWWDIR%%/vendor/michelf/php-markdown/phpunit.xml.dist +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/bootstrap.php +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorAnalyze.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorChange.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorComplementary.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorConvertHslToHex.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorConvertNameToHex.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorConvertRgbToHex.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorInput.phpt +%%WWWDIR%%/vendor/mexitek/phpcolors/tests/colorMix.phpt %%WWWDIR%%/vendor/monolog/monolog/CHANGELOG.md %%WWWDIR%%/vendor/monolog/monolog/LICENSE %%WWWDIR%%/vendor/monolog/monolog/README.md -%%WWWDIR%%/vendor/monolog/monolog/UPGRADE.md %%WWWDIR%%/vendor/monolog/monolog/composer.json %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Attribute/WithMonologChannel.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/ErrorHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php @@ -4677,6 +6495,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/SyslogFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php @@ -4742,7 +6561,6 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php -%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php @@ -4752,11 +6570,15 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/JsonSerializableDateTimeImmutable.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Level.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/LogRecord.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Logger.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/ClosureContextProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/LoadAverageProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php @@ -4770,22 +6592,70 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Registry.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/ResettableInterface.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/SignalHandler.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Test/MonologTestCase.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Test/TestCase.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Utils.php +%%WWWDIR%%/vendor/nette/schema/composer.json +%%WWWDIR%%/vendor/nette/schema/license.md +%%WWWDIR%%/vendor/nette/schema/readme.md +%%WWWDIR%%/vendor/nette/schema/src/Schema/Context.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/DynamicParameter.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Elements/AnyOf.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Elements/Base.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Elements/Structure.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Elements/Type.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Expect.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Helpers.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Message.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Processor.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/Schema.php +%%WWWDIR%%/vendor/nette/schema/src/Schema/ValidationException.php +%%WWWDIR%%/vendor/nette/utils/composer.json +%%WWWDIR%%/vendor/nette/utils/license.md +%%WWWDIR%%/vendor/nette/utils/readme.md +%%WWWDIR%%/vendor/nette/utils/src/HtmlStringable.php +%%WWWDIR%%/vendor/nette/utils/src/Iterators/CachingIterator.php +%%WWWDIR%%/vendor/nette/utils/src/Iterators/Mapper.php +%%WWWDIR%%/vendor/nette/utils/src/SmartObject.php +%%WWWDIR%%/vendor/nette/utils/src/StaticClass.php +%%WWWDIR%%/vendor/nette/utils/src/Translator.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ArrayHash.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ArrayList.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Arrays.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Callback.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/DateTime.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/FileInfo.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/FileSystem.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Finder.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Floats.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Helpers.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Html.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Image.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ImageColor.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ImageType.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Iterables.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Json.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ObjectHelpers.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Paginator.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Random.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Reflection.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/ReflectionMethod.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Strings.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Type.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/Validators.php +%%WWWDIR%%/vendor/nette/utils/src/Utils/exceptions.php +%%WWWDIR%%/vendor/nette/utils/src/compatibility.php +%%WWWDIR%%/vendor/nette/utils/src/exceptions.php +%%WWWDIR%%/vendor/paragonie/sodium_compat/CONTRIBUTING.md %%WWWDIR%%/vendor/paragonie/sodium_compat/LICENSE %%WWWDIR%%/vendor/paragonie/sodium_compat/README.md -%%WWWDIR%%/vendor/paragonie/sodium_compat/autoload-php7.php %%WWWDIR%%/vendor/paragonie/sodium_compat/autoload.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/composer-php52.json %%WWWDIR%%/vendor/paragonie/sodium_compat/composer.json -%%WWWDIR%%/vendor/paragonie/sodium_compat/lib/constants.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/lib/namespaced.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/php72compat.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/php72compat_const.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/php84compat.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/php84compat_const.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/ristretto255.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/lib/sodium_compat.php %%WWWDIR%%/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php %%WWWDIR%%/vendor/paragonie/sodium_compat/namespaced/Compat.php %%WWWDIR%%/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php @@ -4813,6 +6683,7 @@ %%WWWDIR%%/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php %%WWWDIR%%/vendor/paragonie/sodium_compat/namespaced/Crypto.php %%WWWDIR%%/vendor/paragonie/sodium_compat/namespaced/File.php +%%WWWDIR%%/vendor/paragonie/sodium_compat/psalm-new.xml %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Compat.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/AEGIS/State128L.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/AEGIS/State256.php @@ -4850,107 +6721,813 @@ %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/X25519.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/README.md -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Int32.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Int64.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/SipHash.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Util.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/X25519.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Crypto.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/Crypto32.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/File.php -%%WWWDIR%%/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php %%WWWDIR%%/vendor/paragonie/sodium_compat/src/SodiumException.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/LICENSE +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/README.md +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/composer.json +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Element.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/File.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Fqsen.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Location.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Project.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/ProjectFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/LICENSE +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/README.md +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/composer.json +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Description.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Extends_.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/AbstractPHPStanFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/ExtendsFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Factory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/ImplementsFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/MethodFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/MethodParameterFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/PHPStanFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/ParamFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/PropertyFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/PropertyReadFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/PropertyWriteFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/ReturnFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/TemplateExtendsFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/TemplateFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/TemplateImplementsFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/VarFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Implements_.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/InvalidTag.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/MethodParameter.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Mixin.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TagWithType.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Template.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TemplateCovariant.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TemplateExtends.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TemplateImplements.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/Exception/PcreException.php +%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/Utils.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/LICENSE +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/README.md +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer.json +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/docs/getting-started.rst +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/docs/index.rst +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phpdoc.dist.xml +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/FqsenResolver.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoType.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ArrayShape.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ArrayShapeItem.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/CallableString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ConstExpression.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/False_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/FloatValue.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/HtmlEscapedString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/IntegerRange.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/IntegerValue.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ListShape.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ListShapeItem.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/List_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/LiteralString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/LowercaseString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NegativeInteger.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NonEmptyArray.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NonEmptyList.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NonEmptyLowercaseString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NonEmptyString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/NumericString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/Numeric_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ObjectShape.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ObjectShapeItem.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/PositiveInteger.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ShapeItem.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/StringValue.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/TraitString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes/True_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Type.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/TypeResolver.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/AbstractList.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/AggregatedType.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/ArrayKey.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Array_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Boolean.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/CallableParameter.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Callable_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/ClassString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Collection.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Compound.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Context.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/ContextFactory.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Expression.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Float_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Integer.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/InterfaceString.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Intersection.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Iterable_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Mixed_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Never_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Null_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Nullable.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Object_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Parent_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Resource_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Scalar.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Self_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Static_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/String_.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/This.php +%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Void_.php %%WWWDIR%%/vendor/phplang/scope-exit/README.md %%WWWDIR%%/vendor/phplang/scope-exit/composer.json %%WWWDIR%%/vendor/phplang/scope-exit/src/ScopeExit.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/COMMITMENT -%%WWWDIR%%/vendor/phpmailer/phpmailer/LICENSE -%%WWWDIR%%/vendor/phpmailer/phpmailer/README.md -%%WWWDIR%%/vendor/phpmailer/phpmailer/SECURITY.md -%%WWWDIR%%/vendor/phpmailer/phpmailer/VERSION -%%WWWDIR%%/vendor/phpmailer/phpmailer/composer.json -%%WWWDIR%%/vendor/phpmailer/phpmailer/get_oauth_token.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-mn.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/DSNConfigurator.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/Exception.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/OAuth.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/PHPMailer.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/POP3.php -%%WWWDIR%%/vendor/phpmailer/phpmailer/src/SMTP.php +%%WWWDIR%%/vendor/phplang/scope-exit/tests/BasicTest.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/CHANGELOG.md +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/LICENSE +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/README.md +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/composer.json +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ArrayEnabled.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/BinaryComparison.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/CalculationBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/CalculationLocale.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DAverage.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCount.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DCountA.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DGet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMax.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DMin.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DProduct.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDev.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DStDevP.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DSum.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVar.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DVarP.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database/DatabaseAbstract.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Constants.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Date.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateParts.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Days360.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Difference.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Helpers.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/NetworkDays.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeParts.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/TimeValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Week.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/WorkDay.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/YearFrac.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/ArrayArgumentProcessor.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/BranchPruner.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/FormattedNumber.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Operands/Operand.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Operands/StructuredReference.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselI.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselJ.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselK.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BesselY.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/BitWise.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexFunctions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ComplexOperations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Constants.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertBinary.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertDecimal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertHex.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertOctal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ConvertUOM.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/EngineeringValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Erf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/ErfC.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Amortization.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/CashFlowValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Interest.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/InterestAndPrincipal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic/Payments.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Single.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/NonPeriodic.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable/Periodic.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Constants.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Coupons.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Depreciation.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/FinancialValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Helpers.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/InterestRate.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/AccruedInterest.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Rates.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/SecurityValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities/Yields.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FunctionArray.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ErrorValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/ExcelError.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information/Value.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/ExcelArrayPseudoFunctions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/MakeMatrix.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal/WildcardMatch.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Boolean.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Operations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Address.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ChooseRowsEtc.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/ExcelMatch.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Filter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Formula.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/HLookup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Helpers.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hstack.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Hyperlink.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Indirect.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Lookup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/LookupRefValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Offset.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/RowColumnInformation.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Selection.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Sort.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/TorowTocol.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Unique.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/VLookup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Vstack.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Absolute.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Angle.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Arabic.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Base.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Ceiling.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Combinations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Exp.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Factorial.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Floor.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Gcd.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Helpers.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/IntClass.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Lcm.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Logarithms.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/MatrixFunctions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Operations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Random.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Roman.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Round.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SeriesSum.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sign.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sqrt.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Subtotal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Sum.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/SumSquares.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosecant.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cosine.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Cotangent.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Secant.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Sine.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig/Tangent.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/AggregateBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Conditional.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Confidence.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Counts.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Deviations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Binomial.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/ChiSquared.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/DistributionValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Exponential.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/F.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Fisher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Gamma.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/GammaBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/HyperGeometric.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/StudentT.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Maximum.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Minimum.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Permutations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Size.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Standardize.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/StatisticalValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Trends.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Variances.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CaseConvert.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Concatenate.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Extract.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Helpers.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Replace.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Search.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Text.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Trim.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web/Service.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/Translations.xlsx +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellAddress.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/CellRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/ColumnRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IgnoredErrors.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/RowRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/CellReferenceHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/AxisText.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/ChartColor.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraphRendererBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/MtJpGraphRenderer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/PHP Charting Libraries.txt +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/TrendLine.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory/SimpleCache1.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory/SimpleCache3.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DefinedName.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Dimension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Downloader.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Handler.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Size.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/TextGrid.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedFormula.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/Styles.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/AutoFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/BaseLoader.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/DefinedNames.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/FormulaTranslator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Biff5.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Biff8.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/DataValidationHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ListFunctions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/LoadSpreadsheet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Mappings.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellAlignment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/CellFont.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/XlsBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Namespaces.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SharedFormula.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/TableReader.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/WorkbookView.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/DataValidations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/PageSettings.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Properties.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Alignment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Border.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Fill.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/Font.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/NumberFormat.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style/StyleBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/IntOrFloat.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellMatcher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/CellStyleAssessor.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalColorScale.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBar.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalDataBarExtension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormattingRuleExtension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/ConditionalIconSet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/IconSetValues.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/StyleMerger.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Blanks.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/CellValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/DateValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Duplicates.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Errors.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/Expression.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/TextValue.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardAbstract.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard/WizardInterface.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/BaseFormatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/DateFormatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Formatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/FractionFormatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/NumberFormatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/PercentageFormatter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Accounting.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Currency.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/CurrencyBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/CurrencyNegative.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Date.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/DateTime.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/DateTimeWizard.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Duration.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Locale.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Number.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/NumberBase.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Percentage.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Scientific.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Time.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard/Wizard.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/RgbTint.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Theme.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFit.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageBreak.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Pane.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ProtectedRange.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/Column.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableDxfsStyle.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table/TableStyle.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Validations.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/AutoFilters.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Style.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Formula.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/NamedExpressions.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/CellDataValidation.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ConditionalHelper.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/ErrorCode.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellAlignment.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellBorder.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/AutoFilter.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DefinedNames.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/FunctionPrefix.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Metadata.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Table.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/ZipStream0.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/ZipStream2.php +%%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/ZipStream3.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/LICENSE +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/README.md +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/UPGRADING.md +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/composer.json +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/AbstractNodeVisitor.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Attribute.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Comment.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayItemNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNullNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprStringNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstFetchNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/DoctrineConstExprStringNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Node.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/NodeAttributes.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/NodeTraverser.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/NodeVisitor.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/NodeVisitor/CloningVisitor.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/AssertTagMethodValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/AssertTagPropertyValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/AssertTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/DeprecatedTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineAnnotation.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineArgument.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineArray.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineArrayItem.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ExtendsTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ImplementsTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueParameterNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MixinTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamClosureThisTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamImmediatelyInvokedCallableTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamLaterInvokedCallableTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamOutTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PropertyTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PureUnlessCallableIsImpureTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/RequireExtendsTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/RequireImplementsTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ReturnTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/SealedTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/SelfOutTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TemplateTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ThrowsTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TypeAliasImportTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TypeAliasTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TypelessParamTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/UsesTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/VarTagValueNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeItemNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeUnsealedTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ConditionalTypeForParameterNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ConditionalTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ConstTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/InvalidTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ObjectShapeItemNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ObjectShapeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/OffsetAccessTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/TypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type/UnionTypeNode.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/ParserException.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/StringUnescaper.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/TokenIterator.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/ParserConfig.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Printer/DiffElem.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Printer/Differ.php +%%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Printer/Printer.php %%WWWDIR%%/vendor/psr/cache/CHANGELOG.md %%WWWDIR%%/vendor/psr/cache/LICENSE.txt %%WWWDIR%%/vendor/psr/cache/README.md @@ -4959,12 +7536,23 @@ %%WWWDIR%%/vendor/psr/cache/src/CacheItemInterface.php %%WWWDIR%%/vendor/psr/cache/src/CacheItemPoolInterface.php %%WWWDIR%%/vendor/psr/cache/src/InvalidArgumentException.php +%%WWWDIR%%/vendor/psr/clock/CHANGELOG.md +%%WWWDIR%%/vendor/psr/clock/LICENSE +%%WWWDIR%%/vendor/psr/clock/README.md +%%WWWDIR%%/vendor/psr/clock/composer.json +%%WWWDIR%%/vendor/psr/clock/src/ClockInterface.php %%WWWDIR%%/vendor/psr/container/LICENSE %%WWWDIR%%/vendor/psr/container/README.md %%WWWDIR%%/vendor/psr/container/composer.json %%WWWDIR%%/vendor/psr/container/src/ContainerExceptionInterface.php %%WWWDIR%%/vendor/psr/container/src/ContainerInterface.php %%WWWDIR%%/vendor/psr/container/src/NotFoundExceptionInterface.php +%%WWWDIR%%/vendor/psr/event-dispatcher/LICENSE +%%WWWDIR%%/vendor/psr/event-dispatcher/README.md +%%WWWDIR%%/vendor/psr/event-dispatcher/composer.json +%%WWWDIR%%/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php +%%WWWDIR%%/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php +%%WWWDIR%%/vendor/psr/event-dispatcher/src/StoppableEventInterface.php %%WWWDIR%%/vendor/psr/http-client/CHANGELOG.md %%WWWDIR%%/vendor/psr/http-client/LICENSE %%WWWDIR%%/vendor/psr/http-client/README.md @@ -4995,20 +7583,25 @@ %%WWWDIR%%/vendor/psr/http-message/src/StreamInterface.php %%WWWDIR%%/vendor/psr/http-message/src/UploadedFileInterface.php %%WWWDIR%%/vendor/psr/http-message/src/UriInterface.php +%%WWWDIR%%/vendor/psr/http-server-handler/LICENSE +%%WWWDIR%%/vendor/psr/http-server-handler/README.md +%%WWWDIR%%/vendor/psr/http-server-handler/composer.json +%%WWWDIR%%/vendor/psr/http-server-handler/src/RequestHandlerInterface.php +%%WWWDIR%%/vendor/psr/http-server-middleware/LICENSE +%%WWWDIR%%/vendor/psr/http-server-middleware/README.md +%%WWWDIR%%/vendor/psr/http-server-middleware/composer.json +%%WWWDIR%%/vendor/psr/http-server-middleware/src/MiddlewareInterface.php %%WWWDIR%%/vendor/psr/log/LICENSE -%%WWWDIR%%/vendor/psr/log/Psr/Log/AbstractLogger.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/InvalidArgumentException.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/LogLevel.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/LoggerAwareInterface.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/LoggerAwareTrait.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/LoggerInterface.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/LoggerTrait.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/NullLogger.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/Test/DummyTest.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php -%%WWWDIR%%/vendor/psr/log/Psr/Log/Test/TestLogger.php %%WWWDIR%%/vendor/psr/log/README.md %%WWWDIR%%/vendor/psr/log/composer.json +%%WWWDIR%%/vendor/psr/log/src/AbstractLogger.php +%%WWWDIR%%/vendor/psr/log/src/InvalidArgumentException.php +%%WWWDIR%%/vendor/psr/log/src/LogLevel.php +%%WWWDIR%%/vendor/psr/log/src/LoggerAwareInterface.php +%%WWWDIR%%/vendor/psr/log/src/LoggerAwareTrait.php +%%WWWDIR%%/vendor/psr/log/src/LoggerInterface.php +%%WWWDIR%%/vendor/psr/log/src/LoggerTrait.php +%%WWWDIR%%/vendor/psr/log/src/NullLogger.php %%WWWDIR%%/vendor/psr/simple-cache/LICENSE.md %%WWWDIR%%/vendor/psr/simple-cache/README.md %%WWWDIR%%/vendor/psr/simple-cache/composer.json @@ -5031,13 +7624,13 @@ %%WWWDIR%%/vendor/ramsey/collection/src/CollectionInterface.php %%WWWDIR%%/vendor/ramsey/collection/src/DoubleEndedQueue.php %%WWWDIR%%/vendor/ramsey/collection/src/DoubleEndedQueueInterface.php +%%WWWDIR%%/vendor/ramsey/collection/src/Exception/CollectionException.php %%WWWDIR%%/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php %%WWWDIR%%/vendor/ramsey/collection/src/Exception/InvalidArgumentException.php -%%WWWDIR%%/vendor/ramsey/collection/src/Exception/InvalidSortOrderException.php +%%WWWDIR%%/vendor/ramsey/collection/src/Exception/InvalidPropertyOrMethod.php %%WWWDIR%%/vendor/ramsey/collection/src/Exception/NoSuchElementException.php %%WWWDIR%%/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php %%WWWDIR%%/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php -%%WWWDIR%%/vendor/ramsey/collection/src/Exception/ValueExtractionException.php %%WWWDIR%%/vendor/ramsey/collection/src/GenericArray.php %%WWWDIR%%/vendor/ramsey/collection/src/Map/AbstractMap.php %%WWWDIR%%/vendor/ramsey/collection/src/Map/AbstractTypedMap.php @@ -5049,6 +7642,7 @@ %%WWWDIR%%/vendor/ramsey/collection/src/Queue.php %%WWWDIR%%/vendor/ramsey/collection/src/QueueInterface.php %%WWWDIR%%/vendor/ramsey/collection/src/Set.php +%%WWWDIR%%/vendor/ramsey/collection/src/Sort.php %%WWWDIR%%/vendor/ramsey/collection/src/Tool/TypeTrait.php %%WWWDIR%%/vendor/ramsey/collection/src/Tool/ValueExtractorTrait.php %%WWWDIR%%/vendor/ramsey/collection/src/Tool/ValueToStringTrait.php @@ -5075,6 +7669,7 @@ %%WWWDIR%%/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php %%WWWDIR%%/vendor/ramsey/uuid/src/Converter/Time/GenericTimeConverter.php %%WWWDIR%%/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Converter/Time/UnixTimeConverter.php %%WWWDIR%%/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php %%WWWDIR%%/vendor/ramsey/uuid/src/DegradedUuid.php %%WWWDIR%%/vendor/ramsey/uuid/src/DeprecatedUuidInterface.php @@ -5111,6 +7706,7 @@ %%WWWDIR%%/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php %%WWWDIR%%/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php %%WWWDIR%%/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Generator/UnixTimeGenerator.php %%WWWDIR%%/vendor/ramsey/uuid/src/Guid/Fields.php %%WWWDIR%%/vendor/ramsey/uuid/src/Guid/Guid.php %%WWWDIR%%/vendor/ramsey/uuid/src/Guid/GuidBuilder.php @@ -5135,8 +7731,11 @@ %%WWWDIR%%/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/Fields.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/FieldsInterface.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/MaxTrait.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/MaxUuid.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/NilTrait.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/NilUuid.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/TimeTrait.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidBuilder.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidInterface.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV1.php @@ -5144,6 +7743,9 @@ %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV3.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV4.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV5.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV6.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV7.php +%%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/UuidV8.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/Validator.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/VariantTrait.php %%WWWDIR%%/vendor/ramsey/uuid/src/Rfc4122/VersionTrait.php @@ -5163,14 +7765,19 @@ %%WWWDIR%%/vendor/rlanvin/php-rrule/CHANGELOG.md %%WWWDIR%%/vendor/rlanvin/php-rrule/LICENSE %%WWWDIR%%/vendor/rlanvin/php-rrule/README.md +%%WWWDIR%%/vendor/rlanvin/php-rrule/bin/import_windows_timezones.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/bin/review_translations.php %%WWWDIR%%/vendor/rlanvin/php-rrule/composer.json -%%WWWDIR%%/vendor/rlanvin/php-rrule/phpunit.xml.dist %%WWWDIR%%/vendor/rlanvin/php-rrule/src/RRule.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/RRuleInterface.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/RRuleTrait.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/RSet.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/RfcParser.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/bn.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/cz.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/da.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/de.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/el.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/en.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/es.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/fa.php @@ -5178,11 +7785,49 @@ %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/fr.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/he.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/it.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/ja.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/nl.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/pl.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/pt.php +%%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/ru.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n/sv.php %%WWWDIR%%/vendor/rlanvin/php-rrule/src/tzdata/windows.php +%%WWWDIR%%/vendor/robthree/twofactorauth/CHANGELOG.md +%%WWWDIR%%/vendor/robthree/twofactorauth/LICENSE +%%WWWDIR%%/vendor/robthree/twofactorauth/README.md +%%WWWDIR%%/vendor/robthree/twofactorauth/composer.json +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Algorithm.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/BaconQrCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/BaseHTTPQRCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/EndroidQrCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/EndroidQrCodeWithLogoProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/GoogleChartsQrCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/HandlesDataUri.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/IQRCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/ImageChartsQRCodeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/QRException.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/QRServerProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr/QRicketProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Rng/CSRNGProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Rng/IRNGProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Rng/RNGException.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time/HttpTimeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time/ITimeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time/LocalMachineTimeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time/NTPTimeProvider.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time/TimeException.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/TwoFactorAuth.php +%%WWWDIR%%/vendor/robthree/twofactorauth/lib/TwoFactorAuthException.php %%WWWDIR%%/vendor/sabre/dav/LICENSE %%WWWDIR%%/vendor/sabre/dav/README.md +%%WWWDIR%%/vendor/sabre/dav/bin/build.php +%%WWWDIR%%/vendor/sabre/dav/bin/migrateto20.php +%%WWWDIR%%/vendor/sabre/dav/bin/migrateto21.php +%%WWWDIR%%/vendor/sabre/dav/bin/migrateto30.php +%%WWWDIR%%/vendor/sabre/dav/bin/migrateto32.php +%%WWWDIR%%/vendor/sabre/dav/bin/naturalselection +%%WWWDIR%%/vendor/sabre/dav/bin/sabredav +%%WWWDIR%%/vendor/sabre/dav/bin/sabredav.php %%WWWDIR%%/vendor/sabre/dav/composer.json %%WWWDIR%%/vendor/sabre/dav/lib/CalDAV/Backend/AbstractBackend.php %%WWWDIR%%/vendor/sabre/dav/lib/CalDAV/Backend/BackendInterface.php @@ -5438,6 +8083,12 @@ %%WWWDIR%%/vendor/sabre/http/LICENSE %%WWWDIR%%/vendor/sabre/http/README.md %%WWWDIR%%/vendor/sabre/http/composer.json +%%WWWDIR%%/vendor/sabre/http/examples/asyncclient.php +%%WWWDIR%%/vendor/sabre/http/examples/basicauth.php +%%WWWDIR%%/vendor/sabre/http/examples/client.php +%%WWWDIR%%/vendor/sabre/http/examples/digestauth.php +%%WWWDIR%%/vendor/sabre/http/examples/reverseproxy.php +%%WWWDIR%%/vendor/sabre/http/examples/stringify.php %%WWWDIR%%/vendor/sabre/http/lib/Auth/AWS.php %%WWWDIR%%/vendor/sabre/http/lib/Auth/AbstractAuth.php %%WWWDIR%%/vendor/sabre/http/lib/Auth/Basic.php @@ -5460,6 +8111,27 @@ %%WWWDIR%%/vendor/sabre/http/lib/Version.php %%WWWDIR%%/vendor/sabre/http/lib/functions.php %%WWWDIR%%/vendor/sabre/http/phpstan.neon +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/Auth/AWSTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/Auth/BasicTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/Auth/BearerTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/Auth/DigestTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/ClientTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/FunctionsTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/MessageDecoratorTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/MessageTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/NegotiateTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/RequestDecoratorTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/RequestTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/ResponseDecoratorTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/ResponseTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/SapiTest.php +%%WWWDIR%%/vendor/sabre/http/tests/HTTP/URLUtilTest.php +%%WWWDIR%%/vendor/sabre/http/tests/bootstrap.php +%%WWWDIR%%/vendor/sabre/http/tests/phpunit.xml +%%WWWDIR%%/vendor/sabre/http/tests/www/bar.php +%%WWWDIR%%/vendor/sabre/http/tests/www/connection_aborted.php +%%WWWDIR%%/vendor/sabre/http/tests/www/foo +%%WWWDIR%%/vendor/sabre/http/tests/www/large.php %%WWWDIR%%/vendor/sabre/uri/LICENSE %%WWWDIR%%/vendor/sabre/uri/composer.json %%WWWDIR%%/vendor/sabre/uri/lib/InvalidUriException.php @@ -5467,6 +8139,15 @@ %%WWWDIR%%/vendor/sabre/uri/lib/functions.php %%WWWDIR%%/vendor/sabre/vobject/LICENSE %%WWWDIR%%/vendor/sabre/vobject/README.md +%%WWWDIR%%/vendor/sabre/vobject/bin/bench.php +%%WWWDIR%%/vendor/sabre/vobject/bin/bench_freebusygenerator.php +%%WWWDIR%%/vendor/sabre/vobject/bin/bench_manipulatevcard.php +%%WWWDIR%%/vendor/sabre/vobject/bin/fetch_windows_zones.php +%%WWWDIR%%/vendor/sabre/vobject/bin/generate_vcards +%%WWWDIR%%/vendor/sabre/vobject/bin/generateicalendardata.php +%%WWWDIR%%/vendor/sabre/vobject/bin/mergeduplicates.php +%%WWWDIR%%/vendor/sabre/vobject/bin/rrulebench.php +%%WWWDIR%%/vendor/sabre/vobject/bin/vobject %%WWWDIR%%/vendor/sabre/vobject/composer.json %%WWWDIR%%/vendor/sabre/vobject/lib/BirthdayCalendarGenerator.php %%WWWDIR%%/vendor/sabre/vobject/lib/Cli.php @@ -5578,60 +8259,307 @@ %%WWWDIR%%/vendor/scssphp/scssphp/LICENSE.md %%WWWDIR%%/vendor/scssphp/scssphp/README.md %%WWWDIR%%/vendor/scssphp/scssphp/composer.json -%%WWWDIR%%/vendor/scssphp/scssphp/scss.inc.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Base/Range.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/AtRootBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/CallableBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/ContentBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/DirectiveBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/EachBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/ElseBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/ElseifBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/ForBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/IfBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/MediaBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/NestedPropertyBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Block/WhileBlock.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Cache.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/AstNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssAtRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssComment.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssImport.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssKeyframeBlock.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssMediaQuery.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssMediaRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssParentNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssStyleRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssStylesheet.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssSupportsRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/CssValue.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/IsInvisibleVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/MediaQueryMergeResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/MediaQuerySingletonMergeResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssAtRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssComment.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssImport.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssKeyframeBlock.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssMediaRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssParentNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssStyleRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssStylesheet.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssSupportsRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/FakeAstNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Argument.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/ArgumentDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/ArgumentInvocation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/AtRootQuery.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/CallableInvocation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/ConfiguredVariable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperationExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/BooleanExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/ColorExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/FunctionExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/IfExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/InterpolatedFunctionExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/IsCalculationSafeVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/ListExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/MapExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/NullExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/NumberExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/ParenthesizedExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/SelectorExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/StringExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/SupportsExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperationExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/ValueExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression/VariableExpression.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Import.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Import/DynamicImport.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Import/StaticImport.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Interpolation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SassDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SassNode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SassReference.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/AtRootRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/AtRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/CallableDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ContentBlock.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ContentRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/DebugRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/Declaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/EachRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ElseClause.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ErrorRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ExtendRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ForRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/FunctionRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/HasContentVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/IfClause.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/IfRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/IfRuleClause.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ImportRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/IncludeRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/LoudComment.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/MediaRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/MixinRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ParentStatement.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/ReturnRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/SilentComment.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/StyleRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/Stylesheet.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/SupportsRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/VariableDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/WarnRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement/WhileRule.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsAnything.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsDeclaration.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsFunction.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsInterpolation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsNegation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsOperation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/AttributeOperator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/AttributeSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/ClassSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/Combinator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/ComplexSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/ComplexSelectorComponent.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/CompoundSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/IDSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/IsBogusVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/IsInvisibleVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/IsUselessVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/ParentSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/ParentSelectorVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/PlaceholderSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/PseudoSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/QualifiedName.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/Selector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/SelectorList.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/SimpleSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/TypeSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector/UniversalSelector.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Collection/Map.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Colors.php %%WWWDIR%%/vendor/scssphp/scssphp/src/CompilationResult.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Compiler.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Compiler/CachedResult.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Compiler/Environment.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/CompilerException.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/ParserException.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/RangeException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Compiler/LegacyValueVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Deprecation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/DeprecationStatus.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/ArgumentResults.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/Environment.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/EvaluateResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/EvaluateVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/EvaluationContext.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/LoadedStylesheet.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation/VisitorEvaluationContext.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/MultiSpanSassException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/MultiSpanSassFormatException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/MultiSpanSassRuntimeException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/MultiSpanSassScriptException.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SassException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SassFormatException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SassRuntimeException.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SassScriptException.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/ServerException.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Compact.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Compressed.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Crunched.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Debug.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Expanded.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/Nested.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter/OutputBlock.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SimpleSassException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SimpleSassFormatException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Exception/SimpleSassRuntimeException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ComplexSelectorMap.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ConcreteExtensionStore.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/EmptyExtensionStore.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ExtendMode.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ExtendUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/Extender.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/Extension.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ExtensionStore.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/MergedExtension.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/ObjectSet.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Extend/SimpleSelectorMap.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/ColorFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/FunctionRegistry.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/ListFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/MapFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/MathFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/MetaFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/SelectorFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Function/StringFunctions.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/CanonicalizeContext.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/CanonicalizeResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/FilesystemImporter.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/ImportCache.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/ImportContext.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/ImportUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/Importer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/ImporterResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/LegacyCallbackImporter.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/NoOpImporter.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Importer/SpecialCacheValue.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Logger/DeprecationProcessingLogger.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Logger/LoggerInterface.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Logger/QuietLogger.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Logger/StreamLogger.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Node.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Node/Number.php %%WWWDIR%%/vendor/scssphp/scssphp/src/OutputStyle.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/AtRootQueryParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/CssParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/FormatException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/InterpolationBuffer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/InterpolationMap.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/KeyframeSelectorParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/LineScanner.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/MediaQueryParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/MultiSourceFormatException.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/Parser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/SassParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/ScssParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/SelectorParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/StringScanner.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Parser/StylesheetParser.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SassCallable/BuiltInCallable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SassCallable/PlainCssCallable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SassCallable/SassCallable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SassCallable/UserDefinedCallable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/SerializeResult.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/SerializeVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/Serializer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/SimpleStringBuffer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/SourceMapBuffer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/StringBuffer.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer/TrackingSourceMapBuffer.php %%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/Base64.php %%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/Base64VLQ.php -%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/Builder/Entry.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/SingleMapping.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/TargetEntry.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/TargetLineEntry.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceSpan/LazyFileSpan.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/SourceSpan/MultiSpan.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/StackTrace/Frame.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/StackTrace/Trace.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Syntax.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Type.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Util.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/ArrayUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/AstUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/Box.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/Character.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/Equatable.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/EquatableUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/ErrorUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/IterableUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/ListUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/LoggerUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/MakeExpressionCalculationSafe.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/ModifiableBox.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/NumberUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/ParserUtil.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Util/Path.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/SpanUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/StringUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Util/UriUtil.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/CalculationOperation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/CalculationOperator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/ColorFormat.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/ColorFormatEnum.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/ComplexSassNumber.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/ListSeparator.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassArgumentList.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassBoolean.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassCalculation.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassColor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassFunction.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassList.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassMap.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassMixin.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassNull.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassNumber.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SassString.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SingleUnitSassNumber.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/SpanColorFormat.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/UnitlessSassNumber.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Value/Value.php %%WWWDIR%%/vendor/scssphp/scssphp/src/ValueConverter.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Version.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/AnySelectorVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/CssVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/EveryCssVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/ExpressionVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/ModifiableCssVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/ReplaceExpressionVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/SelectorSearchVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/SelectorVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/StatementSearchVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/StatementVisitor.php +%%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor/ValueVisitor.php %%WWWDIR%%/vendor/scssphp/scssphp/src/Warn.php +%%WWWDIR%%/vendor/scssphp/source-span/LICENSE.md +%%WWWDIR%%/vendor/scssphp/source-span/README.md +%%WWWDIR%%/vendor/scssphp/source-span/composer.json +%%WWWDIR%%/vendor/scssphp/source-span/src/ConcreteFileSpan.php +%%WWWDIR%%/vendor/scssphp/source-span/src/FileLocation.php +%%WWWDIR%%/vendor/scssphp/source-span/src/FileSpan.php +%%WWWDIR%%/vendor/scssphp/source-span/src/Highlighter/AsciiGlyph.php +%%WWWDIR%%/vendor/scssphp/source-span/src/Highlighter/Highlight.php +%%WWWDIR%%/vendor/scssphp/source-span/src/Highlighter/Highlighter.php +%%WWWDIR%%/vendor/scssphp/source-span/src/Highlighter/Line.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SimpleSourceLocation.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SimpleSourceSpan.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SimpleSourceSpanWithContext.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceFile.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceLocation.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceLocationMixin.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceSpan.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceSpanMixin.php +%%WWWDIR%%/vendor/scssphp/source-span/src/SourceSpanWithContext.php +%%WWWDIR%%/vendor/scssphp/source-span/src/Util.php %%WWWDIR%%/vendor/sebastian/diff/ChangeLog.md %%WWWDIR%%/vendor/sebastian/diff/LICENSE %%WWWDIR%%/vendor/sebastian/diff/README.md +%%WWWDIR%%/vendor/sebastian/diff/SECURITY.md %%WWWDIR%%/vendor/sebastian/diff/composer.json %%WWWDIR%%/vendor/sebastian/diff/src/Chunk.php %%WWWDIR%%/vendor/sebastian/diff/src/Diff.php @@ -5652,6 +8580,7 @@ %%WWWDIR%%/vendor/seld/jsonlint/CHANGELOG.md %%WWWDIR%%/vendor/seld/jsonlint/LICENSE %%WWWDIR%%/vendor/seld/jsonlint/README.md +%%WWWDIR%%/vendor/seld/jsonlint/bin/jsonlint %%WWWDIR%%/vendor/seld/jsonlint/composer.json %%WWWDIR%%/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php %%WWWDIR%%/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php @@ -5659,15 +8588,12 @@ %%WWWDIR%%/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php %%WWWDIR%%/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php %%WWWDIR%%/vendor/simplepie/simplepie/CHANGELOG.md -%%WWWDIR%%/vendor/simplepie/simplepie/LICENSE.txt +%%WWWDIR%%/vendor/simplepie/simplepie/LICENSES/BSD-3-Clause.txt +%%WWWDIR%%/vendor/simplepie/simplepie/LICENSES/MIT.txt %%WWWDIR%%/vendor/simplepie/simplepie/README.markdown %%WWWDIR%%/vendor/simplepie/simplepie/autoloader.php %%WWWDIR%%/vendor/simplepie/simplepie/composer.json %%WWWDIR%%/vendor/simplepie/simplepie/db.sql -%%WWWDIR%%/vendor/simplepie/simplepie/idn/LICENCE -%%WWWDIR%%/vendor/simplepie/simplepie/idn/ReadMe.txt -%%WWWDIR%%/vendor/simplepie/simplepie/idn/idna_convert.class.php -%%WWWDIR%%/vendor/simplepie/simplepie/idn/npdata.ser %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie.php %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/Author.php %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/Cache.php @@ -5703,6 +8629,56 @@ %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/Source.php %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/XML/Declaration/Parser.php %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/gzdecode.php +%%WWWDIR%%/vendor/simplepie/simplepie/phpstan.dist.neon +%%WWWDIR%%/vendor/simplepie/simplepie/src/Author.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/Base.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/BaseDataCache.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/CallableNameFilter.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/DB.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/DataCache.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/File.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/Memcache.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/Memcached.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/MySQL.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/NameFilter.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/Psr16.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Cache/Redis.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Caption.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Category.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Content/Type/Sniffer.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Copyright.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Credit.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Enclosure.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Exception.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/File.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Gzdecode.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/Client.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/ClientException.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/FileClient.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/Parser.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/Psr18Client.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/Psr7Response.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/RawTextResponse.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP/Response.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/IRI.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Item.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Locator.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Misc.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Net/IPv6.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Parse/Date.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Parser.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Rating.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Registry.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/RegistryAware.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Restriction.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Sanitize.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/SimplePie.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/Source.php +%%WWWDIR%%/vendor/simplepie/simplepie/src/XML/Declaration/Parser.php +%%WWWDIR%%/vendor/simplepie/simplepie/utils/PHPStan/README.md +%%WWWDIR%%/vendor/simplepie/simplepie/utils/PHPStan/RegistryCallMethodReturnTypeExtension.php +%%WWWDIR%%/vendor/simplepie/simplepie/utils/PHPStan/extension.neon %%WWWDIR%%/vendor/swaggest/json-diff/CHANGELOG.md %%WWWDIR%%/vendor/swaggest/json-diff/LICENSE %%WWWDIR%%/vendor/swaggest/json-diff/README.md @@ -5800,6 +8776,7 @@ %%WWWDIR%%/vendor/symfony/cache-contracts/CallbackInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/ItemInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/LICENSE +%%WWWDIR%%/vendor/symfony/cache-contracts/NamespacedPoolInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/README.md %%WWWDIR%%/vendor/symfony/cache-contracts/TagAwareCacheInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/composer.json @@ -5811,7 +8788,6 @@ %%WWWDIR%%/vendor/symfony/cache/Adapter/ChainAdapter.php %%WWWDIR%%/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php %%WWWDIR%%/vendor/symfony/cache/Adapter/CouchbaseCollectionAdapter.php -%%WWWDIR%%/vendor/symfony/cache/Adapter/DoctrineAdapter.php %%WWWDIR%%/vendor/symfony/cache/Adapter/DoctrineDbalAdapter.php %%WWWDIR%%/vendor/symfony/cache/Adapter/FilesystemAdapter.php %%WWWDIR%%/vendor/symfony/cache/Adapter/FilesystemTagAwareAdapter.php @@ -5836,7 +8812,6 @@ %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolClearerPass.php %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolPass.php %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolPrunerPass.php -%%WWWDIR%%/vendor/symfony/cache/DoctrineProvider.php %%WWWDIR%%/vendor/symfony/cache/Exception/CacheException.php %%WWWDIR%%/vendor/symfony/cache/Exception/InvalidArgumentException.php %%WWWDIR%%/vendor/symfony/cache/Exception/LogicException.php @@ -5855,15 +8830,127 @@ %%WWWDIR%%/vendor/symfony/cache/README.md %%WWWDIR%%/vendor/symfony/cache/ResettableInterface.php %%WWWDIR%%/vendor/symfony/cache/Traits/AbstractAdapterTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/CachedValueInterface.php %%WWWDIR%%/vendor/symfony/cache/Traits/ContractsTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/FilesystemCommonTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/FilesystemTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/ProxyTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Redis5Proxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Redis6Proxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Redis6ProxyTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RedisCluster5Proxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RedisCluster6Proxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RedisCluster6ProxyTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterNodeProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/BgsaveTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/CopyTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/FtTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GeosearchTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GetWithMetaTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GetrangeTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/HsetTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/IsTrackedTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/MoveTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/NullableReturnTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/PfcountTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/Relay11Trait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/SwapdbTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RelayProxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RelayProxyTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/ValueWrapper.php %%WWWDIR%%/vendor/symfony/cache/composer.json +%%WWWDIR%%/vendor/symfony/config/Builder/ClassBuilder.php +%%WWWDIR%%/vendor/symfony/config/Builder/ConfigBuilderGenerator.php +%%WWWDIR%%/vendor/symfony/config/Builder/ConfigBuilderGeneratorInterface.php +%%WWWDIR%%/vendor/symfony/config/Builder/ConfigBuilderInterface.php +%%WWWDIR%%/vendor/symfony/config/Builder/Method.php +%%WWWDIR%%/vendor/symfony/config/Builder/Property.php +%%WWWDIR%%/vendor/symfony/config/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/config/ConfigCache.php +%%WWWDIR%%/vendor/symfony/config/ConfigCacheFactory.php +%%WWWDIR%%/vendor/symfony/config/ConfigCacheFactoryInterface.php +%%WWWDIR%%/vendor/symfony/config/ConfigCacheInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/ArrayNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/BaseNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/BooleanNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/ArrayNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/BooleanNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/BuilderAwareInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/EnumNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/ExprBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/FloatNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/IntegerNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/MergeBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/NodeBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/NodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/NodeParentInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/NormalizationBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/NumericNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/ScalarNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/TreeBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/ValidationBuilder.php +%%WWWDIR%%/vendor/symfony/config/Definition/Builder/VariableNodeDefinition.php +%%WWWDIR%%/vendor/symfony/config/Definition/ConfigurableInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/Configuration.php +%%WWWDIR%%/vendor/symfony/config/Definition/ConfigurationInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/Configurator/DefinitionConfigurator.php +%%WWWDIR%%/vendor/symfony/config/Definition/Dumper/XmlReferenceDumper.php +%%WWWDIR%%/vendor/symfony/config/Definition/Dumper/YamlReferenceDumper.php +%%WWWDIR%%/vendor/symfony/config/Definition/EnumNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/DuplicateKeyException.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/Exception.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/ForbiddenOverwriteException.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/InvalidConfigurationException.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/InvalidDefinitionException.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/InvalidTypeException.php +%%WWWDIR%%/vendor/symfony/config/Definition/Exception/UnsetKeyException.php +%%WWWDIR%%/vendor/symfony/config/Definition/FloatNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/IntegerNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/Loader/DefinitionFileLoader.php +%%WWWDIR%%/vendor/symfony/config/Definition/NodeInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/NumericNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/Processor.php +%%WWWDIR%%/vendor/symfony/config/Definition/PrototypeNodeInterface.php +%%WWWDIR%%/vendor/symfony/config/Definition/PrototypedArrayNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/ScalarNode.php +%%WWWDIR%%/vendor/symfony/config/Definition/VariableNode.php +%%WWWDIR%%/vendor/symfony/config/Exception/FileLoaderImportCircularReferenceException.php +%%WWWDIR%%/vendor/symfony/config/Exception/FileLocatorFileNotFoundException.php +%%WWWDIR%%/vendor/symfony/config/Exception/LoaderLoadException.php +%%WWWDIR%%/vendor/symfony/config/FileLocator.php +%%WWWDIR%%/vendor/symfony/config/FileLocatorInterface.php +%%WWWDIR%%/vendor/symfony/config/LICENSE +%%WWWDIR%%/vendor/symfony/config/Loader/DelegatingLoader.php +%%WWWDIR%%/vendor/symfony/config/Loader/DirectoryAwareLoaderInterface.php +%%WWWDIR%%/vendor/symfony/config/Loader/FileLoader.php +%%WWWDIR%%/vendor/symfony/config/Loader/GlobFileLoader.php +%%WWWDIR%%/vendor/symfony/config/Loader/Loader.php +%%WWWDIR%%/vendor/symfony/config/Loader/LoaderInterface.php +%%WWWDIR%%/vendor/symfony/config/Loader/LoaderResolver.php +%%WWWDIR%%/vendor/symfony/config/Loader/LoaderResolverInterface.php +%%WWWDIR%%/vendor/symfony/config/Loader/ParamConfigurator.php +%%WWWDIR%%/vendor/symfony/config/README.md +%%WWWDIR%%/vendor/symfony/config/Resource/ClassExistenceResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/ComposerResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/DirectoryResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/FileExistenceResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/FileResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/GlobResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/ReflectionClassResource.php +%%WWWDIR%%/vendor/symfony/config/Resource/ResourceInterface.php +%%WWWDIR%%/vendor/symfony/config/Resource/SelfCheckingResourceChecker.php +%%WWWDIR%%/vendor/symfony/config/Resource/SelfCheckingResourceInterface.php +%%WWWDIR%%/vendor/symfony/config/ResourceCheckerConfigCache.php +%%WWWDIR%%/vendor/symfony/config/ResourceCheckerConfigCacheFactory.php +%%WWWDIR%%/vendor/symfony/config/ResourceCheckerInterface.php +%%WWWDIR%%/vendor/symfony/config/Util/Exception/InvalidXmlException.php +%%WWWDIR%%/vendor/symfony/config/Util/Exception/XmlParsingException.php +%%WWWDIR%%/vendor/symfony/config/Util/XmlUtils.php +%%WWWDIR%%/vendor/symfony/config/composer.json %%WWWDIR%%/vendor/symfony/console/Application.php %%WWWDIR%%/vendor/symfony/console/Attribute/AsCommand.php %%WWWDIR%%/vendor/symfony/console/CHANGELOG.md @@ -5877,6 +8964,7 @@ %%WWWDIR%%/vendor/symfony/console/Command/ListCommand.php %%WWWDIR%%/vendor/symfony/console/Command/LockableTrait.php %%WWWDIR%%/vendor/symfony/console/Command/SignalableCommandInterface.php +%%WWWDIR%%/vendor/symfony/console/Command/TraceableCommand.php %%WWWDIR%%/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php %%WWWDIR%%/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php %%WWWDIR%%/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php @@ -5884,15 +8972,20 @@ %%WWWDIR%%/vendor/symfony/console/Completion/CompletionSuggestions.php %%WWWDIR%%/vendor/symfony/console/Completion/Output/BashCompletionOutput.php %%WWWDIR%%/vendor/symfony/console/Completion/Output/CompletionOutputInterface.php +%%WWWDIR%%/vendor/symfony/console/Completion/Output/FishCompletionOutput.php +%%WWWDIR%%/vendor/symfony/console/Completion/Output/ZshCompletionOutput.php %%WWWDIR%%/vendor/symfony/console/Completion/Suggestion.php %%WWWDIR%%/vendor/symfony/console/ConsoleEvents.php %%WWWDIR%%/vendor/symfony/console/Cursor.php +%%WWWDIR%%/vendor/symfony/console/DataCollector/CommandDataCollector.php +%%WWWDIR%%/vendor/symfony/console/Debug/CliRequest.php %%WWWDIR%%/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php %%WWWDIR%%/vendor/symfony/console/Descriptor/ApplicationDescription.php %%WWWDIR%%/vendor/symfony/console/Descriptor/Descriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/DescriptorInterface.php %%WWWDIR%%/vendor/symfony/console/Descriptor/JsonDescriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Descriptor/ReStructuredTextDescriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/TextDescriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/XmlDescriptor.php %%WWWDIR%%/vendor/symfony/console/Event/ConsoleCommandEvent.php @@ -5908,6 +9001,7 @@ %%WWWDIR%%/vendor/symfony/console/Exception/LogicException.php %%WWWDIR%%/vendor/symfony/console/Exception/MissingInputException.php %%WWWDIR%%/vendor/symfony/console/Exception/NamespaceNotFoundException.php +%%WWWDIR%%/vendor/symfony/console/Exception/RunCommandFailedException.php %%WWWDIR%%/vendor/symfony/console/Exception/RuntimeException.php %%WWWDIR%%/vendor/symfony/console/Formatter/NullOutputFormatter.php %%WWWDIR%%/vendor/symfony/console/Formatter/NullOutputFormatterStyle.php @@ -5925,6 +9019,7 @@ %%WWWDIR%%/vendor/symfony/console/Helper/HelperInterface.php %%WWWDIR%%/vendor/symfony/console/Helper/HelperSet.php %%WWWDIR%%/vendor/symfony/console/Helper/InputAwareHelper.php +%%WWWDIR%%/vendor/symfony/console/Helper/OutputWrapper.php %%WWWDIR%%/vendor/symfony/console/Helper/ProcessHelper.php %%WWWDIR%%/vendor/symfony/console/Helper/ProgressBar.php %%WWWDIR%%/vendor/symfony/console/Helper/ProgressIndicator.php @@ -5948,6 +9043,10 @@ %%WWWDIR%%/vendor/symfony/console/Input/StringInput.php %%WWWDIR%%/vendor/symfony/console/LICENSE %%WWWDIR%%/vendor/symfony/console/Logger/ConsoleLogger.php +%%WWWDIR%%/vendor/symfony/console/Messenger/RunCommandContext.php +%%WWWDIR%%/vendor/symfony/console/Messenger/RunCommandMessage.php +%%WWWDIR%%/vendor/symfony/console/Messenger/RunCommandMessageHandler.php +%%WWWDIR%%/vendor/symfony/console/Output/AnsiColorMode.php %%WWWDIR%%/vendor/symfony/console/Output/BufferedOutput.php %%WWWDIR%%/vendor/symfony/console/Output/ConsoleOutput.php %%WWWDIR%%/vendor/symfony/console/Output/ConsoleOutputInterface.php @@ -5963,6 +9062,9 @@ %%WWWDIR%%/vendor/symfony/console/README.md %%WWWDIR%%/vendor/symfony/console/Resources/bin/hiddeninput.exe %%WWWDIR%%/vendor/symfony/console/Resources/completion.bash +%%WWWDIR%%/vendor/symfony/console/Resources/completion.fish +%%WWWDIR%%/vendor/symfony/console/Resources/completion.zsh +%%WWWDIR%%/vendor/symfony/console/SignalRegistry/SignalMap.php %%WWWDIR%%/vendor/symfony/console/SignalRegistry/SignalRegistry.php %%WWWDIR%%/vendor/symfony/console/SingleCommandApplication.php %%WWWDIR%%/vendor/symfony/console/Style/OutputStyle.php @@ -6027,6 +9129,199 @@ %%WWWDIR%%/vendor/symfony/css-selector/XPath/TranslatorInterface.php %%WWWDIR%%/vendor/symfony/css-selector/XPath/XPathExpr.php %%WWWDIR%%/vendor/symfony/css-selector/composer.json +%%WWWDIR%%/vendor/symfony/dependency-injection/Alias.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/AbstractArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/ArgumentInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/BoundArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/IteratorArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/LazyClosure.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/ReferenceSetArgumentTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/RewindableGenerator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/ServiceClosureArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/ServiceLocator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/ServiceLocatorArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Argument/TaggedIteratorArgument.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AsAlias.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AsDecorator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AsTaggedItem.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/Autoconfigure.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutoconfigureTag.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/Autowire.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutowireCallable.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutowireDecorated.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutowireIterator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutowireLocator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/AutowireServiceClosure.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/Exclude.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/MapDecorated.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/TaggedIterator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/TaggedLocator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/Target.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Attribute/When.php +%%WWWDIR%%/vendor/symfony/dependency-injection/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/dependency-injection/ChildDefinition.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AbstractRecursivePass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AliasDeprecatedPublicServicesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AttributeAutoconfigurationPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AutoAliasServicePass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AutowireAsDecoratorPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AutowirePass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/AutowireRequiredPropertiesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CheckTypeDeclarationsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/Compiler.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/CompilerPassInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/DecoratorServicePass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/PassConfig.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RegisterAutoconfigureAttributesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RegisterReverseContainerPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RemoveBuildParametersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveBindingsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveClassPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveDecoratorStackPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveHotPathPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveNoPreloadPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Compiler/ValidateEnvPlaceholdersPass.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Config/ContainerParametersResource.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Container.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ContainerAwareInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ContainerAwareTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ContainerBuilder.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ContainerInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Definition.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/Dumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/DumperInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/GraphvizDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/PhpDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/Preloader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/XmlDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Dumper/YamlDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/EnvVarLoaderInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/EnvVarProcessor.php +%%WWWDIR%%/vendor/symfony/dependency-injection/EnvVarProcessorInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/AutowiringFailedException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/BadMethodCallException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/EnvNotFoundException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/EnvParameterException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/InvalidParameterTypeException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/LogicException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/OutOfBoundsException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/ParameterNotFoundException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Exception/ServiceNotFoundException.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ExpressionLanguage.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ExpressionLanguageProvider.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/AbstractExtension.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/ConfigurableExtensionInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/Extension.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/ExtensionInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/ExtensionTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Extension/PrependExtensionInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LICENSE +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/Instantiator/LazyServiceInstantiator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/PhpDumper/LazyServiceDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/ProxyHelper.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/ClosureLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ClosureReferenceConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/EnvConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/FromCallableConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ConstructorTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/FromCallableTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/DirectoryLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/FileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/GlobFileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/IniFileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/PhpFileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/XmlFileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Loader/schema/dic/services/services-1.0.xsd +%%WWWDIR%%/vendor/symfony/dependency-injection/Parameter.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/ContainerBag.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/ContainerBagInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/ParameterBag.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/README.md +%%WWWDIR%%/vendor/symfony/dependency-injection/Reference.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ReverseContainer.php +%%WWWDIR%%/vendor/symfony/dependency-injection/ServiceLocator.php +%%WWWDIR%%/vendor/symfony/dependency-injection/TaggedContainerInterface.php +%%WWWDIR%%/vendor/symfony/dependency-injection/TypedReference.php +%%WWWDIR%%/vendor/symfony/dependency-injection/Variable.php +%%WWWDIR%%/vendor/symfony/dependency-injection/composer.json %%WWWDIR%%/vendor/symfony/deprecation-contracts/CHANGELOG.md %%WWWDIR%%/vendor/symfony/deprecation-contracts/LICENSE %%WWWDIR%%/vendor/symfony/deprecation-contracts/README.md @@ -6046,12 +9341,731 @@ %%WWWDIR%%/vendor/symfony/dom-crawler/LICENSE %%WWWDIR%%/vendor/symfony/dom-crawler/Link.php %%WWWDIR%%/vendor/symfony/dom-crawler/README.md +%%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerAnySelectorTextContains.php +%%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerAnySelectorTextSame.php %%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php +%%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerSelectorCount.php %%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php %%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php %%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php %%WWWDIR%%/vendor/symfony/dom-crawler/UriResolver.php %%WWWDIR%%/vendor/symfony/dom-crawler/composer.json +%%WWWDIR%%/vendor/symfony/error-handler/BufferingLogger.php +%%WWWDIR%%/vendor/symfony/error-handler/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/error-handler/Debug.php +%%WWWDIR%%/vendor/symfony/error-handler/DebugClassLoader.php +%%WWWDIR%%/vendor/symfony/error-handler/Error/ClassNotFoundError.php +%%WWWDIR%%/vendor/symfony/error-handler/Error/FatalError.php +%%WWWDIR%%/vendor/symfony/error-handler/Error/OutOfMemoryError.php +%%WWWDIR%%/vendor/symfony/error-handler/Error/UndefinedFunctionError.php +%%WWWDIR%%/vendor/symfony/error-handler/Error/UndefinedMethodError.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorEnhancer/ClassNotFoundErrorEnhancer.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorEnhancer/ErrorEnhancerInterface.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorEnhancer/UndefinedFunctionErrorEnhancer.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorEnhancer/UndefinedMethodErrorEnhancer.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorHandler.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer/CliErrorRenderer.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer/ErrorRendererInterface.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer/FileLinkFormatter.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php +%%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer/SerializerErrorRenderer.php +%%WWWDIR%%/vendor/symfony/error-handler/Exception/FlattenException.php +%%WWWDIR%%/vendor/symfony/error-handler/Exception/SilencedErrorContext.php +%%WWWDIR%%/vendor/symfony/error-handler/Internal/TentativeTypes.php +%%WWWDIR%%/vendor/symfony/error-handler/LICENSE +%%WWWDIR%%/vendor/symfony/error-handler/README.md +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/css/error.css +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/css/exception.css +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/css/exception_full.css +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/chevron-right.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/favicon.png.base64 +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-book.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-copy.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square-o.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square-o.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/icon-support.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/symfony-ghost.svg.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images/symfony-logo.svg +%%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/js/exception.js +%%WWWDIR%%/vendor/symfony/error-handler/Resources/bin/extract-tentative-return-types.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/bin/patch-type-declarations +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/error.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/exception.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/exception_full.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/logs.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/trace.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/traces.html.php +%%WWWDIR%%/vendor/symfony/error-handler/Resources/views/traces_text.html.php +%%WWWDIR%%/vendor/symfony/error-handler/ThrowableUtils.php +%%WWWDIR%%/vendor/symfony/error-handler/composer.json +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/Event.php +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/LICENSE +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/README.md +%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/composer.json +%%WWWDIR%%/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/EventDispatcher.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/GenericEvent.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +%%WWWDIR%%/vendor/symfony/event-dispatcher/LICENSE +%%WWWDIR%%/vendor/symfony/event-dispatcher/README.md +%%WWWDIR%%/vendor/symfony/event-dispatcher/composer.json +%%WWWDIR%%/vendor/symfony/filesystem/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/filesystem/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/filesystem/Exception/FileNotFoundException.php +%%WWWDIR%%/vendor/symfony/filesystem/Exception/IOException.php +%%WWWDIR%%/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +%%WWWDIR%%/vendor/symfony/filesystem/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/filesystem/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/filesystem/Filesystem.php +%%WWWDIR%%/vendor/symfony/filesystem/LICENSE +%%WWWDIR%%/vendor/symfony/filesystem/Path.php +%%WWWDIR%%/vendor/symfony/filesystem/README.md +%%WWWDIR%%/vendor/symfony/filesystem/composer.json +%%WWWDIR%%/vendor/symfony/finder/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/finder/Comparator/Comparator.php +%%WWWDIR%%/vendor/symfony/finder/Comparator/DateComparator.php +%%WWWDIR%%/vendor/symfony/finder/Comparator/NumberComparator.php +%%WWWDIR%%/vendor/symfony/finder/Exception/AccessDeniedException.php +%%WWWDIR%%/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +%%WWWDIR%%/vendor/symfony/finder/Finder.php +%%WWWDIR%%/vendor/symfony/finder/Gitignore.php +%%WWWDIR%%/vendor/symfony/finder/Glob.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/CustomFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/LazyIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/PathFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/SortableIterator.php +%%WWWDIR%%/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +%%WWWDIR%%/vendor/symfony/finder/LICENSE +%%WWWDIR%%/vendor/symfony/finder/README.md +%%WWWDIR%%/vendor/symfony/finder/SplFileInfo.php +%%WWWDIR%%/vendor/symfony/finder/composer.json +%%WWWDIR%%/vendor/symfony/framework-bundle/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/AbstractPhpFileCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/AnnotationsCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/CachePoolClearerCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/ConfigBuilderCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/RouterCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/SerializerCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/TranslationsCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer/ValidatorCacheWarmer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/AboutCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/AbstractConfigCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/AssetsInstallCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/BuildDebugContainerTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CacheClearCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CachePoolClearCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CachePoolDeleteCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CachePoolInvalidateTagsCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CachePoolListCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CachePoolPruneCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/CacheWarmupCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/ConfigDebugCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/ConfigDumpReferenceCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/ContainerDebugCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/ContainerLintCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/DebugAutowiringCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/EventDispatcherDebugCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/RouterDebugCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/RouterMatchCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsDecryptToLocalCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsEncryptFromLocalCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsGenerateKeysCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsListCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsRemoveCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/SecretsSetCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/TranslationDebugCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/TranslationUpdateCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/WorkflowDumpCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/XliffLintCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Command/YamlLintCommand.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Application.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor/Descriptor.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor/JsonDescriptor.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor/MarkdownDescriptor.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor/TextDescriptor.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor/XmlDescriptor.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Console/Helper/DescriptorHelper.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Controller/AbstractController.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Controller/ControllerResolver.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Controller/RedirectController.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Controller/TemplateController.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DataCollector/AbstractDataCollector.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DataCollector/RouterDataCollector.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DataCollector/TemplateAwareDataCollectorInterface.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/AddAnnotationsCachedReaderPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/AddDebugLogProcessorPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/AssetsContextPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/DataCollectorTranslatorPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/EnableLoggerDebugModePass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/ErrorLoggerCompilerPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/LoggingTranslatorPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/ProfilerPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/RemoveUnusedSessionMarshallingHandlerPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/TestServiceContainerRealRefPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/TestServiceContainerWeakRefPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/TranslationUpdateCommandPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/UnusedTagsPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Configuration.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/FrameworkExtension.php +%%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/VirtualRequestStackPass.php +%%WWWDIR%%/vendor/symfony/framework-bundle/EventListener/ConsoleProfilerListener.php +%%WWWDIR%%/vendor/symfony/framework-bundle/EventListener/SuggestMissingPackageSubscriber.php +%%WWWDIR%%/vendor/symfony/framework-bundle/FrameworkBundle.php +%%WWWDIR%%/vendor/symfony/framework-bundle/HttpCache/HttpCache.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/KernelBrowser.php +%%WWWDIR%%/vendor/symfony/framework-bundle/LICENSE +%%WWWDIR%%/vendor/symfony/framework-bundle/README.md +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/bin/check-unused-known-tags.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/annotations.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/asset_mapper.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/assets.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/cache.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/cache_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/collectors.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/console.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/debug_prod.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/error_renderer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/esi.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/form.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/form_csrf.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/form_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/fragment_listener.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/fragment_renderer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/html_sanitizer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/http_client.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/http_client_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/identity_translator.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/lock.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/mailer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/mailer_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/mailer_transports.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/mailer_webhook.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/messenger.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/messenger_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/mime_type.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/notifier.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/notifier_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/notifier_transports.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/notifier_webhook.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/process.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/profiling.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/property_access.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/property_info.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/rate_limiter.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/remote_event.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/request.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/routing.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/routing/errors.xml +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/routing/webhook.xml +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/scheduler.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/schema/symfony-1.0.xsd +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/secrets.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/security_csrf.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/semaphore.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/serializer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/serializer_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/services.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/session.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/ssi.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/test.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/translation.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/translation_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/translation_providers.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/uid.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/validator.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/validator_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/web.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/web_link.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/webhook.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/workflow.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/workflow_debug.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/AnnotatedRouteControllerLoader.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/Attribute/AsRoutingConditionService.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/AttributeRouteControllerLoader.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/DelegatingLoader.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/RedirectableCompiledUrlMatcher.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/RouteLoaderInterface.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Routing/Router.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Secrets/AbstractVault.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Secrets/DotenvVault.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Secrets/SodiumVault.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/BrowserKitAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/DomCrawlerAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/HttpClientAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/KernelTestCase.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/MailerAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/NotificationAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/TestBrowserToken.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/TestContainer.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/WebTestAssertionsTrait.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Test/WebTestCase.php +%%WWWDIR%%/vendor/symfony/framework-bundle/Translation/Translator.php +%%WWWDIR%%/vendor/symfony/framework-bundle/composer.json +%%WWWDIR%%/vendor/symfony/html-sanitizer/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/html-sanitizer/HtmlSanitizer.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/HtmlSanitizerConfig.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/HtmlSanitizerInterface.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/LICENSE +%%WWWDIR%%/vendor/symfony/html-sanitizer/Parser/MastermindsParser.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Parser/ParserInterface.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/README.md +%%WWWDIR%%/vendor/symfony/html-sanitizer/Reference/W3CReference.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/TextSanitizer/StringSanitizer.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/TextSanitizer/UrlSanitizer.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/AttributeSanitizer/AttributeSanitizerInterface.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/AttributeSanitizer/UrlAttributeSanitizer.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/DomVisitor.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Model/Cursor.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node/BlockedNode.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node/DocumentNode.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node/Node.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node/NodeInterface.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node/TextNode.php +%%WWWDIR%%/vendor/symfony/html-sanitizer/composer.json +%%WWWDIR%%/vendor/symfony/http-foundation/AcceptHeader.php +%%WWWDIR%%/vendor/symfony/http-foundation/AcceptHeaderItem.php +%%WWWDIR%%/vendor/symfony/http-foundation/BinaryFileResponse.php +%%WWWDIR%%/vendor/symfony/http-foundation/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/http-foundation/ChainRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/Cookie.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/BadRequestException.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/ConflictingHeadersException.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/JsonException.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/RequestExceptionInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/SessionNotFoundException.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/SuspiciousOperationException.php +%%WWWDIR%%/vendor/symfony/http-foundation/Exception/UnexpectedValueException.php +%%WWWDIR%%/vendor/symfony/http-foundation/ExpressionRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/AccessDeniedException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/CannotWriteFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/ExtensionFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/FileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/FileNotFoundException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/FormSizeFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/IniSizeFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/NoFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/NoTmpDirFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/PartialFileException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/UnexpectedTypeException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Exception/UploadException.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/File.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/Stream.php +%%WWWDIR%%/vendor/symfony/http-foundation/File/UploadedFile.php +%%WWWDIR%%/vendor/symfony/http-foundation/FileBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/HeaderBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/HeaderUtils.php +%%WWWDIR%%/vendor/symfony/http-foundation/InputBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/IpUtils.php +%%WWWDIR%%/vendor/symfony/http-foundation/JsonResponse.php +%%WWWDIR%%/vendor/symfony/http-foundation/LICENSE +%%WWWDIR%%/vendor/symfony/http-foundation/ParameterBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/README.md +%%WWWDIR%%/vendor/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php +%%WWWDIR%%/vendor/symfony/http-foundation/RateLimiter/PeekableRequestRateLimiterInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/RedirectResponse.php +%%WWWDIR%%/vendor/symfony/http-foundation/Request.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/AttributesRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/ExpressionRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/HostRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/IpsRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/IsJsonRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/MethodRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/PathRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/PortRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher/SchemeRequestMatcher.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcherInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/RequestStack.php +%%WWWDIR%%/vendor/symfony/http-foundation/Response.php +%%WWWDIR%%/vendor/symfony/http-foundation/ResponseHeaderBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/ServerBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Flash/FlashBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Flash/FlashBagInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/FlashBagAwareSessionInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Session.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionBagInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionBagProxy.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionFactory.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionFactoryInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/SessionUtils.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/MetadataBag.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/SessionStorageInterface.php +%%WWWDIR%%/vendor/symfony/http-foundation/StreamedJsonResponse.php +%%WWWDIR%%/vendor/symfony/http-foundation/StreamedResponse.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderLocationSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php +%%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php +%%WWWDIR%%/vendor/symfony/http-foundation/UriSigner.php +%%WWWDIR%%/vendor/symfony/http-foundation/UrlHelper.php +%%WWWDIR%%/vendor/symfony/http-foundation/composer.json +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/AsController.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/AsTargetedValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/Cache.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/MapDateTime.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/MapQueryParameter.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/MapQueryString.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/MapRequestPayload.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/ValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/WithHttpStatus.php +%%WWWDIR%%/vendor/symfony/http-kernel/Attribute/WithLogLevel.php +%%WWWDIR%%/vendor/symfony/http-kernel/Bundle/AbstractBundle.php +%%WWWDIR%%/vendor/symfony/http-kernel/Bundle/Bundle.php +%%WWWDIR%%/vendor/symfony/http-kernel/Bundle/BundleExtension.php +%%WWWDIR%%/vendor/symfony/http-kernel/Bundle/BundleInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/http-kernel/CacheClearer/CacheClearerInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheClearer/ChainCacheClearer.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheWarmer/CacheWarmer.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/CacheWarmer/WarmableInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Config/FileLocator.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/BackedEnumValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/DateTimeValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/NotTaggedControllerValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/QueryParameterValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestPayloadValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/UidValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolverInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ControllerReference.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ControllerResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ControllerResolverInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ErrorController.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php +%%WWWDIR%%/vendor/symfony/http-kernel/Controller/ValueResolverInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php +%%WWWDIR%%/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php +%%WWWDIR%%/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/AjaxDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/DataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/LoggerDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/MemoryDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/RouterDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php +%%WWWDIR%%/vendor/symfony/http-kernel/Debug/ErrorHandlerConfigurator.php +%%WWWDIR%%/vendor/symfony/http-kernel/Debug/FileLinkFormatter.php +%%WWWDIR%%/vendor/symfony/http-kernel/Debug/TraceableEventDispatcher.php +%%WWWDIR%%/vendor/symfony/http-kernel/Debug/VirtualRequestStack.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/Extension.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/LoggerPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/RegisterLocaleAwareServicesPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php +%%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection/ServicesResetter.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/ControllerArgumentsEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/ControllerEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/ExceptionEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/FinishRequestEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/KernelEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/RequestEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/ResponseEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/TerminateEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/Event/ViewEvent.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/AddRequestFormatsListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/CacheAttributeListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/DisallowRobotsIndexingListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/DumpListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/ErrorListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/FragmentListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/LocaleAwareListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/LocaleListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/ProfilerListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/ResponseListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/RouterListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/SessionListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/StreamedResponseListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/SurrogateListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/EventListener/ValidateRequestListener.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/AccessDeniedHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/BadRequestHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/ConflictHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/ControllerDoesNotReturnResponseException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/GoneHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/HttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/HttpExceptionInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/InvalidMetadataException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/LengthRequiredHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/LockedHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/NotFoundHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/PreconditionFailedHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/ResolverNotFoundException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/UnauthorizedHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/UnexpectedSessionUsageException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/FragmentHandler.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/FragmentUriGenerator.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/FragmentUriGeneratorInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/Fragment/SsiFragmentRenderer.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/AbstractSurrogate.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/CacheWasLockedException.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/Esi.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/HttpCache.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/Ssi.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/Store.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/StoreInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpCache/SurrogateInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpClientKernel.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpKernel.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpKernelBrowser.php +%%WWWDIR%%/vendor/symfony/http-kernel/HttpKernelInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Kernel.php +%%WWWDIR%%/vendor/symfony/http-kernel/KernelEvents.php +%%WWWDIR%%/vendor/symfony/http-kernel/KernelInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/LICENSE +%%WWWDIR%%/vendor/symfony/http-kernel/Log/DebugLoggerConfigurator.php +%%WWWDIR%%/vendor/symfony/http-kernel/Log/DebugLoggerInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Log/Logger.php +%%WWWDIR%%/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php +%%WWWDIR%%/vendor/symfony/http-kernel/Profiler/Profile.php +%%WWWDIR%%/vendor/symfony/http-kernel/Profiler/Profiler.php +%%WWWDIR%%/vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/README.md +%%WWWDIR%%/vendor/symfony/http-kernel/RebootableInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/Resources/welcome.html.php +%%WWWDIR%%/vendor/symfony/http-kernel/TerminableInterface.php +%%WWWDIR%%/vendor/symfony/http-kernel/UriSigner.php +%%WWWDIR%%/vendor/symfony/http-kernel/composer.json +%%WWWDIR%%/vendor/symfony/mailer/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/mailer/Command/MailerTestCommand.php +%%WWWDIR%%/vendor/symfony/mailer/DataCollector/MessageDataCollector.php +%%WWWDIR%%/vendor/symfony/mailer/DelayedEnvelope.php +%%WWWDIR%%/vendor/symfony/mailer/Envelope.php +%%WWWDIR%%/vendor/symfony/mailer/Event/FailedMessageEvent.php +%%WWWDIR%%/vendor/symfony/mailer/Event/MessageEvent.php +%%WWWDIR%%/vendor/symfony/mailer/Event/MessageEvents.php +%%WWWDIR%%/vendor/symfony/mailer/Event/SentMessageEvent.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/EnvelopeListener.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/MessageListener.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/MessageLoggerListener.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/MessengerTransportListener.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/HttpTransportException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/IncompleteDsnException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/LogicException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/TransportException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/TransportExceptionInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/UnexpectedResponseException.php +%%WWWDIR%%/vendor/symfony/mailer/Exception/UnsupportedSchemeException.php +%%WWWDIR%%/vendor/symfony/mailer/Header/MetadataHeader.php +%%WWWDIR%%/vendor/symfony/mailer/Header/TagHeader.php +%%WWWDIR%%/vendor/symfony/mailer/LICENSE +%%WWWDIR%%/vendor/symfony/mailer/Mailer.php +%%WWWDIR%%/vendor/symfony/mailer/MailerInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Messenger/MessageHandler.php +%%WWWDIR%%/vendor/symfony/mailer/Messenger/SendEmailMessage.php +%%WWWDIR%%/vendor/symfony/mailer/README.md +%%WWWDIR%%/vendor/symfony/mailer/SentMessage.php +%%WWWDIR%%/vendor/symfony/mailer/Test/Constraint/EmailCount.php +%%WWWDIR%%/vendor/symfony/mailer/Test/Constraint/EmailIsQueued.php +%%WWWDIR%%/vendor/symfony/mailer/Test/TransportFactoryTestCase.php +%%WWWDIR%%/vendor/symfony/mailer/Transport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractApiTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractHttpTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractTransportFactory.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Dsn.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/FailoverTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/NativeTransportFactory.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/NullTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/NullTransportFactory.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/RoundRobinTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/SendmailTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/SendmailTransportFactory.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth/AuthenticatorInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth/CramMd5Authenticator.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth/LoginAuthenticator.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth/PlainAuthenticator.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth/XOAuth2Authenticator.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/EsmtpTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/EsmtpTransportFactory.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Stream/AbstractStream.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Stream/ProcessStream.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/TransportFactoryInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/TransportInterface.php +%%WWWDIR%%/vendor/symfony/mailer/Transport/Transports.php +%%WWWDIR%%/vendor/symfony/mailer/composer.json +%%WWWDIR%%/vendor/symfony/mime/Address.php +%%WWWDIR%%/vendor/symfony/mime/BodyRendererInterface.php +%%WWWDIR%%/vendor/symfony/mime/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/mime/CharacterStream.php +%%WWWDIR%%/vendor/symfony/mime/Crypto/DkimOptions.php +%%WWWDIR%%/vendor/symfony/mime/Crypto/DkimSigner.php +%%WWWDIR%%/vendor/symfony/mime/Crypto/SMime.php +%%WWWDIR%%/vendor/symfony/mime/Crypto/SMimeEncrypter.php +%%WWWDIR%%/vendor/symfony/mime/Crypto/SMimeSigner.php +%%WWWDIR%%/vendor/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php +%%WWWDIR%%/vendor/symfony/mime/DraftEmail.php +%%WWWDIR%%/vendor/symfony/mime/Email.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/AddressEncoderInterface.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/Base64ContentEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/Base64Encoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/Base64MimeHeaderEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/ContentEncoderInterface.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/EightBitContentEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/EncoderInterface.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/IdnAddressEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/MimeHeaderEncoderInterface.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/QpContentEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/QpEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/QpMimeHeaderEncoder.php +%%WWWDIR%%/vendor/symfony/mime/Encoder/Rfc2231Encoder.php +%%WWWDIR%%/vendor/symfony/mime/Exception/AddressEncoderException.php +%%WWWDIR%%/vendor/symfony/mime/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/mime/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/mime/Exception/LogicException.php +%%WWWDIR%%/vendor/symfony/mime/Exception/RfcComplianceException.php +%%WWWDIR%%/vendor/symfony/mime/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/mime/FileBinaryMimeTypeGuesser.php +%%WWWDIR%%/vendor/symfony/mime/FileinfoMimeTypeGuesser.php +%%WWWDIR%%/vendor/symfony/mime/Header/AbstractHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/DateHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/HeaderInterface.php +%%WWWDIR%%/vendor/symfony/mime/Header/Headers.php +%%WWWDIR%%/vendor/symfony/mime/Header/IdentificationHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/MailboxHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/MailboxListHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/ParameterizedHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/PathHeader.php +%%WWWDIR%%/vendor/symfony/mime/Header/UnstructuredHeader.php +%%WWWDIR%%/vendor/symfony/mime/HtmlToTextConverter/DefaultHtmlToTextConverter.php +%%WWWDIR%%/vendor/symfony/mime/HtmlToTextConverter/HtmlToTextConverterInterface.php +%%WWWDIR%%/vendor/symfony/mime/HtmlToTextConverter/LeagueHtmlToMarkdownConverter.php +%%WWWDIR%%/vendor/symfony/mime/LICENSE +%%WWWDIR%%/vendor/symfony/mime/Message.php +%%WWWDIR%%/vendor/symfony/mime/MessageConverter.php +%%WWWDIR%%/vendor/symfony/mime/MimeTypeGuesserInterface.php +%%WWWDIR%%/vendor/symfony/mime/MimeTypes.php +%%WWWDIR%%/vendor/symfony/mime/MimeTypesInterface.php +%%WWWDIR%%/vendor/symfony/mime/Part/AbstractMultipartPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/AbstractPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/DataPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/File.php +%%WWWDIR%%/vendor/symfony/mime/Part/MessagePart.php +%%WWWDIR%%/vendor/symfony/mime/Part/Multipart/AlternativePart.php +%%WWWDIR%%/vendor/symfony/mime/Part/Multipart/DigestPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/Multipart/FormDataPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/Multipart/MixedPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/Multipart/RelatedPart.php +%%WWWDIR%%/vendor/symfony/mime/Part/SMimePart.php +%%WWWDIR%%/vendor/symfony/mime/Part/TextPart.php +%%WWWDIR%%/vendor/symfony/mime/README.md +%%WWWDIR%%/vendor/symfony/mime/RawMessage.php +%%WWWDIR%%/vendor/symfony/mime/Resources/bin/update_mime_types.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailAddressContains.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailAttachmentCount.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailHasHeader.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailHeaderSame.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailSubjectContains.php +%%WWWDIR%%/vendor/symfony/mime/Test/Constraint/EmailTextBodyContains.php +%%WWWDIR%%/vendor/symfony/mime/composer.json %%WWWDIR%%/vendor/symfony/polyfill-ctype/Ctype.php %%WWWDIR%%/vendor/symfony/polyfill-ctype/LICENSE %%WWWDIR%%/vendor/symfony/polyfill-ctype/README.md @@ -6130,39 +10144,305 @@ %%WWWDIR%%/vendor/symfony/polyfill-mbstring/bootstrap.php %%WWWDIR%%/vendor/symfony/polyfill-mbstring/bootstrap80.php %%WWWDIR%%/vendor/symfony/polyfill-mbstring/composer.json -%%WWWDIR%%/vendor/symfony/polyfill-php80/LICENSE -%%WWWDIR%%/vendor/symfony/polyfill-php80/Php80.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/PhpToken.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/README.md -%%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/bootstrap.php -%%WWWDIR%%/vendor/symfony/polyfill-php80/composer.json -%%WWWDIR%%/vendor/symfony/polyfill-php81/LICENSE -%%WWWDIR%%/vendor/symfony/polyfill-php81/Php81.php -%%WWWDIR%%/vendor/symfony/polyfill-php81/README.md -%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php -%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php -%%WWWDIR%%/vendor/symfony/polyfill-php81/bootstrap.php -%%WWWDIR%%/vendor/symfony/polyfill-php81/composer.json -%%WWWDIR%%/vendor/symfony/polyfill-php82/LICENSE -%%WWWDIR%%/vendor/symfony/polyfill-php82/README.md -%%WWWDIR%%/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php -%%WWWDIR%%/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php -%%WWWDIR%%/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php -%%WWWDIR%%/vendor/symfony/polyfill-php82/SensitiveParameterValue.php -%%WWWDIR%%/vendor/symfony/polyfill-php82/bootstrap.php -%%WWWDIR%%/vendor/symfony/polyfill-php82/composer.json +%%WWWDIR%%/vendor/symfony/polyfill-php83/LICENSE +%%WWWDIR%%/vendor/symfony/polyfill-php83/Php83.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/README.md +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/Override.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/bootstrap.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/bootstrap81.php +%%WWWDIR%%/vendor/symfony/polyfill-php83/composer.json +%%WWWDIR%%/vendor/symfony/polyfill-php84/LICENSE +%%WWWDIR%%/vendor/symfony/polyfill-php84/Php84.php +%%WWWDIR%%/vendor/symfony/polyfill-php84/README.md +%%WWWDIR%%/vendor/symfony/polyfill-php84/Resources/stubs/Deprecated.php +%%WWWDIR%%/vendor/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php +%%WWWDIR%%/vendor/symfony/polyfill-php84/bootstrap.php +%%WWWDIR%%/vendor/symfony/polyfill-php84/bootstrap82.php +%%WWWDIR%%/vendor/symfony/polyfill-php84/composer.json +%%WWWDIR%%/vendor/symfony/property-access/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/property-access/Exception/AccessException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/InvalidPropertyPathException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/NoSuchIndexException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/NoSuchPropertyException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/OutOfBoundsException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/UnexpectedTypeException.php +%%WWWDIR%%/vendor/symfony/property-access/Exception/UninitializedPropertyException.php +%%WWWDIR%%/vendor/symfony/property-access/LICENSE +%%WWWDIR%%/vendor/symfony/property-access/PropertyAccess.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyAccessor.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyAccessorBuilder.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyAccessorInterface.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyPath.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyPathBuilder.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyPathInterface.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyPathIterator.php +%%WWWDIR%%/vendor/symfony/property-access/PropertyPathIteratorInterface.php +%%WWWDIR%%/vendor/symfony/property-access/README.md +%%WWWDIR%%/vendor/symfony/property-access/composer.json +%%WWWDIR%%/vendor/symfony/property-info/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/property-info/DependencyInjection/PropertyInfoConstructorPass.php +%%WWWDIR%%/vendor/symfony/property-info/DependencyInjection/PropertyInfoPass.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/ConstructorArgumentTypeExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/ConstructorExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/PhpDocExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/PhpStanExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/ReflectionExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/Extractor/SerializerExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/LICENSE +%%WWWDIR%%/vendor/symfony/property-info/PhpStan/NameScope.php +%%WWWDIR%%/vendor/symfony/property-info/PhpStan/NameScopeFactory.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyAccessExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyDescriptionExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyInfoCacheExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyInfoExtractor.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyInfoExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyInitializableExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyListExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyReadInfo.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyReadInfoExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyTypeExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyWriteInfo.php +%%WWWDIR%%/vendor/symfony/property-info/PropertyWriteInfoExtractorInterface.php +%%WWWDIR%%/vendor/symfony/property-info/README.md +%%WWWDIR%%/vendor/symfony/property-info/Type.php +%%WWWDIR%%/vendor/symfony/property-info/Util/PhpDocTypeHelper.php +%%WWWDIR%%/vendor/symfony/property-info/Util/PhpStanTypeHelper.php +%%WWWDIR%%/vendor/symfony/property-info/composer.json +%%WWWDIR%%/vendor/symfony/routing/Alias.php +%%WWWDIR%%/vendor/symfony/routing/Annotation/Route.php +%%WWWDIR%%/vendor/symfony/routing/Attribute/Route.php +%%WWWDIR%%/vendor/symfony/routing/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/routing/CompiledRoute.php +%%WWWDIR%%/vendor/symfony/routing/DependencyInjection/AddExpressionLanguageProvidersPass.php +%%WWWDIR%%/vendor/symfony/routing/DependencyInjection/RoutingResolverPass.php +%%WWWDIR%%/vendor/symfony/routing/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/routing/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/InvalidParameterException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/MethodNotAllowedException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/MissingMandatoryParametersException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/NoConfigurationException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/ResourceNotFoundException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/RouteCircularReferenceException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/RouteNotFoundException.php +%%WWWDIR%%/vendor/symfony/routing/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/routing/Generator/CompiledUrlGenerator.php +%%WWWDIR%%/vendor/symfony/routing/Generator/ConfigurableRequirementsInterface.php +%%WWWDIR%%/vendor/symfony/routing/Generator/Dumper/CompiledUrlGeneratorDumper.php +%%WWWDIR%%/vendor/symfony/routing/Generator/Dumper/GeneratorDumper.php +%%WWWDIR%%/vendor/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php +%%WWWDIR%%/vendor/symfony/routing/Generator/UrlGenerator.php +%%WWWDIR%%/vendor/symfony/routing/Generator/UrlGeneratorInterface.php +%%WWWDIR%%/vendor/symfony/routing/LICENSE +%%WWWDIR%%/vendor/symfony/routing/Loader/AnnotationClassLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/AnnotationDirectoryLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/AnnotationFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/AttributeClassLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/AttributeDirectoryLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/AttributeFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/ClosureLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/AliasConfigurator.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/CollectionConfigurator.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/ImportConfigurator.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/RouteConfigurator.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/RoutingConfigurator.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits/AddTrait.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits/HostTrait.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits/LocalizedRouteTrait.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits/PrefixTrait.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits/RouteTrait.php +%%WWWDIR%%/vendor/symfony/routing/Loader/ContainerLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/DirectoryLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/GlobFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/ObjectLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/PhpFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/Psr4DirectoryLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/XmlFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/YamlFileLoader.php +%%WWWDIR%%/vendor/symfony/routing/Loader/schema/routing/routing-1.0.xsd +%%WWWDIR%%/vendor/symfony/routing/Matcher/CompiledUrlMatcher.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherDumper.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper/MatcherDumper.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/ExpressionLanguageProvider.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/RedirectableUrlMatcher.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/RequestMatcherInterface.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/TraceableUrlMatcher.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/UrlMatcher.php +%%WWWDIR%%/vendor/symfony/routing/Matcher/UrlMatcherInterface.php +%%WWWDIR%%/vendor/symfony/routing/README.md +%%WWWDIR%%/vendor/symfony/routing/RequestContext.php +%%WWWDIR%%/vendor/symfony/routing/RequestContextAwareInterface.php +%%WWWDIR%%/vendor/symfony/routing/Requirement/EnumRequirement.php +%%WWWDIR%%/vendor/symfony/routing/Requirement/Requirement.php +%%WWWDIR%%/vendor/symfony/routing/Route.php +%%WWWDIR%%/vendor/symfony/routing/RouteCollection.php +%%WWWDIR%%/vendor/symfony/routing/RouteCompiler.php +%%WWWDIR%%/vendor/symfony/routing/RouteCompilerInterface.php +%%WWWDIR%%/vendor/symfony/routing/Router.php +%%WWWDIR%%/vendor/symfony/routing/RouterInterface.php +%%WWWDIR%%/vendor/symfony/routing/composer.json +%%WWWDIR%%/vendor/symfony/serializer/Annotation/Context.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/DiscriminatorMap.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/Groups.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/Ignore.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/MaxDepth.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/SerializedName.php +%%WWWDIR%%/vendor/symfony/serializer/Annotation/SerializedPath.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/Context.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/DiscriminatorMap.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/Groups.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/Ignore.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/MaxDepth.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/SerializedName.php +%%WWWDIR%%/vendor/symfony/serializer/Attribute/SerializedPath.php +%%WWWDIR%%/vendor/symfony/serializer/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/serializer/CacheWarmer/CompiledClassMetadataCacheWarmer.php +%%WWWDIR%%/vendor/symfony/serializer/Command/DebugCommand.php +%%WWWDIR%%/vendor/symfony/serializer/Context/ContextBuilderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Context/ContextBuilderTrait.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Encoder/CsvEncoderContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Encoder/JsonEncoderContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Encoder/XmlEncoderContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Encoder/YamlEncoderContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/AbstractNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/AbstractObjectNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/BackedEnumNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/ConstraintViolationListNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/DateIntervalNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/DateTimeNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/FormErrorNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/GetSetMethodNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/JsonSerializableNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/ObjectNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/ProblemNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/PropertyNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/UidNormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer/UnwrappingDenormalizerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/Context/SerializerContextBuilder.php +%%WWWDIR%%/vendor/symfony/serializer/DataCollector/SerializerDataCollector.php +%%WWWDIR%%/vendor/symfony/serializer/Debug/TraceableEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Debug/TraceableNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Debug/TraceableSerializer.php +%%WWWDIR%%/vendor/symfony/serializer/DependencyInjection/SerializerPass.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/ChainDecoder.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/ChainEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/ContextAwareDecoderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/ContextAwareEncoderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/CsvEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/DecoderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/EncoderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/JsonDecode.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/JsonEncode.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/JsonEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/NormalizationAwareInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/XmlEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Encoder/YamlEncoder.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/BadMethodCallException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/CircularReferenceException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/ExtraAttributesException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/InvalidArgumentException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/LogicException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/MappingException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/MissingConstructorArgumentsException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/NotEncodableValueException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/NotNormalizableValueException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/PartialDenormalizationException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/UnexpectedValueException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/UnsupportedException.php +%%WWWDIR%%/vendor/symfony/serializer/Exception/UnsupportedFormatException.php +%%WWWDIR%%/vendor/symfony/serializer/Extractor/ObjectPropertyListExtractor.php +%%WWWDIR%%/vendor/symfony/serializer/Extractor/ObjectPropertyListExtractorInterface.php +%%WWWDIR%%/vendor/symfony/serializer/LICENSE +%%WWWDIR%%/vendor/symfony/serializer/Mapping/AttributeMetadata.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/AttributeMetadataInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/ClassDiscriminatorFromClassMetadata.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/ClassDiscriminatorMapping.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/ClassDiscriminatorResolverInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/ClassMetadata.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/ClassMetadataInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/CacheClassMetadataFactory.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/ClassMetadataFactory.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/ClassMetadataFactoryCompiler.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/ClassMetadataFactoryInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/ClassResolverTrait.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory/CompiledClassMetadataFactory.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/AnnotationLoader.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/AttributeLoader.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/FileLoader.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/LoaderChain.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/LoaderInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/XmlFileLoader.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/YamlFileLoader.php +%%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/schema/dic/serializer-mapping/serializer-mapping-1.0.xsd +%%WWWDIR%%/vendor/symfony/serializer/NameConverter/AdvancedNameConverterInterface.php +%%WWWDIR%%/vendor/symfony/serializer/NameConverter/CamelCaseToSnakeCaseNameConverter.php +%%WWWDIR%%/vendor/symfony/serializer/NameConverter/MetadataAwareNameConverter.php +%%WWWDIR%%/vendor/symfony/serializer/NameConverter/NameConverterInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/AbstractNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/AbstractObjectNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ArrayDenormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/BackedEnumNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/CacheableSupportsMethodInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ConstraintViolationListNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ContextAwareDenormalizerInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ContextAwareNormalizerInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/CustomNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DataUriNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DateIntervalNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DateTimeNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DateTimeZoneNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DenormalizableInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DenormalizerAwareInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DenormalizerAwareTrait.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/DenormalizerInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/FormErrorNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/GetSetMethodNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/JsonSerializableNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/MimeMessageNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/NormalizableInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/NormalizerAwareInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/NormalizerAwareTrait.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/NormalizerInterface.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ObjectNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ObjectToPopulateTrait.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/ProblemNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/PropertyNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/TranslatableNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/UidNormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/Normalizer/UnwrappingDenormalizer.php +%%WWWDIR%%/vendor/symfony/serializer/README.md +%%WWWDIR%%/vendor/symfony/serializer/Serializer.php +%%WWWDIR%%/vendor/symfony/serializer/SerializerAwareInterface.php +%%WWWDIR%%/vendor/symfony/serializer/SerializerAwareTrait.php +%%WWWDIR%%/vendor/symfony/serializer/SerializerInterface.php +%%WWWDIR%%/vendor/symfony/serializer/composer.json %%WWWDIR%%/vendor/symfony/service-contracts/Attribute/Required.php %%WWWDIR%%/vendor/symfony/service-contracts/Attribute/SubscribedService.php %%WWWDIR%%/vendor/symfony/service-contracts/CHANGELOG.md %%WWWDIR%%/vendor/symfony/service-contracts/LICENSE %%WWWDIR%%/vendor/symfony/service-contracts/README.md %%WWWDIR%%/vendor/symfony/service-contracts/ResetInterface.php +%%WWWDIR%%/vendor/symfony/service-contracts/ServiceCollectionInterface.php %%WWWDIR%%/vendor/symfony/service-contracts/ServiceLocatorTrait.php +%%WWWDIR%%/vendor/symfony/service-contracts/ServiceMethodsSubscriberTrait.php %%WWWDIR%%/vendor/symfony/service-contracts/ServiceProviderInterface.php %%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberInterface.php %%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberTrait.php @@ -6180,6 +10460,7 @@ %%WWWDIR%%/vendor/symfony/string/Inflector/EnglishInflector.php %%WWWDIR%%/vendor/symfony/string/Inflector/FrenchInflector.php %%WWWDIR%%/vendor/symfony/string/Inflector/InflectorInterface.php +%%WWWDIR%%/vendor/symfony/string/Inflector/SpanishInflector.php %%WWWDIR%%/vendor/symfony/string/LICENSE %%WWWDIR%%/vendor/symfony/string/LazyString.php %%WWWDIR%%/vendor/symfony/string/README.md @@ -6188,6 +10469,7 @@ %%WWWDIR%%/vendor/symfony/string/Resources/functions.php %%WWWDIR%%/vendor/symfony/string/Slugger/AsciiSlugger.php %%WWWDIR%%/vendor/symfony/string/Slugger/SluggerInterface.php +%%WWWDIR%%/vendor/symfony/string/TruncateMode.php %%WWWDIR%%/vendor/symfony/string/UnicodeString.php %%WWWDIR%%/vendor/symfony/string/composer.json %%WWWDIR%%/vendor/symfony/translation-contracts/CHANGELOG.md @@ -6199,20 +10481,286 @@ %%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorInterface.php %%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorTrait.php %%WWWDIR%%/vendor/symfony/translation-contracts/composer.json +%%WWWDIR%%/vendor/symfony/var-dumper/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/AmqpCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ArgsStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/Caster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ClassStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ConstStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutArrayStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DOMCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DateCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DoctrineCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsPairStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/EnumStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ExceptionCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/FFICaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/FiberCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/FrameStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/GmpCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImagineCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImgStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/IntlCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/LinkStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/MemcachedCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/MysqliCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PdoCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PgSqlCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/RdKafkaCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/RedisCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ReflectionCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ResourceCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ScalarStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SplCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/StubCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SymfonyCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/TraceStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/UninitializedStub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/UuidCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/AbstractCloner.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/ClonerInterface.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Cursor.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Data.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/DumperInterface.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Stub.php +%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/VarCloner.php +%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php +%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php +%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php +%%WWWDIR%%/vendor/symfony/var-dumper/Command/ServerDumpCommand.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/AbstractDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/CliDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/HtmlDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ServerDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php +%%WWWDIR%%/vendor/symfony/var-dumper/LICENSE +%%WWWDIR%%/vendor/symfony/var-dumper/README.md +%%WWWDIR%%/vendor/symfony/var-dumper/Resources/bin/var-dump-server +%%WWWDIR%%/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css +%%WWWDIR%%/vendor/symfony/var-dumper/Resources/functions/dump.php +%%WWWDIR%%/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js +%%WWWDIR%%/vendor/symfony/var-dumper/Server/Connection.php +%%WWWDIR%%/vendor/symfony/var-dumper/Server/DumpServer.php +%%WWWDIR%%/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php +%%WWWDIR%%/vendor/symfony/var-dumper/VarDumper.php +%%WWWDIR%%/vendor/symfony/var-dumper/composer.json %%WWWDIR%%/vendor/symfony/var-exporter/CHANGELOG.md %%WWWDIR%%/vendor/symfony/var-exporter/Exception/ClassNotFoundException.php %%WWWDIR%%/vendor/symfony/var-exporter/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/var-exporter/Exception/LogicException.php %%WWWDIR%%/vendor/symfony/var-exporter/Exception/NotInstantiableTypeException.php +%%WWWDIR%%/vendor/symfony/var-exporter/Hydrator.php %%WWWDIR%%/vendor/symfony/var-exporter/Instantiator.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Exporter.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Hydrator.php +%%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyDecoratorTrait.php +%%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectRegistry.php +%%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectState.php +%%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectTrait.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Reference.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Registry.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Values.php %%WWWDIR%%/vendor/symfony/var-exporter/LICENSE +%%WWWDIR%%/vendor/symfony/var-exporter/LazyGhostTrait.php +%%WWWDIR%%/vendor/symfony/var-exporter/LazyObjectInterface.php +%%WWWDIR%%/vendor/symfony/var-exporter/LazyProxyTrait.php +%%WWWDIR%%/vendor/symfony/var-exporter/ProxyHelper.php %%WWWDIR%%/vendor/symfony/var-exporter/README.md %%WWWDIR%%/vendor/symfony/var-exporter/VarExporter.php %%WWWDIR%%/vendor/symfony/var-exporter/composer.json +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/CODEOWNERS +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/CODE_OF_CONDUCT.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/CONTRIBUTING.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/LICENSE +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/Makefile +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/README.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/RELEASE +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/SECURITY.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/VERSION +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/composer.json +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/example/index.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/phpcompatinfo.json +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/phpcs.xml +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/phpstan.neon +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/phpunit.xml.dist +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/autoload.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/changelog +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/compat +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/control +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/copyright +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/rules +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/source/format +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/phpmd/codesize.xml +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/phpmd/design.xml +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/rpm/rpm.spec +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Barcode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Exception.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Model.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Convert.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Codabar.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeNineThree.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneOne.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight/CodeOneTwoEightA.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight/CodeOneTwoEightB.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight/CodeOneTwoEightC.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight/Process.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeThreeNine.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeThreeNineCheck.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeThreeNineExt.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeThreeNineExtCheck.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/EanEight.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/EanFive.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/EanOneThree.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/EanTwo.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Imb.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/ImbPre.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/InterleavedTwoOfFive.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/InterleavedTwoOfFiveCheck.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/KlantIndex.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Msi.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/MsiCheck.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Pharma.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/PharmaTwoTracks.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Planet.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Postnet.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/Raw.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/RoyalMailFourCc.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/StandardTwoOfFive.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/StandardTwoOfFiveCheck.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/UpcA.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/UpcE.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Raw.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/Bitstream.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/Codeword.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/Data.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/Encode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/ErrorCorrection.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec/Layers.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/Data.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/Encode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/EncodeTxt.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/ErrorCorrection.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/Modes.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/Placement.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix/Steps.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/PdfFourOneSeven.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/PdfFourOneSeven/Compaction.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/PdfFourOneSeven/Data.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/PdfFourOneSeven/Sequence.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/ByteStream.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Data.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Encode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Encoder.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/EncodingMode.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Estimate.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Init.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/InputItem.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Mask.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/MaskNum.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Spec.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/SpecRs.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode/Split.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Raw.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/BarcodeTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodabarTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeNineThreeTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneOneTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneTwoEight/CodeOneTwoEightATest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneTwoEight/CodeOneTwoEightBTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneTwoEight/CodeOneTwoEightCTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneTwoEightTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeThreeNineCheckTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeThreeNineExtCheckTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeThreeNineExtTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeThreeNineTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/EanEightTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/EanFiveTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/EanOneThreeTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/EanTwoTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/ImbPreTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/ImbTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/InterleavedTwoOfFiveCheckTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/InterleavedTwoOfFiveTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/KlantIndexTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/MsiCheckTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/MsiTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/PharmaTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/PharmaTwoTracksTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/PlanetTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/PostnetTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/RawTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/RoyalMailFourCcTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/StandardTwoOfFiveCheckTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/StandardTwoOfFiveTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/UpcATest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/UpcETest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square/AztecTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square/DatamatrixTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square/PdfFourOneSevenTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square/QrCodeTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square/RawTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/TestStrings.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/TestUtil.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/CODEOWNERS +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/CODE_OF_CONDUCT.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/CONTRIBUTING.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/LICENSE +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/Makefile +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/README.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/RELEASE +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/SECURITY.md +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/VERSION +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/composer.json +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/example/index.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/phpcompatinfo.json +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/phpcs.xml +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/phpstan.neon +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/phpunit.xml.dist +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/autoload.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/changelog +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/compat +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/control +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/copyright +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/rules +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/source/format +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/rpm/rpm.spec +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Css.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Exception.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model/Cmyk.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model/Gray.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model/Hsl.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model/Rgb.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model/Template.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Pdf.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Spot.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Web.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/Model/CmykTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/Model/GrayTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/Model/HslTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/Model/RgbTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/PdfTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/SpotTest.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/TestUtil.php +%%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/WebTest.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/CHANGELOG.TXT %%WWWDIR%%/vendor/tecnickcom/tcpdf/LICENSE.TXT %%WWWDIR%%/vendor/tecnickcom/tcpdf/README.md @@ -6424,8 +10972,580 @@ %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_autoconfig.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_barcodes_1d.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_barcodes_2d.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_import.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_parser.php +%%WWWDIR%%/vendor/tecnickcom/tcpdf/tools/convert_fonts_examples.txt +%%WWWDIR%%/vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php +%%WWWDIR%%/vendor/thecodingmachine/safe/LICENSE +%%WWWDIR%%/vendor/thecodingmachine/safe/README.md +%%WWWDIR%%/vendor/thecodingmachine/safe/composer.json +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/rector-migrate.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/rector-migrate.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/rnp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/rector-migrate.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/rnp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/rector-migrate.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/rnp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/rector-migrate.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/rnp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ApacheException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ApcuException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ArrayException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/Bzip2Exception.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/CalendarException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ClassobjException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ComException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/CubridException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/DatetimeException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/DirException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/EioException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ErrorfuncException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ExecException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FileinfoException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FilesystemException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FilterException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FpmException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FtpException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/FunchandException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/GettextException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/GmpException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/GnupgException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/HashException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/IbaseException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/IbmDb2Exception.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/IconvException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ImageException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ImapException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/InfoException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/InotifyException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/LdapException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/LibxmlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/LzfException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/MailparseException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/MbstringException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/MiscException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/MysqlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/MysqliException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/NetworkException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/Oci8Exception.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/OpcacheException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/OutcontrolException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/PcntlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/PgsqlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/PosixException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/PsException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/PspellException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ReadlineException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/RnpException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/RpminfoException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/RrdException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SemException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SessionException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ShmopException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SocketsException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SodiumException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SolrException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SplException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SqlsrvException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SsdeepException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/Ssh2Exception.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/StreamException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/StringsException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/SwooleException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/UodbcException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/UopzException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/UrlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/VarException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/XdiffException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/XmlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/XmlrpcException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/YamlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/YazException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ZipException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions/ZlibException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/apache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/apcu.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/array.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/bzip2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/calendar.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/classobj.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/com.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/cubrid.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/curl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/datetime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/dir.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/eio.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/errorfunc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/exec.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/fileinfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/filesystem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/filter.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/fpm.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ftp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/funchand.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/functionsList.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/gettext.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/gmp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/gnupg.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/hash.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ibase.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ibmDb2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/iconv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/image.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/imap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/info.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/inotify.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/json.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ldap.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/libxml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/lzf.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/mailparse.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/mbstring.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/misc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/mysql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/mysqli.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/network.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/oci8.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/opcache.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/openssl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/outcontrol.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/pcntl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/pcre.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/pgsql.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/posix.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ps.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/pspell.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/readline.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/rnp.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/rpminfo.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/rrd.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/sem.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/session.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/shmop.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/sockets.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/sodium.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/solr.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/spl.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/sqlsrv.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ssdeep.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/ssh2.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/stream.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/strings.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/swoole.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/uodbc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/uopz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/url.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/var.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/xdiff.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/xml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/xmlrpc.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/yaml.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/yaz.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/zip.php +%%WWWDIR%%/vendor/thecodingmachine/safe/generated/zlib.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/DateTime.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/DateTimeImmutable.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/CurlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/JsonException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/OpensslException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/PcreException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/SafeExceptionInterface.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions/SimplexmlException.php +%%WWWDIR%%/vendor/thecodingmachine/safe/lib/special_cases.php +%%WWWDIR%%/vendor/thecodingmachine/safe/rector-migrate.php %%WWWDIR%%/vendor/thenetworg/oauth2-azure/CHANGELOG.md %%WWWDIR%%/vendor/thenetworg/oauth2-azure/LICENSE.md %%WWWDIR%%/vendor/thenetworg/oauth2-azure/README.md @@ -6440,14 +11560,17 @@ %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Provider/AzureResourceOwnerTest.php %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Provider/AzureTest.php %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Token/AccessTokenTest.php -%%WWWDIR%%/vendor/true/punycode/CHANGELOG.md -%%WWWDIR%%/vendor/true/punycode/LICENSE -%%WWWDIR%%/vendor/true/punycode/README.md -%%WWWDIR%%/vendor/true/punycode/composer.json -%%WWWDIR%%/vendor/true/punycode/src/Exception/DomainOutOfBoundsException.php -%%WWWDIR%%/vendor/true/punycode/src/Exception/LabelOutOfBoundsException.php -%%WWWDIR%%/vendor/true/punycode/src/Exception/OutOfBoundsException.php -%%WWWDIR%%/vendor/true/punycode/src/Punycode.php +%%WWWDIR%%/vendor/twig/markdown-extra/DefaultMarkdown.php +%%WWWDIR%%/vendor/twig/markdown-extra/ErusevMarkdown.php +%%WWWDIR%%/vendor/twig/markdown-extra/LICENSE +%%WWWDIR%%/vendor/twig/markdown-extra/LeagueMarkdown.php +%%WWWDIR%%/vendor/twig/markdown-extra/MarkdownExtension.php +%%WWWDIR%%/vendor/twig/markdown-extra/MarkdownInterface.php +%%WWWDIR%%/vendor/twig/markdown-extra/MarkdownRuntime.php +%%WWWDIR%%/vendor/twig/markdown-extra/MichelfMarkdown.php +%%WWWDIR%%/vendor/twig/markdown-extra/README.md +%%WWWDIR%%/vendor/twig/markdown-extra/Resources/functions.php +%%WWWDIR%%/vendor/twig/markdown-extra/composer.json %%WWWDIR%%/vendor/twig/string-extra/LICENSE %%WWWDIR%%/vendor/twig/string-extra/README.md %%WWWDIR%%/vendor/twig/string-extra/StringExtension.php @@ -6456,25 +11579,58 @@ %%WWWDIR%%/vendor/twig/twig/LICENSE %%WWWDIR%%/vendor/twig/twig/README.rst %%WWWDIR%%/vendor/twig/twig/composer.json +%%WWWDIR%%/vendor/twig/twig/phpstan-baseline.neon +%%WWWDIR%%/vendor/twig/twig/phpstan.neon.dist +%%WWWDIR%%/vendor/twig/twig/src/AbstractTwigCallable.php +%%WWWDIR%%/vendor/twig/twig/src/Attribute/AsTwigFilter.php +%%WWWDIR%%/vendor/twig/twig/src/Attribute/AsTwigFunction.php +%%WWWDIR%%/vendor/twig/twig/src/Attribute/AsTwigTest.php +%%WWWDIR%%/vendor/twig/twig/src/Attribute/FirstClassTwigCallableReady.php %%WWWDIR%%/vendor/twig/twig/src/Attribute/YieldReady.php %%WWWDIR%%/vendor/twig/twig/src/Cache/CacheInterface.php %%WWWDIR%%/vendor/twig/twig/src/Cache/ChainCache.php %%WWWDIR%%/vendor/twig/twig/src/Cache/FilesystemCache.php %%WWWDIR%%/vendor/twig/twig/src/Cache/NullCache.php %%WWWDIR%%/vendor/twig/twig/src/Cache/ReadOnlyFilesystemCache.php +%%WWWDIR%%/vendor/twig/twig/src/Cache/RemovableCacheInterface.php %%WWWDIR%%/vendor/twig/twig/src/Compiler.php +%%WWWDIR%%/vendor/twig/twig/src/DeprecatedCallableInfo.php %%WWWDIR%%/vendor/twig/twig/src/Environment.php %%WWWDIR%%/vendor/twig/twig/src/Error/Error.php %%WWWDIR%%/vendor/twig/twig/src/Error/LoaderError.php %%WWWDIR%%/vendor/twig/twig/src/Error/RuntimeError.php %%WWWDIR%%/vendor/twig/twig/src/Error/SyntaxError.php %%WWWDIR%%/vendor/twig/twig/src/ExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/AbstractExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/ExpressionParserDescriptionInterface.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/ExpressionParserInterface.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/ExpressionParserType.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/ExpressionParsers.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/ArgumentsTrait.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/ArrowExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/BinaryOperatorExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/ConditionalTernaryExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/DotExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/FilterExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/FunctionExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/IsExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/IsNotExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix/SquareBracketExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/InfixAssociativity.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/InfixExpressionParserInterface.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/PrecedenceChange.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Prefix/GroupingExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Prefix/LiteralExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Prefix/UnaryOperatorExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/PrefixExpressionParserInterface.php %%WWWDIR%%/vendor/twig/twig/src/Extension/AbstractExtension.php +%%WWWDIR%%/vendor/twig/twig/src/Extension/AttributeExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/CoreExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/DebugExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/EscaperExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/ExtensionInterface.php %%WWWDIR%%/vendor/twig/twig/src/Extension/GlobalsInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Extension/LastModifiedExtensionInterface.php %%WWWDIR%%/vendor/twig/twig/src/Extension/OptimizerExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/ProfilerExtension.php %%WWWDIR%%/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php @@ -6501,6 +11657,7 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/DeprecatedNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/DoNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/EmbedNode.php +%%WWWDIR%%/vendor/twig/twig/src/Node/EmptyNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/AbstractExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ArrayExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php @@ -6508,11 +11665,13 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/BinaryInterface.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/ElvisBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php @@ -6528,12 +11687,14 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/NullCoalesceBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary/XorBinary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/CallExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php @@ -6542,13 +11703,27 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Filter/RawFilter.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/FilterExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/FunctionExpression.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/FunctionNode/EnumCasesFunction.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/FunctionNode/EnumFunction.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/InlinePrint.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ListExpression.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/MacroReferenceExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/NameExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/OperatorEscapeInterface.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ParentExpression.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ReturnArrayInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ReturnBoolInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ReturnNumberInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ReturnPrimitiveTypeInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/ReturnStringInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/SupportDefinedTestDeprecationTrait.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/SupportDefinedTestInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/SupportDefinedTestTrait.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/TempNameExpression.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Ternary/ConditionalTernary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php @@ -6556,13 +11731,23 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/NullTest.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/OddTest.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test/TrueTest.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/TestExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/SpreadUnary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/StringCastUnary.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary/UnaryInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable/AssignContextVariable.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable/AssignTemplateVariable.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable/ContextVariable.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable/LocalVariable.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable/TemplateVariable.php %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/VariadicExpression.php %%WWWDIR%%/vendor/twig/twig/src/Node/FlushNode.php +%%WWWDIR%%/vendor/twig/twig/src/Node/ForElseNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/ForLoopNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/ForNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/IfNode.php @@ -6574,20 +11759,22 @@ %%WWWDIR%%/vendor/twig/twig/src/Node/Node.php %%WWWDIR%%/vendor/twig/twig/src/Node/NodeCaptureInterface.php %%WWWDIR%%/vendor/twig/twig/src/Node/NodeOutputInterface.php +%%WWWDIR%%/vendor/twig/twig/src/Node/Nodes.php %%WWWDIR%%/vendor/twig/twig/src/Node/PrintNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/SandboxNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/SetNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/TextNode.php +%%WWWDIR%%/vendor/twig/twig/src/Node/TypesNode.php %%WWWDIR%%/vendor/twig/twig/src/Node/WithNode.php %%WWWDIR%%/vendor/twig/twig/src/NodeTraverser.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php -%%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php +%%WWWDIR%%/vendor/twig/twig/src/OperatorPrecedenceChange.php %%WWWDIR%%/vendor/twig/twig/src/Parser.php %%WWWDIR%%/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php %%WWWDIR%%/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php @@ -6631,6 +11818,7 @@ %%WWWDIR%%/vendor/twig/twig/src/TokenParser/FlushTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/ForTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/FromTokenParser.php +%%WWWDIR%%/vendor/twig/twig/src/TokenParser/GuardTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/IfTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/ImportTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php @@ -6638,22 +11826,27 @@ %%WWWDIR%%/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/SetTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/TokenParserInterface.php +%%WWWDIR%%/vendor/twig/twig/src/TokenParser/TypesTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/UseTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenParser/WithTokenParser.php %%WWWDIR%%/vendor/twig/twig/src/TokenStream.php +%%WWWDIR%%/vendor/twig/twig/src/TwigCallableInterface.php %%WWWDIR%%/vendor/twig/twig/src/TwigFilter.php %%WWWDIR%%/vendor/twig/twig/src/TwigFunction.php %%WWWDIR%%/vendor/twig/twig/src/TwigTest.php +%%WWWDIR%%/vendor/twig/twig/src/Util/CallableArgumentsExtractor.php %%WWWDIR%%/vendor/twig/twig/src/Util/DeprecationCollector.php %%WWWDIR%%/vendor/twig/twig/src/Util/ReflectionCallable.php %%WWWDIR%%/vendor/twig/twig/src/Util/TemplateDirIterator.php %%WWWDIR%%/vendor/wapmorgan/unified-archive/CHANGELOG.md %%WWWDIR%%/vendor/wapmorgan/unified-archive/LICENSE %%WWWDIR%%/vendor/wapmorgan/unified-archive/README.md +%%WWWDIR%%/vendor/wapmorgan/unified-archive/bin/cam %%WWWDIR%%/vendor/wapmorgan/unified-archive/composer.json %%WWWDIR%%/vendor/wapmorgan/unified-archive/docs/API.md %%WWWDIR%%/vendor/wapmorgan/unified-archive/docs/Drivers.md %%WWWDIR%%/vendor/wapmorgan/unified-archive/docs/Usage.md +%%WWWDIR%%/vendor/wapmorgan/unified-archive/src/Abilities.php %%WWWDIR%%/vendor/wapmorgan/unified-archive/src/Archive7z.php %%WWWDIR%%/vendor/wapmorgan/unified-archive/src/ArchiveEntry.php %%WWWDIR%%/vendor/wapmorgan/unified-archive/src/ArchiveInformation.php @@ -6712,18 +11905,270 @@ %%WWWDIR%%/vendor/webmozart/assert/LICENSE %%WWWDIR%%/vendor/webmozart/assert/README.md %%WWWDIR%%/vendor/webmozart/assert/composer.json -%%WWWDIR%%/vendor/webmozart/assert/psalm.xml %%WWWDIR%%/vendor/webmozart/assert/src/Assert.php %%WWWDIR%%/vendor/webmozart/assert/src/InvalidArgumentException.php %%WWWDIR%%/vendor/webmozart/assert/src/Mixin.php -%%WWWDIR%%/version/10.0.20 +%%WWWDIR%%/vendor/webonyx/graphql-php/CHANGELOG.md +%%WWWDIR%%/vendor/webonyx/graphql-php/LICENSE +%%WWWDIR%%/vendor/webonyx/graphql-php/Makefile +%%WWWDIR%%/vendor/webonyx/graphql-php/README.md +%%WWWDIR%%/vendor/webonyx/graphql-php/UPGRADE.md +%%WWWDIR%%/vendor/webonyx/graphql-php/composer.json +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/class-reference.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/complementary-tools.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/concepts.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/data-fetching.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/error-handling.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/executing-queries.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/getting-started.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/index.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/schema-definition-language.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/schema-definition.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/security.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/directives.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/enums.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/index.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/inputs.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/interfaces.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/lists-and-nonnulls.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/object-types.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/scalars.md +%%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions/unions.md +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Deferred.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/ClientAware.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/CoercionError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/DebugFlag.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/Error.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/FormattedError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/InvariantViolation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/ProvidesExtensions.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/SerializationError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/SyntaxError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/UserError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Error/Warning.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/ExecutionContext.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/ExecutionResult.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Executor.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/ExecutorImplementation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Adapter/AmpPromiseAdapter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Adapter/ReactPromiseAdapter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Adapter/SyncPromise.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Adapter/SyncPromiseAdapter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Promise.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/PromiseAdapter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/ReferenceExecutor.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/ScopedContext.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Values.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/GraphQL.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ArgumentNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/BooleanValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/DefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/DirectiveDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/DirectiveNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/DocumentNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/EnumTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/EnumTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/EnumValueDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/EnumValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ExecutableDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/FieldDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/FieldNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/FloatValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/FragmentDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/FragmentSpreadNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/HasSelectionSet.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InlineFragmentNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InputObjectTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InputObjectTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InputValueDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/IntValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InterfaceTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/InterfaceTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ListTypeNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ListValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/Location.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NameNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NamedTypeNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/Node.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NodeKind.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NodeList.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NonNullTypeNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/NullValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ObjectFieldNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ObjectTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ObjectTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ObjectValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/OperationDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/OperationTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ScalarTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ScalarTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/SchemaDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/SchemaExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/SelectionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/SelectionSetNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/StringValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/TypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/TypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/TypeNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/TypeSystemDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/TypeSystemExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/UnionTypeDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/UnionTypeExtensionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/ValueNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/VariableDefinitionNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST/VariableNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/BlockString.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/DirectiveLocation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Lexer.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Parser.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Printer.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Source.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/SourceLocation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Token.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/Visitor.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/VisitorOperation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/VisitorRemoveNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/VisitorSkipNode.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/VisitorStop.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/BatchedQueriesAreNotSupported.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/CannotParseJsonBody.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/CannotParseVariables.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/CannotReadBody.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/FailedToDetermineOperationType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/GetMethodSupportsOnlyQueryOperation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/HttpMethodNotSupported.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/InvalidOperationParameter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/InvalidQueryIdParameter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/InvalidQueryParameter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/MissingContentTypeHeader.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/MissingQueryOrQueryIdParameter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/PersistedQueriesAreNotSupported.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception/UnexpectedContentType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Helper.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/OperationParams.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/RequestError.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/ServerConfig.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/StandardServer.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/AbstractType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/Argument.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/BooleanType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/CompositeType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/CustomScalarType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/Deprecated.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/Description.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/Directive.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/EnumType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/EnumValueDefinition.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/FieldDefinition.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/FloatType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/HasFieldsType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/HasFieldsTypeImplementation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/IDType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ImplementingType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ImplementingTypeImplementation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/InputObjectField.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/InputObjectType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/InputType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/IntType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/InterfaceType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/LeafType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ListOfType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/NamedType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/NamedTypeImplementation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/NonNull.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/NullableType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ObjectType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/OutputType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/PhpEnumType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/QueryPlan.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ResolveInfo.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/ScalarType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/StringType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/Type.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/UnionType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/UnmodifiedType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/UnresolvedFieldDefinition.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition/WrappingType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Introspection.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Schema.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/SchemaConfig.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/SchemaValidationContext.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/TypeKind.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Validation/InputObjectCircularRefs.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/AST.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/ASTDefinitionBuilder.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/BreakingChangesFinder.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/BuildClientSchema.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/BuildSchema.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/InterfaceImplementations.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/LazyException.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/LexicalDistance.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/MixedStore.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/PairSet.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/PhpDoc.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/SchemaExtender.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/SchemaPrinter.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/TypeComparators.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/TypeInfo.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/Utils.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils/Value.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/DocumentValidator.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/QueryValidationContext.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/CustomValidationRule.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/DisableIntrospection.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ExecutableDefinitions.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/FieldsOnCorrectType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/FragmentsOnCompositeTypes.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/KnownArgumentNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/KnownArgumentNamesOnDirectives.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/KnownDirectives.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/KnownFragmentNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/KnownTypeNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/LoneAnonymousOperation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/LoneSchemaDefinition.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/NoFragmentCycles.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/NoUndefinedVariables.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/NoUnusedFragments.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/NoUnusedVariables.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/OneOfInputObjectsRule.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/OverlappingFieldsCanBeMerged.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/PossibleFragmentSpreads.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/PossibleTypeExtensions.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ProvidedRequiredArguments.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ProvidedRequiredArgumentsOnDirectives.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/QueryComplexity.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/QueryDepth.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/QuerySecurityRule.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ScalarLeafs.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/SingleFieldSubscription.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueArgumentDefinitionNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueArgumentNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueDirectiveNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueDirectivesPerLocation.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueEnumValueNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueFieldDefinitionNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueFragmentNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueInputFieldNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueOperationNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueOperationTypes.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueTypeNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/UniqueVariableNames.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ValidationRule.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/ValuesOfCorrectType.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/VariablesAreInputTypes.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules/VariablesInAllowedPosition.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/SDLValidationContext.php +%%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/ValidationContext.php +%%WWWDIR%%/version/11.0.0 @dir %%WWWDIR%%/ajax +@dir %%WWWDIR%%/ajax/asset +@dir %%WWWDIR%%/ajax/form @dir %%WWWDIR%%/bin @dir %%WWWDIR%%/config @dir %%WWWDIR%%/css @dir %%WWWDIR%%/css/includes @dir %%WWWDIR%%/css/includes/components -@dir %%WWWDIR%%/css/includes/components/chartist +@dir %%WWWDIR%%/css/includes/components/form @dir %%WWWDIR%%/css/includes/components/itilobject @dir %%WWWDIR%%/css/includes/components/setup @dir %%WWWDIR%%/css/includes/mixins @@ -6731,17 +12176,7 @@ @dir %%WWWDIR%%/css/legacy @dir %%WWWDIR%%/css/legacy/includes @dir %%WWWDIR%%/css/lib -@dir %%WWWDIR%%/css/lib/bootstrap -@dir %%WWWDIR%%/css/lib/bootstrap/scss -@dir %%WWWDIR%%/css/lib/bootstrap/scss/forms -@dir %%WWWDIR%%/css/lib/bootstrap/scss/helpers -@dir %%WWWDIR%%/css/lib/bootstrap/scss/mixins -@dir %%WWWDIR%%/css/lib/bootstrap/scss/utilities -@dir %%WWWDIR%%/css/lib/bootstrap/scss/vendor -@dir %%WWWDIR%%/css/lib/fontsource -@dir %%WWWDIR%%/css/lib/fontsource/inter -@dir %%WWWDIR%%/css/lib/fontsource/inter/files -@dir %%WWWDIR%%/css/lib/fontsource/inter/scss +@dir %%WWWDIR%%/css/lib/rfs @dir %%WWWDIR%%/css/lib/select2 @dir %%WWWDIR%%/css/lib/select2/src @dir %%WWWDIR%%/css/lib/select2/src/scss @@ -6749,29 +12184,17 @@ @dir %%WWWDIR%%/css/lib/select2/src/scss/theme @dir %%WWWDIR%%/css/lib/select2/src/scss/theme/classic @dir %%WWWDIR%%/css/lib/select2/src/scss/theme/default -@dir %%WWWDIR%%/css/lib/tabler -@dir %%WWWDIR%%/css/lib/tabler/core -@dir %%WWWDIR%%/css/lib/tabler/core/src -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/demo -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/fonts -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/layout -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/mixins -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/ui -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/ui/forms -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/ui/typo -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/utils -@dir %%WWWDIR%%/css/lib/tabler/core/src/scss/vendor -@dir %%WWWDIR%%/css/lib/tabler/icons-webfont -@dir %%WWWDIR%%/css/lib/tabler/icons-webfont/fonts +@dir %%WWWDIR%%/css/lib/tinymce +@dir %%WWWDIR%%/css/lib/tinymce/skins +@dir %%WWWDIR%%/css/lib/tinymce/skins/ui +@dir %%WWWDIR%%/css/lib/tinymce/skins/ui/oxide +@dir %%WWWDIR%%/css/lib/tinymce/skins/ui/oxide-dark @dir %%WWWDIR%%/css/palettes -@dir %%WWWDIR%%/css/palettes/previews @dir %%WWWDIR%%/css/standalone -@dir %%WWWDIR%%/css_compiled +@dir %%WWWDIR%%/dependency_injection @dir %%WWWDIR%%/files @dir %%WWWDIR%%/files/_cache @dir %%WWWDIR%%/files/_cron -@dir %%WWWDIR%%/files/_dumps @dir %%WWWDIR%%/files/_graphs @dir %%WWWDIR%%/files/_inventories @dir %%WWWDIR%%/files/_locales @@ -6781,10 +12204,14 @@ @dir %%WWWDIR%%/files/_plugins @dir %%WWWDIR%%/files/_rss @dir %%WWWDIR%%/files/_sessions +@dir %%WWWDIR%%/files/_themes @dir %%WWWDIR%%/files/_tmp @dir %%WWWDIR%%/files/_uploads @dir %%WWWDIR%%/front +@dir %%WWWDIR%%/front/asset @dir %%WWWDIR%%/front/contenttemplates +@dir %%WWWDIR%%/front/dropdown +@dir %%WWWDIR%%/front/form @dir %%WWWDIR%%/front/log @dir %%WWWDIR%%/inc @dir %%WWWDIR%%/install @@ -6806,45 +12233,54 @@ @dir %%WWWDIR%%/install/migrations/update_10.0.7_to_10.0.8 @dir %%WWWDIR%%/install/migrations/update_10.0.8_to_10.0.9 @dir %%WWWDIR%%/install/migrations/update_10.0.9_to_10.0.10 +@dir %%WWWDIR%%/install/migrations/update_10.0.x_to_11.0.0 @dir %%WWWDIR%%/install/migrations/update_9.4.x_to_9.5.0 @dir %%WWWDIR%%/install/migrations/update_9.5.x_to_10.0.0 @dir %%WWWDIR%%/install/mysql -@dir %%WWWDIR%%/js -@dir %%WWWDIR%%/js/Forms -@dir %%WWWDIR%%/js/RichText -@dir %%WWWDIR%%/js/modules -@dir %%WWWDIR%%/js/modules/Debug -@dir %%WWWDIR%%/js/modules/Kanban -@dir %%WWWDIR%%/js/modules/Search -@dir %%WWWDIR%%/js/modules/SearchTokenizer @dir %%WWWDIR%%/lib @dir %%WWWDIR%%/lib/blueimp @dir %%WWWDIR%%/lib/blueimp/jquery-file-upload @dir %%WWWDIR%%/lib/bundles @dir %%WWWDIR%%/locales @dir %%WWWDIR%%/marketplace -@dir %%WWWDIR%%/pics -@dir %%WWWDIR%%/pics/charts -@dir %%WWWDIR%%/pics/icones -@dir %%WWWDIR%%/pics/impact -@dir %%WWWDIR%%/pics/jquery -@dir %%WWWDIR%%/pics/layout -@dir %%WWWDIR%%/pics/logos -@dir %%WWWDIR%%/pics/logos/sources -@dir %%WWWDIR%%/pics/screenshots -@dir %%WWWDIR%%/pics/timeline @dir %%WWWDIR%%/plugins @dir %%WWWDIR%%/public +@dir %%WWWDIR%%/public/build +@dir %%WWWDIR%%/public/build/vue +@dir %%WWWDIR%%/public/build/vue/vue-sfc +@dir %%WWWDIR%%/public/css +@dir %%WWWDIR%%/public/css/tinymce_empty_skin +@dir %%WWWDIR%%/public/css_compiled +@dir %%WWWDIR%%/public/js +@dir %%WWWDIR%%/public/js/Forms +@dir %%WWWDIR%%/public/js/RichText +@dir %%WWWDIR%%/public/js/modules +@dir %%WWWDIR%%/public/js/modules/Dashboard +@dir %%WWWDIR%%/public/js/modules/Form +@dir %%WWWDIR%%/public/js/modules/Forms +@dir %%WWWDIR%%/public/js/modules/Forms/Condition +@dir %%WWWDIR%%/public/js/modules/Helpdesk +@dir %%WWWDIR%%/public/js/modules/ITIL +@dir %%WWWDIR%%/public/js/modules/ITIL/Timeline +@dir %%WWWDIR%%/public/js/modules/IllustrationPicker +@dir %%WWWDIR%%/public/js/modules/Monaco +@dir %%WWWDIR%%/public/js/modules/Screenshot +@dir %%WWWDIR%%/public/js/modules/Search @dir %%WWWDIR%%/public/lib @dir %%WWWDIR%%/public/lib/flatpickr @dir %%WWWDIR%%/public/lib/flatpickr/l10n @dir %%WWWDIR%%/public/lib/flatpickr/themes +@dir %%WWWDIR%%/public/lib/fontsource +@dir %%WWWDIR%%/public/lib/fontsource/inter +@dir %%WWWDIR%%/public/lib/fontsource/inter/files @dir %%WWWDIR%%/public/lib/fortawesome @dir %%WWWDIR%%/public/lib/fortawesome/fontawesome-free @dir %%WWWDIR%%/public/lib/fortawesome/fontawesome-free/webfonts @dir %%WWWDIR%%/public/lib/fullcalendar @dir %%WWWDIR%%/public/lib/fullcalendar/core @dir %%WWWDIR%%/public/lib/fullcalendar/core/locales +@dir %%WWWDIR%%/public/lib/glpi-project +@dir %%WWWDIR%%/public/lib/glpi-project/illustrations @dir %%WWWDIR%%/public/lib/jquery.fancytree @dir %%WWWDIR%%/public/lib/jquery.fancytree/dist @dir %%WWWDIR%%/public/lib/jquery.fancytree/dist/skin-awesome @@ -6858,12 +12294,22 @@ @dir %%WWWDIR%%/public/lib/leaflet.awesome-markers/dist/images @dir %%WWWDIR%%/public/lib/leaflet/dist @dir %%WWWDIR%%/public/lib/leaflet/dist/images -@dir %%WWWDIR%%/public/lib/photoswipe -@dir %%WWWDIR%%/public/lib/photoswipe/dist -@dir %%WWWDIR%%/public/lib/photoswipe/dist/default-skin +@dir %%WWWDIR%%/public/lib/monaco-editor +@dir %%WWWDIR%%/public/lib/monaco-editor/esm +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs/base +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs/base/browser +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs/base/browser/ui +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs/base/browser/ui/codicons +@dir %%WWWDIR%%/public/lib/monaco-editor/esm/vs/base/browser/ui/codicons/codicon @dir %%WWWDIR%%/public/lib/select2 @dir %%WWWDIR%%/public/lib/select2/js @dir %%WWWDIR%%/public/lib/select2/js/i18n +@dir %%WWWDIR%%/public/lib/swagger-ui-dist +@dir %%WWWDIR%%/public/lib/tabler +@dir %%WWWDIR%%/public/lib/tabler/icons-webfont +@dir %%WWWDIR%%/public/lib/tabler/icons-webfont/dist +@dir %%WWWDIR%%/public/lib/tabler/icons-webfont/dist/fonts @dir %%WWWDIR%%/public/lib/tinymce @dir %%WWWDIR%%/public/lib/tinymce-i18n @dir %%WWWDIR%%/public/lib/tinymce-i18n/langs6 @@ -6880,92 +12326,206 @@ @dir %%WWWDIR%%/public/lib/tinymce/skins/ui/oxide-dark @dir %%WWWDIR%%/public/lib/tinymce/skins/ui/tinymce-5 @dir %%WWWDIR%%/public/lib/tinymce/skins/ui/tinymce-5-dark +@dir %%WWWDIR%%/public/pics +@dir %%WWWDIR%%/public/pics/charts +@dir %%WWWDIR%%/public/pics/icones +@dir %%WWWDIR%%/public/pics/impact +@dir %%WWWDIR%%/public/pics/jquery +@dir %%WWWDIR%%/public/pics/layout +@dir %%WWWDIR%%/public/pics/logos +@dir %%WWWDIR%%/public/pics/logos/sources +@dir %%WWWDIR%%/public/pics/screenshots +@dir %%WWWDIR%%/public/pics/timeline +@dir %%WWWDIR%%/public/sound @dir %%WWWDIR%%/resources @dir %%WWWDIR%%/resources/Rules -@dir %%WWWDIR%%/sound +@dir %%WWWDIR%%/routes @dir %%WWWDIR%%/src -@dir %%WWWDIR%%/src/Agent -@dir %%WWWDIR%%/src/Agent/Communication -@dir %%WWWDIR%%/src/Agent/Communication/Headers -@dir %%WWWDIR%%/src/Api -@dir %%WWWDIR%%/src/Api/Deprecated -@dir %%WWWDIR%%/src/Application -@dir %%WWWDIR%%/src/Application/View -@dir %%WWWDIR%%/src/Application/View/Extension -@dir %%WWWDIR%%/src/Cache -@dir %%WWWDIR%%/src/CalDAV -@dir %%WWWDIR%%/src/CalDAV/Backend -@dir %%WWWDIR%%/src/CalDAV/Contracts -@dir %%WWWDIR%%/src/CalDAV/Node -@dir %%WWWDIR%%/src/CalDAV/Plugin -@dir %%WWWDIR%%/src/CalDAV/Traits -@dir %%WWWDIR%%/src/Console -@dir %%WWWDIR%%/src/Console/Assets -@dir %%WWWDIR%%/src/Console/Build -@dir %%WWWDIR%%/src/Console/Cache -@dir %%WWWDIR%%/src/Console/Command -@dir %%WWWDIR%%/src/Console/Config -@dir %%WWWDIR%%/src/Console/Database -@dir %%WWWDIR%%/src/Console/Diagnostic -@dir %%WWWDIR%%/src/Console/Exception -@dir %%WWWDIR%%/src/Console/Ldap -@dir %%WWWDIR%%/src/Console/Maintenance -@dir %%WWWDIR%%/src/Console/Marketplace -@dir %%WWWDIR%%/src/Console/Migration -@dir %%WWWDIR%%/src/Console/Plugin -@dir %%WWWDIR%%/src/Console/Rules -@dir %%WWWDIR%%/src/Console/Security -@dir %%WWWDIR%%/src/Console/System -@dir %%WWWDIR%%/src/Console/Task -@dir %%WWWDIR%%/src/Console/Traits -@dir %%WWWDIR%%/src/ContentTemplates -@dir %%WWWDIR%%/src/ContentTemplates/Parameters -@dir %%WWWDIR%%/src/ContentTemplates/Parameters/ParametersTypes -@dir %%WWWDIR%%/src/Csv -@dir %%WWWDIR%%/src/Dashboard -@dir %%WWWDIR%%/src/Dashboard/Filters -@dir %%WWWDIR%%/src/Debug -@dir %%WWWDIR%%/src/Exception -@dir %%WWWDIR%%/src/Features -@dir %%WWWDIR%%/src/Http -@dir %%WWWDIR%%/src/Inventory -@dir %%WWWDIR%%/src/Inventory/Asset -@dir %%WWWDIR%%/src/Mail -@dir %%WWWDIR%%/src/Mail/Protocol -@dir %%WWWDIR%%/src/Mail/SMTP -@dir %%WWWDIR%%/src/Mail/SMTP/OauthProvider -@dir %%WWWDIR%%/src/Marketplace -@dir %%WWWDIR%%/src/Marketplace/Api -@dir %%WWWDIR%%/src/Plugin -@dir %%WWWDIR%%/src/RichText -@dir %%WWWDIR%%/src/Rules -@dir %%WWWDIR%%/src/Stat -@dir %%WWWDIR%%/src/Stat/Data -@dir %%WWWDIR%%/src/Stat/Data/Graph -@dir %%WWWDIR%%/src/Stat/Data/Location -@dir %%WWWDIR%%/src/Stat/Data/Sglobal -@dir %%WWWDIR%%/src/System -@dir %%WWWDIR%%/src/System/Diagnostic -@dir %%WWWDIR%%/src/System/Requirement -@dir %%WWWDIR%%/src/System/Status -@dir %%WWWDIR%%/src/Team -@dir %%WWWDIR%%/src/Toolbox +@dir %%WWWDIR%%/src/Glpi +@dir %%WWWDIR%%/src/Glpi/Agent +@dir %%WWWDIR%%/src/Glpi/Agent/Communication +@dir %%WWWDIR%%/src/Glpi/Agent/Communication/Headers +@dir %%WWWDIR%%/src/Glpi/Altcha +@dir %%WWWDIR%%/src/Glpi/Api +@dir %%WWWDIR%%/src/Glpi/Api/Deprecated +@dir %%WWWDIR%%/src/Glpi/Api/HL +@dir %%WWWDIR%%/src/Glpi/Api/HL/Controller +@dir %%WWWDIR%%/src/Glpi/Api/HL/Doc +@dir %%WWWDIR%%/src/Glpi/Api/HL/Middleware +@dir %%WWWDIR%%/src/Glpi/Api/HL/RSQL +@dir %%WWWDIR%%/src/Glpi/Api/HL/Search +@dir %%WWWDIR%%/src/Glpi/Application +@dir %%WWWDIR%%/src/Glpi/Application/View +@dir %%WWWDIR%%/src/Glpi/Application/View/Extension +@dir %%WWWDIR%%/src/Glpi/Asset +@dir %%WWWDIR%%/src/Glpi/Asset/Capacity +@dir %%WWWDIR%%/src/Glpi/Asset/CustomFieldOption +@dir %%WWWDIR%%/src/Glpi/Asset/CustomFieldType +@dir %%WWWDIR%%/src/Glpi/Cache +@dir %%WWWDIR%%/src/Glpi/CalDAV +@dir %%WWWDIR%%/src/Glpi/CalDAV/Backend +@dir %%WWWDIR%%/src/Glpi/CalDAV/Contracts +@dir %%WWWDIR%%/src/Glpi/CalDAV/Node +@dir %%WWWDIR%%/src/Glpi/CalDAV/Plugin +@dir %%WWWDIR%%/src/Glpi/CalDAV/Traits +@dir %%WWWDIR%%/src/Glpi/Console +@dir %%WWWDIR%%/src/Glpi/Console/Assets +@dir %%WWWDIR%%/src/Glpi/Console/Build +@dir %%WWWDIR%%/src/Glpi/Console/Cache +@dir %%WWWDIR%%/src/Glpi/Console/Command +@dir %%WWWDIR%%/src/Glpi/Console/Config +@dir %%WWWDIR%%/src/Glpi/Console/Database +@dir %%WWWDIR%%/src/Glpi/Console/Diagnostic +@dir %%WWWDIR%%/src/Glpi/Console/Exception +@dir %%WWWDIR%%/src/Glpi/Console/Ldap +@dir %%WWWDIR%%/src/Glpi/Console/Maintenance +@dir %%WWWDIR%%/src/Glpi/Console/Marketplace +@dir %%WWWDIR%%/src/Glpi/Console/Migration +@dir %%WWWDIR%%/src/Glpi/Console/Plugin +@dir %%WWWDIR%%/src/Glpi/Console/Rules +@dir %%WWWDIR%%/src/Glpi/Console/Security +@dir %%WWWDIR%%/src/Glpi/Console/System +@dir %%WWWDIR%%/src/Glpi/Console/Task +@dir %%WWWDIR%%/src/Glpi/Console/Traits +@dir %%WWWDIR%%/src/Glpi/Console/User +@dir %%WWWDIR%%/src/Glpi/ContentTemplates +@dir %%WWWDIR%%/src/Glpi/ContentTemplates/Parameters +@dir %%WWWDIR%%/src/Glpi/ContentTemplates/Parameters/ParametersTypes +@dir %%WWWDIR%%/src/Glpi/Controller +@dir %%WWWDIR%%/src/Glpi/Controller/Altcha +@dir %%WWWDIR%%/src/Glpi/Controller/Config +@dir %%WWWDIR%%/src/Glpi/Controller/Config/Helpdesk +@dir %%WWWDIR%%/src/Glpi/Controller/Form +@dir %%WWWDIR%%/src/Glpi/Controller/Form/AllowListDropdown +@dir %%WWWDIR%%/src/Glpi/Controller/Form/Condition +@dir %%WWWDIR%%/src/Glpi/Controller/Form/Destination +@dir %%WWWDIR%%/src/Glpi/Controller/Form/Import +@dir %%WWWDIR%%/src/Glpi/Controller/Form/Translation +@dir %%WWWDIR%%/src/Glpi/Controller/Form/Utils +@dir %%WWWDIR%%/src/Glpi/Controller/Helpdesk +@dir %%WWWDIR%%/src/Glpi/Controller/Helpdesk/Translation +@dir %%WWWDIR%%/src/Glpi/Controller/ItemType +@dir %%WWWDIR%%/src/Glpi/Controller/ItemType/Form +@dir %%WWWDIR%%/src/Glpi/Controller/Knowbase +@dir %%WWWDIR%%/src/Glpi/Controller/Plugin +@dir %%WWWDIR%%/src/Glpi/Controller/Security +@dir %%WWWDIR%%/src/Glpi/Controller/ServiceCatalog +@dir %%WWWDIR%%/src/Glpi/Controller/Session +@dir %%WWWDIR%%/src/Glpi/Controller/Traits +@dir %%WWWDIR%%/src/Glpi/Controller/Translation +@dir %%WWWDIR%%/src/Glpi/Controller/UI +@dir %%WWWDIR%%/src/Glpi/Controller/UI/Illustration +@dir %%WWWDIR%%/src/Glpi/Csv +@dir %%WWWDIR%%/src/Glpi/CustomObject +@dir %%WWWDIR%%/src/Glpi/DBAL +@dir %%WWWDIR%%/src/Glpi/Dashboard +@dir %%WWWDIR%%/src/Glpi/Dashboard/Filters +@dir %%WWWDIR%%/src/Glpi/Debug +@dir %%WWWDIR%%/src/Glpi/DependencyInjection +@dir %%WWWDIR%%/src/Glpi/Dropdown +@dir %%WWWDIR%%/src/Glpi/Error +@dir %%WWWDIR%%/src/Glpi/Error/ErrorDisplayHandler +@dir %%WWWDIR%%/src/Glpi/Exception +@dir %%WWWDIR%%/src/Glpi/Exception/Http +@dir %%WWWDIR%%/src/Glpi/Features +@dir %%WWWDIR%%/src/Glpi/Form +@dir %%WWWDIR%%/src/Glpi/Form/AccessControl +@dir %%WWWDIR%%/src/Glpi/Form/AccessControl/ControlType +@dir %%WWWDIR%%/src/Glpi/Form/AnswersHandler +@dir %%WWWDIR%%/src/Glpi/Form/Clone +@dir %%WWWDIR%%/src/Glpi/Form/Condition +@dir %%WWWDIR%%/src/Glpi/Form/Condition/ConditionHandler +@dir %%WWWDIR%%/src/Glpi/Form/Destination +@dir %%WWWDIR%%/src/Glpi/Form/Destination/CommonITILField +@dir %%WWWDIR%%/src/Glpi/Form/Dropdown +@dir %%WWWDIR%%/src/Glpi/Form/Export +@dir %%WWWDIR%%/src/Glpi/Form/Export/Context +@dir %%WWWDIR%%/src/Glpi/Form/Export/Result +@dir %%WWWDIR%%/src/Glpi/Form/Export/Serializer +@dir %%WWWDIR%%/src/Glpi/Form/Export/Specification +@dir %%WWWDIR%%/src/Glpi/Form/Migration +@dir %%WWWDIR%%/src/Glpi/Form/QuestionType +@dir %%WWWDIR%%/src/Glpi/Form/ServiceCatalog +@dir %%WWWDIR%%/src/Glpi/Form/ServiceCatalog/Provider +@dir %%WWWDIR%%/src/Glpi/Form/ServiceCatalog/SortStrategy +@dir %%WWWDIR%%/src/Glpi/Form/Tag +@dir %%WWWDIR%%/src/Glpi/FuzzyMatcher +@dir %%WWWDIR%%/src/Glpi/Helpdesk +@dir %%WWWDIR%%/src/Glpi/Helpdesk/Tile +@dir %%WWWDIR%%/src/Glpi/Http +@dir %%WWWDIR%%/src/Glpi/Inventory +@dir %%WWWDIR%%/src/Glpi/Inventory/Asset +@dir %%WWWDIR%%/src/Glpi/Inventory/MainAsset +@dir %%WWWDIR%%/src/Glpi/ItemTranslation +@dir %%WWWDIR%%/src/Glpi/ItemTranslation/Context +@dir %%WWWDIR%%/src/Glpi/Kernel +@dir %%WWWDIR%%/src/Glpi/Kernel/Listener +@dir %%WWWDIR%%/src/Glpi/Kernel/Listener/ControllerListener +@dir %%WWWDIR%%/src/Glpi/Kernel/Listener/ExceptionListener +@dir %%WWWDIR%%/src/Glpi/Kernel/Listener/PostBootListener +@dir %%WWWDIR%%/src/Glpi/Kernel/Listener/RequestListener +@dir %%WWWDIR%%/src/Glpi/Log +@dir %%WWWDIR%%/src/Glpi/Mail +@dir %%WWWDIR%%/src/Glpi/Mail/Protocol +@dir %%WWWDIR%%/src/Glpi/Mail/SMTP +@dir %%WWWDIR%%/src/Glpi/Mail/SMTP/OauthProvider +@dir %%WWWDIR%%/src/Glpi/Marketplace +@dir %%WWWDIR%%/src/Glpi/Marketplace/Api +@dir %%WWWDIR%%/src/Glpi/Message +@dir %%WWWDIR%%/src/Glpi/Migration +@dir %%WWWDIR%%/src/Glpi/OAuth +@dir %%WWWDIR%%/src/Glpi/Plugin +@dir %%WWWDIR%%/src/Glpi/Progress +@dir %%WWWDIR%%/src/Glpi/RichText +@dir %%WWWDIR%%/src/Glpi/Routing +@dir %%WWWDIR%%/src/Glpi/Routing/Attribute +@dir %%WWWDIR%%/src/Glpi/Rules +@dir %%WWWDIR%%/src/Glpi/Search +@dir %%WWWDIR%%/src/Glpi/Search/Input +@dir %%WWWDIR%%/src/Glpi/Search/Output +@dir %%WWWDIR%%/src/Glpi/Search/Provider +@dir %%WWWDIR%%/src/Glpi/Security +@dir %%WWWDIR%%/src/Glpi/Security/Attribute +@dir %%WWWDIR%%/src/Glpi/Session +@dir %%WWWDIR%%/src/Glpi/Stat +@dir %%WWWDIR%%/src/Glpi/Stat/Data +@dir %%WWWDIR%%/src/Glpi/Stat/Data/Graph +@dir %%WWWDIR%%/src/Glpi/Stat/Data/Location +@dir %%WWWDIR%%/src/Glpi/Stat/Data/Sglobal +@dir %%WWWDIR%%/src/Glpi/System +@dir %%WWWDIR%%/src/Glpi/System/Diagnostic +@dir %%WWWDIR%%/src/Glpi/System/Log +@dir %%WWWDIR%%/src/Glpi/System/Requirement +@dir %%WWWDIR%%/src/Glpi/System/Status +@dir %%WWWDIR%%/src/Glpi/Team +@dir %%WWWDIR%%/src/Glpi/Toolbox +@dir %%WWWDIR%%/src/Glpi/UI +@dir %%WWWDIR%%/src/autoload @dir %%WWWDIR%%/templates @dir %%WWWDIR%%/templates/central @dir %%WWWDIR%%/templates/central/lists @dir %%WWWDIR%%/templates/components +@dir %%WWWDIR%%/templates/components/altcha +@dir %%WWWDIR%%/templates/components/assets @dir %%WWWDIR%%/templates/components/dashboard @dir %%WWWDIR%%/templates/components/debug @dir %%WWWDIR%%/templates/components/dropdown @dir %%WWWDIR%%/templates/components/form @dir %%WWWDIR%%/templates/components/group +@dir %%WWWDIR%%/templates/components/helpdesk_forms +@dir %%WWWDIR%%/templates/components/illustration @dir %%WWWDIR%%/templates/components/itilobject @dir %%WWWDIR%%/templates/components/itilobject/actors @dir %%WWWDIR%%/templates/components/itilobject/fields @dir %%WWWDIR%%/templates/components/itilobject/timeline +@dir %%WWWDIR%%/templates/components/itilobject/timeline/document @dir %%WWWDIR%%/templates/components/kanban @dir %%WWWDIR%%/templates/components/kanban/item_panels +@dir %%WWWDIR%%/templates/components/massive_action +@dir %%WWWDIR%%/templates/components/notepad @dir %%WWWDIR%%/templates/components/search +@dir %%WWWDIR%%/templates/components/search/query_builder +@dir %%WWWDIR%%/templates/components/search/query_builder/sort @dir %%WWWDIR%%/templates/components/supplier @dir %%WWWDIR%%/templates/components/user @dir %%WWWDIR%%/templates/impact @@ -6974,15 +12534,85 @@ @dir %%WWWDIR%%/templates/layout @dir %%WWWDIR%%/templates/layout/parts @dir %%WWWDIR%%/templates/pages +@dir %%WWWDIR%%/templates/pages/2fa @dir %%WWWDIR%%/templates/pages/admin +@dir %%WWWDIR%%/templates/pages/admin/assetdefinition +@dir %%WWWDIR%%/templates/pages/admin/assetdefinition/capacity +@dir %%WWWDIR%%/templates/pages/admin/customobjects +@dir %%WWWDIR%%/templates/pages/admin/entity +@dir %%WWWDIR%%/templates/pages/admin/form +@dir %%WWWDIR%%/templates/pages/admin/form/access_control +@dir %%WWWDIR%%/templates/pages/admin/form/condition_handler_templates +@dir %%WWWDIR%%/templates/pages/admin/form/import +@dir %%WWWDIR%%/templates/pages/admin/form/itil_config_fields +@dir %%WWWDIR%%/templates/pages/admin/form/question_type +@dir %%WWWDIR%%/templates/pages/admin/form/question_type/item +@dir %%WWWDIR%%/templates/pages/admin/form/question_type/item_dropdown @dir %%WWWDIR%%/templates/pages/admin/inventory +@dir %%WWWDIR%%/templates/pages/admin/inventory/conf +@dir %%WWWDIR%%/templates/pages/admin/plugins +@dir %%WWWDIR%%/templates/pages/admin/profile +@dir %%WWWDIR%%/templates/pages/admin/rules +@dir %%WWWDIR%%/templates/pages/admin/user @dir %%WWWDIR%%/templates/pages/assets +@dir %%WWWDIR%%/templates/pages/assets/networkport +@dir %%WWWDIR%%/templates/pages/assistance +@dir %%WWWDIR%%/templates/pages/assistance/planning +@dir %%WWWDIR%%/templates/pages/assistance/stats +@dir %%WWWDIR%%/templates/pages/central +@dir %%WWWDIR%%/templates/pages/helpdesk @dir %%WWWDIR%%/templates/pages/management +@dir %%WWWDIR%%/templates/pages/oauth @dir %%WWWDIR%%/templates/pages/self-service @dir %%WWWDIR%%/templates/pages/setup +@dir %%WWWDIR%%/templates/pages/setup/authentication +@dir %%WWWDIR%%/templates/pages/setup/crontask @dir %%WWWDIR%%/templates/pages/setup/general +@dir %%WWWDIR%%/templates/pages/setup/ldap +@dir %%WWWDIR%%/templates/pages/setup/mailcollector +@dir %%WWWDIR%%/templates/pages/setup/marketplace +@dir %%WWWDIR%%/templates/pages/setup/notification +@dir %%WWWDIR%%/templates/pages/setup/webhook @dir %%WWWDIR%%/templates/pages/tools +@dir %%WWWDIR%%/templates/pages/tools/kb +@dir %%WWWDIR%%/templates/pages/tools/report +@dir %%WWWDIR%%/templates/pages/tools/savedsearch +@dir %%WWWDIR%%/templates/stencil +@dir %%WWWDIR%%/templates/stencil/parts +@dir %%WWWDIR%%/templates/stencil/parts/port @dir %%WWWDIR%%/vendor +@dir %%WWWDIR%%/vendor/altcha-org +@dir %%WWWDIR%%/vendor/altcha-org/altcha +@dir %%WWWDIR%%/vendor/altcha-org/altcha/src +@dir %%WWWDIR%%/vendor/altcha-org/altcha/src/Hasher +@dir %%WWWDIR%%/vendor/altcha-org/altcha/tests +@dir %%WWWDIR%%/vendor/apereo +@dir %%WWWDIR%%/vendor/apereo/phpcas +@dir %%WWWDIR%%/vendor/apereo/phpcas/source +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Languages +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/PGTStorage +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxiedService/Http +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ProxyChain +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Request +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/ServiceBaseUrl +@dir %%WWWDIR%%/vendor/apereo/phpcas/source/CAS/Session +@dir %%WWWDIR%%/vendor/bacon +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Common +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Encoder +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Exception +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Color +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Eye +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Image +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Module/EdgeIterator +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/Path +@dir %%WWWDIR%%/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle +@dir %%WWWDIR%%/vendor/bin @dir %%WWWDIR%%/vendor/brick @dir %%WWWDIR%%/vendor/brick/math @dir %%WWWDIR%%/vendor/brick/math/src @@ -6990,24 +12620,64 @@ @dir %%WWWDIR%%/vendor/brick/math/src/Internal @dir %%WWWDIR%%/vendor/brick/math/src/Internal/Calculator @dir %%WWWDIR%%/vendor/composer -@dir %%WWWDIR%%/vendor/container-interop -@dir %%WWWDIR%%/vendor/container-interop/container-interop -@dir %%WWWDIR%%/vendor/container-interop/container-interop/docs -@dir %%WWWDIR%%/vendor/container-interop/container-interop/docs/images -@dir %%WWWDIR%%/vendor/container-interop/container-interop/src -@dir %%WWWDIR%%/vendor/container-interop/container-interop/src/Interop -@dir %%WWWDIR%%/vendor/container-interop/container-interop/src/Interop/Container -@dir %%WWWDIR%%/vendor/container-interop/container-interop/src/Interop/Container/Exception +@dir %%WWWDIR%%/vendor/composer/pcre +@dir %%WWWDIR%%/vendor/composer/pcre/src +@dir %%WWWDIR%%/vendor/composer/pcre/src/PHPStan +@dir %%WWWDIR%%/vendor/dasprid +@dir %%WWWDIR%%/vendor/dasprid/enum +@dir %%WWWDIR%%/vendor/dasprid/enum/src +@dir %%WWWDIR%%/vendor/dasprid/enum/src/Exception +@dir %%WWWDIR%%/vendor/defuse +@dir %%WWWDIR%%/vendor/defuse/php-encryption +@dir %%WWWDIR%%/vendor/defuse/php-encryption/bin +@dir %%WWWDIR%%/vendor/defuse/php-encryption/dist +@dir %%WWWDIR%%/vendor/defuse/php-encryption/docs +@dir %%WWWDIR%%/vendor/defuse/php-encryption/docs/classes +@dir %%WWWDIR%%/vendor/defuse/php-encryption/src +@dir %%WWWDIR%%/vendor/defuse/php-encryption/src/Exception +@dir %%WWWDIR%%/vendor/dflydev +@dir %%WWWDIR%%/vendor/dflydev/dot-access-data +@dir %%WWWDIR%%/vendor/dflydev/dot-access-data/src +@dir %%WWWDIR%%/vendor/dflydev/dot-access-data/src/Exception +@dir %%WWWDIR%%/vendor/doctrine +@dir %%WWWDIR%%/vendor/doctrine/deprecations +@dir %%WWWDIR%%/vendor/doctrine/deprecations/src +@dir %%WWWDIR%%/vendor/doctrine/deprecations/src/PHPUnit +@dir %%WWWDIR%%/vendor/doctrine/lexer +@dir %%WWWDIR%%/vendor/doctrine/lexer/src @dir %%WWWDIR%%/vendor/donatj @dir %%WWWDIR%%/vendor/donatj/phpuseragentparser +@dir %%WWWDIR%%/vendor/donatj/phpuseragentparser/bin +@dir %%WWWDIR%%/vendor/donatj/phpuseragentparser/examples @dir %%WWWDIR%%/vendor/donatj/phpuseragentparser/src @dir %%WWWDIR%%/vendor/donatj/phpuseragentparser/src/UserAgent +@dir %%WWWDIR%%/vendor/donatj/phpuseragentparser/tests +@dir %%WWWDIR%%/vendor/egulias +@dir %%WWWDIR%%/vendor/egulias/email-validator +@dir %%WWWDIR%%/vendor/egulias/email-validator/src +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Parser +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Parser/CommentStrategy +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Result +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Result/Reason +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Validation +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Validation/Exception +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Validation/Extra +@dir %%WWWDIR%%/vendor/egulias/email-validator/src/Warning @dir %%WWWDIR%%/vendor/elvanto @dir %%WWWDIR%%/vendor/elvanto/litemoji @dir %%WWWDIR%%/vendor/elvanto/litemoji/src @dir %%WWWDIR%%/vendor/firebase @dir %%WWWDIR%%/vendor/firebase/php-jwt @dir %%WWWDIR%%/vendor/firebase/php-jwt/src +@dir %%WWWDIR%%/vendor/gettext +@dir %%WWWDIR%%/vendor/gettext/languages +@dir %%WWWDIR%%/vendor/gettext/languages/bin +@dir %%WWWDIR%%/vendor/gettext/languages/src +@dir %%WWWDIR%%/vendor/gettext/languages/src/Exporter +@dir %%WWWDIR%%/vendor/gettext/languages/src/cldr-data +@dir %%WWWDIR%%/vendor/gettext/languages/src/cldr-data/main +@dir %%WWWDIR%%/vendor/gettext/languages/src/cldr-data/main/en-US +@dir %%WWWDIR%%/vendor/gettext/languages/src/cldr-data/supplemental @dir %%WWWDIR%%/vendor/glpi-project @dir %%WWWDIR%%/vendor/glpi-project/inventory_format @dir %%WWWDIR%%/vendor/glpi-project/inventory_format/bin @@ -7028,15 +12698,13 @@ @dir %%WWWDIR%%/vendor/html2text @dir %%WWWDIR%%/vendor/html2text/html2text @dir %%WWWDIR%%/vendor/html2text/html2text/src -@dir %%WWWDIR%%/vendor/htmlawed -@dir %%WWWDIR%%/vendor/htmlawed/htmlawed -@dir %%WWWDIR%%/vendor/iamcal -@dir %%WWWDIR%%/vendor/iamcal/lib_autolink +@dir %%WWWDIR%%/vendor/html2text/html2text/test @dir %%WWWDIR%%/vendor/laminas @dir %%WWWDIR%%/vendor/laminas/laminas-i18n @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Exception @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Filter +@dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Geography @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator/Loader @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Translator/Plural @@ -7044,6 +12712,7 @@ @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/Validator/PhoneNumber @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View @dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper +@dir %%WWWDIR%%/vendor/laminas/laminas-i18n/src/View/Helper/Container @dir %%WWWDIR%%/vendor/laminas/laminas-loader @dir %%WWWDIR%%/vendor/laminas/laminas-loader/src @dir %%WWWDIR%%/vendor/laminas/laminas-loader/src/Exception @@ -7055,8 +12724,11 @@ @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Header/Exception @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Exception +@dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Pop3 +@dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Pop3/Xoauth2 @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Smtp/Auth +@dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Protocol/Xoauth2 @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage/Exception @dir %%WWWDIR%%/vendor/laminas/laminas-mail/src/Storage/Folder @@ -7085,6 +12757,8 @@ @dir %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/Exception @dir %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/Guard @dir %%WWWDIR%%/vendor/laminas/laminas-stdlib/src/StringWrapper +@dir %%WWWDIR%%/vendor/laminas/laminas-translator +@dir %%WWWDIR%%/vendor/laminas/laminas-translator/src @dir %%WWWDIR%%/vendor/laminas/laminas-validator @dir %%WWWDIR%%/vendor/laminas/laminas-validator/bin @dir %%WWWDIR%%/vendor/laminas/laminas-validator/src @@ -7096,9 +12770,110 @@ @dir %%WWWDIR%%/vendor/laminas/laminas-validator/src/Isbn @dir %%WWWDIR%%/vendor/laminas/laminas-validator/src/Sitemap @dir %%WWWDIR%%/vendor/laminas/laminas-validator/src/Translator +@dir %%WWWDIR%%/vendor/lcobucci +@dir %%WWWDIR%%/vendor/lcobucci/clock +@dir %%WWWDIR%%/vendor/lcobucci/clock/src +@dir %%WWWDIR%%/vendor/lcobucci/jwt +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Encoding +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Signer +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Key +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Token +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Validation +@dir %%WWWDIR%%/vendor/lcobucci/jwt/src/Validation/Constraint @dir %%WWWDIR%%/vendor/league +@dir %%WWWDIR%%/vendor/league/commonmark +@dir %%WWWDIR%%/vendor/league/commonmark/src +@dir %%WWWDIR%%/vendor/league/commonmark/src/Delimiter +@dir %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor +@dir %%WWWDIR%%/vendor/league/commonmark/src/Environment +@dir %%WWWDIR%%/vendor/league/commonmark/src/Event +@dir %%WWWDIR%%/vendor/league/commonmark/src/Exception +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Event +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Parser +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Attributes/Util +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Autolink +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Delimiter +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Delimiter/Processor +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Node/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/CommonMark/Renderer/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DefaultAttributes +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Event +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Parser +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DescriptionList/Renderer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/DisallowedRawHtml +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Embed/Bridge +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/ExternalLink +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Event +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Parser +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Footnote/Renderer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Data +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Exception +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Input +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Listener +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/FrontMatter/Output +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/HeadingPermalink +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/InlinesOnly +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Mention/Generator +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/SmartPunct +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Strikethrough +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/Table +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Extension/TaskList +@dir %%WWWDIR%%/vendor/league/commonmark/src/Input +@dir %%WWWDIR%%/vendor/league/commonmark/src/Node +@dir %%WWWDIR%%/vendor/league/commonmark/src/Node/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Node/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Node/Query +@dir %%WWWDIR%%/vendor/league/commonmark/src/Normalizer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Output +@dir %%WWWDIR%%/vendor/league/commonmark/src/Parser +@dir %%WWWDIR%%/vendor/league/commonmark/src/Parser/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Parser/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Reference +@dir %%WWWDIR%%/vendor/league/commonmark/src/Renderer +@dir %%WWWDIR%%/vendor/league/commonmark/src/Renderer/Block +@dir %%WWWDIR%%/vendor/league/commonmark/src/Renderer/Inline +@dir %%WWWDIR%%/vendor/league/commonmark/src/Util +@dir %%WWWDIR%%/vendor/league/commonmark/src/Xml +@dir %%WWWDIR%%/vendor/league/config +@dir %%WWWDIR%%/vendor/league/config/src +@dir %%WWWDIR%%/vendor/league/config/src/Exception @dir %%WWWDIR%%/vendor/league/csv @dir %%WWWDIR%%/vendor/league/csv/src +@dir %%WWWDIR%%/vendor/league/csv/src/Query +@dir %%WWWDIR%%/vendor/league/csv/src/Query/Constraint +@dir %%WWWDIR%%/vendor/league/csv/src/Query/Ordering +@dir %%WWWDIR%%/vendor/league/csv/src/Serializer +@dir %%WWWDIR%%/vendor/league/event +@dir %%WWWDIR%%/vendor/league/event/src +@dir %%WWWDIR%%/vendor/league/html-to-markdown +@dir %%WWWDIR%%/vendor/league/html-to-markdown/bin +@dir %%WWWDIR%%/vendor/league/html-to-markdown/src +@dir %%WWWDIR%%/vendor/league/html-to-markdown/src/Converter @dir %%WWWDIR%%/vendor/league/oauth2-client @dir %%WWWDIR%%/vendor/league/oauth2-client/src @dir %%WWWDIR%%/vendor/league/oauth2-client/src/Grant @@ -7112,14 +12887,64 @@ @dir %%WWWDIR%%/vendor/league/oauth2-google/src @dir %%WWWDIR%%/vendor/league/oauth2-google/src/Exception @dir %%WWWDIR%%/vendor/league/oauth2-google/src/Provider +@dir %%WWWDIR%%/vendor/league/oauth2-server +@dir %%WWWDIR%%/vendor/league/oauth2-server/src +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationValidators +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Entities +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/EventEmitting +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Exception +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Grant +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Middleware +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/RedirectUriValidators +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/Repositories +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/RequestTypes +@dir %%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes +@dir %%WWWDIR%%/vendor/league/uri +@dir %%WWWDIR%%/vendor/league/uri-interfaces +@dir %%WWWDIR%%/vendor/league/uri-interfaces/Contracts +@dir %%WWWDIR%%/vendor/league/uri-interfaces/Exceptions +@dir %%WWWDIR%%/vendor/league/uri-interfaces/IPv4 +@dir %%WWWDIR%%/vendor/league/uri-interfaces/IPv6 +@dir %%WWWDIR%%/vendor/league/uri-interfaces/Idna +@dir %%WWWDIR%%/vendor/league/uri-interfaces/KeyValuePair +@dir %%WWWDIR%%/vendor/league/uri/UriTemplate +@dir %%WWWDIR%%/vendor/maennchen +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/guides +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/src +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/src/Exception +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zip64 +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/src/Zs +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/test +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zip64 +@dir %%WWWDIR%%/vendor/maennchen/zipstream-php/test/Zs +@dir %%WWWDIR%%/vendor/markbaker +@dir %%WWWDIR%%/vendor/markbaker/complex +@dir %%WWWDIR%%/vendor/markbaker/complex/classes +@dir %%WWWDIR%%/vendor/markbaker/complex/classes/src +@dir %%WWWDIR%%/vendor/markbaker/complex/examples +@dir %%WWWDIR%%/vendor/markbaker/matrix +@dir %%WWWDIR%%/vendor/markbaker/matrix/classes +@dir %%WWWDIR%%/vendor/markbaker/matrix/classes/src +@dir %%WWWDIR%%/vendor/markbaker/matrix/classes/src/Decomposition +@dir %%WWWDIR%%/vendor/markbaker/matrix/classes/src/Operators +@dir %%WWWDIR%%/vendor/markbaker/matrix/examples +@dir %%WWWDIR%%/vendor/masterminds +@dir %%WWWDIR%%/vendor/masterminds/html5 +@dir %%WWWDIR%%/vendor/masterminds/html5/bin +@dir %%WWWDIR%%/vendor/masterminds/html5/src +@dir %%WWWDIR%%/vendor/masterminds/html5/src/HTML5 +@dir %%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Parser +@dir %%WWWDIR%%/vendor/masterminds/html5/src/HTML5/Serializer @dir %%WWWDIR%%/vendor/mexitek @dir %%WWWDIR%%/vendor/mexitek/phpcolors +@dir %%WWWDIR%%/vendor/mexitek/phpcolors/demo @dir %%WWWDIR%%/vendor/mexitek/phpcolors/src @dir %%WWWDIR%%/vendor/mexitek/phpcolors/src/Mexitek @dir %%WWWDIR%%/vendor/mexitek/phpcolors/src/Mexitek/PHPColors -@dir %%WWWDIR%%/vendor/michelf -@dir %%WWWDIR%%/vendor/michelf/php-markdown -@dir %%WWWDIR%%/vendor/michelf/php-markdown/Michelf +@dir %%WWWDIR%%/vendor/mexitek/phpcolors/tests @dir %%WWWDIR%%/vendor/monolog @dir %%WWWDIR%%/vendor/monolog/monolog @dir %%WWWDIR%%/vendor/monolog/monolog/src @@ -7133,6 +12958,15 @@ @dir %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp @dir %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Processor @dir %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Test +@dir %%WWWDIR%%/vendor/nette +@dir %%WWWDIR%%/vendor/nette/schema +@dir %%WWWDIR%%/vendor/nette/schema/src +@dir %%WWWDIR%%/vendor/nette/schema/src/Schema +@dir %%WWWDIR%%/vendor/nette/schema/src/Schema/Elements +@dir %%WWWDIR%%/vendor/nette/utils +@dir %%WWWDIR%%/vendor/nette/utils/src +@dir %%WWWDIR%%/vendor/nette/utils/src/Iterators +@dir %%WWWDIR%%/vendor/nette/utils/src/Utils @dir %%WWWDIR%%/vendor/paragonie @dir %%WWWDIR%%/vendor/paragonie/sodium_compat @dir %%WWWDIR%%/vendor/paragonie/sodium_compat/lib @@ -7152,25 +12986,141 @@ @dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge @dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/Poly1305 @dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core/SecretStream -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32 -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/ChaCha20 -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519 -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/Poly1305 -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/Core32/SecretStream -@dir %%WWWDIR%%/vendor/paragonie/sodium_compat/src/PHP52 +@dir %%WWWDIR%%/vendor/phpdocumentor +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-common +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-common/src +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference +@dir %%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/Exception +@dir %%WWWDIR%%/vendor/phpdocumentor/type-resolver +@dir %%WWWDIR%%/vendor/phpdocumentor/type-resolver/docs +@dir %%WWWDIR%%/vendor/phpdocumentor/type-resolver/src +@dir %%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/PseudoTypes +@dir %%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types @dir %%WWWDIR%%/vendor/phplang @dir %%WWWDIR%%/vendor/phplang/scope-exit @dir %%WWWDIR%%/vendor/phplang/scope-exit/src -@dir %%WWWDIR%%/vendor/phpmailer -@dir %%WWWDIR%%/vendor/phpmailer/phpmailer -@dir %%WWWDIR%%/vendor/phpmailer/phpmailer/language -@dir %%WWWDIR%%/vendor/phpmailer/phpmailer/src +@dir %%WWWDIR%%/vendor/phplang/scope-exit/tests +@dir %%WWWDIR%%/vendor/phpoffice +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Operands +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/CashFlow/Variable +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Securities +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Information +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Internal +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig/Trig +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Averages +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nb +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml/Style +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/ConditionalFormatting/Wizard +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat/Wizard +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Table +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Style +@dir %%WWWDIR%%/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx +@dir %%WWWDIR%%/vendor/phpstan +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/NodeVisitor +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Ast/Type +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Lexer +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Parser +@dir %%WWWDIR%%/vendor/phpstan/phpdoc-parser/src/Printer @dir %%WWWDIR%%/vendor/psr @dir %%WWWDIR%%/vendor/psr/cache @dir %%WWWDIR%%/vendor/psr/cache/src +@dir %%WWWDIR%%/vendor/psr/clock +@dir %%WWWDIR%%/vendor/psr/clock/src @dir %%WWWDIR%%/vendor/psr/container @dir %%WWWDIR%%/vendor/psr/container/src +@dir %%WWWDIR%%/vendor/psr/event-dispatcher +@dir %%WWWDIR%%/vendor/psr/event-dispatcher/src @dir %%WWWDIR%%/vendor/psr/http-client @dir %%WWWDIR%%/vendor/psr/http-client/src @dir %%WWWDIR%%/vendor/psr/http-factory @@ -7178,10 +13128,12 @@ @dir %%WWWDIR%%/vendor/psr/http-message @dir %%WWWDIR%%/vendor/psr/http-message/docs @dir %%WWWDIR%%/vendor/psr/http-message/src +@dir %%WWWDIR%%/vendor/psr/http-server-handler +@dir %%WWWDIR%%/vendor/psr/http-server-handler/src +@dir %%WWWDIR%%/vendor/psr/http-server-middleware +@dir %%WWWDIR%%/vendor/psr/http-server-middleware/src @dir %%WWWDIR%%/vendor/psr/log -@dir %%WWWDIR%%/vendor/psr/log/Psr -@dir %%WWWDIR%%/vendor/psr/log/Psr/Log -@dir %%WWWDIR%%/vendor/psr/log/Psr/Log/Test +@dir %%WWWDIR%%/vendor/psr/log/src @dir %%WWWDIR%%/vendor/psr/simple-cache @dir %%WWWDIR%%/vendor/psr/simple-cache/src @dir %%WWWDIR%%/vendor/ralouphie @@ -7189,7 +13141,6 @@ @dir %%WWWDIR%%/vendor/ralouphie/getallheaders/src @dir %%WWWDIR%%/vendor/ramsey @dir %%WWWDIR%%/vendor/ramsey/collection -@dir %%WWWDIR%%/vendor/ramsey/collection/bin @dir %%WWWDIR%%/vendor/ramsey/collection/src @dir %%WWWDIR%%/vendor/ramsey/collection/src/Exception @dir %%WWWDIR%%/vendor/ramsey/collection/src/Map @@ -7217,11 +13168,20 @@ @dir %%WWWDIR%%/vendor/ramsey/uuid/src/Validator @dir %%WWWDIR%%/vendor/rlanvin @dir %%WWWDIR%%/vendor/rlanvin/php-rrule +@dir %%WWWDIR%%/vendor/rlanvin/php-rrule/bin @dir %%WWWDIR%%/vendor/rlanvin/php-rrule/src @dir %%WWWDIR%%/vendor/rlanvin/php-rrule/src/i18n @dir %%WWWDIR%%/vendor/rlanvin/php-rrule/src/tzdata +@dir %%WWWDIR%%/vendor/robthree +@dir %%WWWDIR%%/vendor/robthree/twofactorauth +@dir %%WWWDIR%%/vendor/robthree/twofactorauth/lib +@dir %%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers +@dir %%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Qr +@dir %%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Rng +@dir %%WWWDIR%%/vendor/robthree/twofactorauth/lib/Providers/Time @dir %%WWWDIR%%/vendor/sabre @dir %%WWWDIR%%/vendor/sabre/dav +@dir %%WWWDIR%%/vendor/sabre/dav/bin @dir %%WWWDIR%%/vendor/sabre/dav/lib @dir %%WWWDIR%%/vendor/sabre/dav/lib/CalDAV @dir %%WWWDIR%%/vendor/sabre/dav/lib/CalDAV/Backend @@ -7275,11 +13235,18 @@ @dir %%WWWDIR%%/vendor/sabre/event/lib/Loop @dir %%WWWDIR%%/vendor/sabre/event/lib/Promise @dir %%WWWDIR%%/vendor/sabre/http +@dir %%WWWDIR%%/vendor/sabre/http/bin +@dir %%WWWDIR%%/vendor/sabre/http/examples @dir %%WWWDIR%%/vendor/sabre/http/lib @dir %%WWWDIR%%/vendor/sabre/http/lib/Auth +@dir %%WWWDIR%%/vendor/sabre/http/tests +@dir %%WWWDIR%%/vendor/sabre/http/tests/HTTP +@dir %%WWWDIR%%/vendor/sabre/http/tests/HTTP/Auth +@dir %%WWWDIR%%/vendor/sabre/http/tests/www @dir %%WWWDIR%%/vendor/sabre/uri @dir %%WWWDIR%%/vendor/sabre/uri/lib @dir %%WWWDIR%%/vendor/sabre/vobject +@dir %%WWWDIR%%/vendor/sabre/vobject/bin @dir %%WWWDIR%%/vendor/sabre/vobject/lib @dir %%WWWDIR%%/vendor/sabre/vobject/lib/Component @dir %%WWWDIR%%/vendor/sabre/vobject/lib/ITip @@ -7296,6 +13263,7 @@ @dir %%WWWDIR%%/vendor/sabre/vobject/resources @dir %%WWWDIR%%/vendor/sabre/vobject/resources/schema @dir %%WWWDIR%%/vendor/sabre/xml +@dir %%WWWDIR%%/vendor/sabre/xml/bin @dir %%WWWDIR%%/vendor/sabre/xml/lib @dir %%WWWDIR%%/vendor/sabre/xml/lib/Deserializer @dir %%WWWDIR%%/vendor/sabre/xml/lib/Element @@ -7303,15 +13271,36 @@ @dir %%WWWDIR%%/vendor/scssphp @dir %%WWWDIR%%/vendor/scssphp/scssphp @dir %%WWWDIR%%/vendor/scssphp/scssphp/src -@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Base -@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Block +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Css +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Expression +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Import +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/Statement +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Sass/SupportsCondition +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Ast/Selector +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Collection @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Compiler +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Evaluation @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Exception -@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Formatter +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Extend +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Function +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Importer @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Logger @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Node +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Parser +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/SassCallable +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Serializer @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/SourceMap/Builder +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/SourceSpan +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/StackTrace @dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Util +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Value +@dir %%WWWDIR%%/vendor/scssphp/scssphp/src/Visitor +@dir %%WWWDIR%%/vendor/scssphp/source-span +@dir %%WWWDIR%%/vendor/scssphp/source-span/src +@dir %%WWWDIR%%/vendor/scssphp/source-span/src/Highlighter @dir %%WWWDIR%%/vendor/sebastian @dir %%WWWDIR%%/vendor/sebastian/diff @dir %%WWWDIR%%/vendor/sebastian/diff/src @@ -7319,12 +13308,13 @@ @dir %%WWWDIR%%/vendor/sebastian/diff/src/Output @dir %%WWWDIR%%/vendor/seld @dir %%WWWDIR%%/vendor/seld/jsonlint +@dir %%WWWDIR%%/vendor/seld/jsonlint/bin @dir %%WWWDIR%%/vendor/seld/jsonlint/src @dir %%WWWDIR%%/vendor/seld/jsonlint/src/Seld @dir %%WWWDIR%%/vendor/seld/jsonlint/src/Seld/JsonLint @dir %%WWWDIR%%/vendor/simplepie @dir %%WWWDIR%%/vendor/simplepie/simplepie -@dir %%WWWDIR%%/vendor/simplepie/simplepie/idn +@dir %%WWWDIR%%/vendor/simplepie/simplepie/LICENSES @dir %%WWWDIR%%/vendor/simplepie/simplepie/library @dir %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie @dir %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/Cache @@ -7337,6 +13327,17 @@ @dir %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/Parse @dir %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/XML @dir %%WWWDIR%%/vendor/simplepie/simplepie/library/SimplePie/XML/Declaration +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/Cache +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/Content +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/Content/Type +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/HTTP +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/Net +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/Parse +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/XML +@dir %%WWWDIR%%/vendor/simplepie/simplepie/src/XML/Declaration +@dir %%WWWDIR%%/vendor/simplepie/simplepie/utils +@dir %%WWWDIR%%/vendor/simplepie/simplepie/utils/PHPStan @dir %%WWWDIR%%/vendor/swaggest @dir %%WWWDIR%%/vendor/swaggest/json-diff @dir %%WWWDIR%%/vendor/swaggest/json-diff/src @@ -7364,6 +13365,20 @@ @dir %%WWWDIR%%/vendor/symfony/cache/Marshaller @dir %%WWWDIR%%/vendor/symfony/cache/Messenger @dir %%WWWDIR%%/vendor/symfony/cache/Traits +@dir %%WWWDIR%%/vendor/symfony/cache/Traits/Relay +@dir %%WWWDIR%%/vendor/symfony/config +@dir %%WWWDIR%%/vendor/symfony/config/Builder +@dir %%WWWDIR%%/vendor/symfony/config/Definition +@dir %%WWWDIR%%/vendor/symfony/config/Definition/Builder +@dir %%WWWDIR%%/vendor/symfony/config/Definition/Configurator +@dir %%WWWDIR%%/vendor/symfony/config/Definition/Dumper +@dir %%WWWDIR%%/vendor/symfony/config/Definition/Exception +@dir %%WWWDIR%%/vendor/symfony/config/Definition/Loader +@dir %%WWWDIR%%/vendor/symfony/config/Exception +@dir %%WWWDIR%%/vendor/symfony/config/Loader +@dir %%WWWDIR%%/vendor/symfony/config/Resource +@dir %%WWWDIR%%/vendor/symfony/config/Util +@dir %%WWWDIR%%/vendor/symfony/config/Util/Exception @dir %%WWWDIR%%/vendor/symfony/console @dir %%WWWDIR%%/vendor/symfony/console/Attribute @dir %%WWWDIR%%/vendor/symfony/console/CI @@ -7371,6 +13386,8 @@ @dir %%WWWDIR%%/vendor/symfony/console/CommandLoader @dir %%WWWDIR%%/vendor/symfony/console/Completion @dir %%WWWDIR%%/vendor/symfony/console/Completion/Output +@dir %%WWWDIR%%/vendor/symfony/console/DataCollector +@dir %%WWWDIR%%/vendor/symfony/console/Debug @dir %%WWWDIR%%/vendor/symfony/console/DependencyInjection @dir %%WWWDIR%%/vendor/symfony/console/Descriptor @dir %%WWWDIR%%/vendor/symfony/console/Event @@ -7380,6 +13397,7 @@ @dir %%WWWDIR%%/vendor/symfony/console/Helper @dir %%WWWDIR%%/vendor/symfony/console/Input @dir %%WWWDIR%%/vendor/symfony/console/Logger +@dir %%WWWDIR%%/vendor/symfony/console/Messenger @dir %%WWWDIR%%/vendor/symfony/console/Output @dir %%WWWDIR%%/vendor/symfony/console/Question @dir %%WWWDIR%%/vendor/symfony/console/Resources @@ -7397,11 +13415,145 @@ @dir %%WWWDIR%%/vendor/symfony/css-selector/Parser/Tokenizer @dir %%WWWDIR%%/vendor/symfony/css-selector/XPath @dir %%WWWDIR%%/vendor/symfony/css-selector/XPath/Extension +@dir %%WWWDIR%%/vendor/symfony/dependency-injection +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Argument +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Attribute +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Compiler +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Config +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Dumper +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Exception +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Extension +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/Instantiator +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/LazyProxy/PhpDumper +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader/Configurator/Traits +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader/schema +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader/schema/dic +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/Loader/schema/dic/services +@dir %%WWWDIR%%/vendor/symfony/dependency-injection/ParameterBag @dir %%WWWDIR%%/vendor/symfony/deprecation-contracts @dir %%WWWDIR%%/vendor/symfony/dom-crawler @dir %%WWWDIR%%/vendor/symfony/dom-crawler/Field @dir %%WWWDIR%%/vendor/symfony/dom-crawler/Test @dir %%WWWDIR%%/vendor/symfony/dom-crawler/Test/Constraint +@dir %%WWWDIR%%/vendor/symfony/error-handler +@dir %%WWWDIR%%/vendor/symfony/error-handler/Error +@dir %%WWWDIR%%/vendor/symfony/error-handler/ErrorEnhancer +@dir %%WWWDIR%%/vendor/symfony/error-handler/ErrorRenderer +@dir %%WWWDIR%%/vendor/symfony/error-handler/Exception +@dir %%WWWDIR%%/vendor/symfony/error-handler/Internal +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/assets +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/css +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/images +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/assets/js +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/bin +@dir %%WWWDIR%%/vendor/symfony/error-handler/Resources/views +@dir %%WWWDIR%%/vendor/symfony/event-dispatcher +@dir %%WWWDIR%%/vendor/symfony/event-dispatcher-contracts +@dir %%WWWDIR%%/vendor/symfony/event-dispatcher/Attribute +@dir %%WWWDIR%%/vendor/symfony/event-dispatcher/Debug +@dir %%WWWDIR%%/vendor/symfony/event-dispatcher/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/filesystem +@dir %%WWWDIR%%/vendor/symfony/filesystem/Exception +@dir %%WWWDIR%%/vendor/symfony/finder +@dir %%WWWDIR%%/vendor/symfony/finder/Comparator +@dir %%WWWDIR%%/vendor/symfony/finder/Exception +@dir %%WWWDIR%%/vendor/symfony/finder/Iterator +@dir %%WWWDIR%%/vendor/symfony/framework-bundle +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/CacheWarmer +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Command +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Console +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Console/Descriptor +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Console/Helper +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Controller +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/DataCollector +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/DependencyInjection/Compiler +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/EventListener +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/HttpCache +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Kernel +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Resources +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Resources/bin +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/routing +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Resources/config/schema +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Routing +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Routing/Attribute +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Secrets +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Test +@dir %%WWWDIR%%/vendor/symfony/framework-bundle/Translation +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Parser +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Reference +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/TextSanitizer +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/AttributeSanitizer +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Model +@dir %%WWWDIR%%/vendor/symfony/html-sanitizer/Visitor/Node +@dir %%WWWDIR%%/vendor/symfony/http-foundation +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Exception +@dir %%WWWDIR%%/vendor/symfony/http-foundation/File +@dir %%WWWDIR%%/vendor/symfony/http-foundation/File/Exception +@dir %%WWWDIR%%/vendor/symfony/http-foundation/RateLimiter +@dir %%WWWDIR%%/vendor/symfony/http-foundation/RequestMatcher +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session/Attribute +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session/Flash +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Handler +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Session/Storage/Proxy +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Test +@dir %%WWWDIR%%/vendor/symfony/http-foundation/Test/Constraint +@dir %%WWWDIR%%/vendor/symfony/http-kernel +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Attribute +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Bundle +@dir %%WWWDIR%%/vendor/symfony/http-kernel/CacheClearer +@dir %%WWWDIR%%/vendor/symfony/http-kernel/CacheWarmer +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Config +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Controller +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Controller/ArgumentResolver +@dir %%WWWDIR%%/vendor/symfony/http-kernel/ControllerMetadata +@dir %%WWWDIR%%/vendor/symfony/http-kernel/DataCollector +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Debug +@dir %%WWWDIR%%/vendor/symfony/http-kernel/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Event +@dir %%WWWDIR%%/vendor/symfony/http-kernel/EventListener +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Exception +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Fragment +@dir %%WWWDIR%%/vendor/symfony/http-kernel/HttpCache +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Log +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Profiler +@dir %%WWWDIR%%/vendor/symfony/http-kernel/Resources +@dir %%WWWDIR%%/vendor/symfony/mailer +@dir %%WWWDIR%%/vendor/symfony/mailer/Command +@dir %%WWWDIR%%/vendor/symfony/mailer/DataCollector +@dir %%WWWDIR%%/vendor/symfony/mailer/Event +@dir %%WWWDIR%%/vendor/symfony/mailer/EventListener +@dir %%WWWDIR%%/vendor/symfony/mailer/Exception +@dir %%WWWDIR%%/vendor/symfony/mailer/Header +@dir %%WWWDIR%%/vendor/symfony/mailer/Messenger +@dir %%WWWDIR%%/vendor/symfony/mailer/Test +@dir %%WWWDIR%%/vendor/symfony/mailer/Test/Constraint +@dir %%WWWDIR%%/vendor/symfony/mailer/Transport +@dir %%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp +@dir %%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Auth +@dir %%WWWDIR%%/vendor/symfony/mailer/Transport/Smtp/Stream +@dir %%WWWDIR%%/vendor/symfony/mime +@dir %%WWWDIR%%/vendor/symfony/mime/Crypto +@dir %%WWWDIR%%/vendor/symfony/mime/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/mime/Encoder +@dir %%WWWDIR%%/vendor/symfony/mime/Exception +@dir %%WWWDIR%%/vendor/symfony/mime/Header +@dir %%WWWDIR%%/vendor/symfony/mime/HtmlToTextConverter +@dir %%WWWDIR%%/vendor/symfony/mime/Part +@dir %%WWWDIR%%/vendor/symfony/mime/Part/Multipart +@dir %%WWWDIR%%/vendor/symfony/mime/Resources +@dir %%WWWDIR%%/vendor/symfony/mime/Resources/bin +@dir %%WWWDIR%%/vendor/symfony/mime/Test +@dir %%WWWDIR%%/vendor/symfony/mime/Test/Constraint @dir %%WWWDIR%%/vendor/symfony/polyfill-ctype @dir %%WWWDIR%%/vendor/symfony/polyfill-iconv @dir %%WWWDIR%%/vendor/symfony/polyfill-iconv/Resources @@ -7409,15 +13561,56 @@ @dir %%WWWDIR%%/vendor/symfony/polyfill-mbstring @dir %%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources @dir %%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata -@dir %%WWWDIR%%/vendor/symfony/polyfill-php80 -@dir %%WWWDIR%%/vendor/symfony/polyfill-php80/Resources -@dir %%WWWDIR%%/vendor/symfony/polyfill-php80/Resources/stubs -@dir %%WWWDIR%%/vendor/symfony/polyfill-php81 -@dir %%WWWDIR%%/vendor/symfony/polyfill-php81/Resources -@dir %%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs -@dir %%WWWDIR%%/vendor/symfony/polyfill-php82 -@dir %%WWWDIR%%/vendor/symfony/polyfill-php82/Resources -@dir %%WWWDIR%%/vendor/symfony/polyfill-php82/Resources/stubs +@dir %%WWWDIR%%/vendor/symfony/polyfill-php83 +@dir %%WWWDIR%%/vendor/symfony/polyfill-php83/Resources +@dir %%WWWDIR%%/vendor/symfony/polyfill-php83/Resources/stubs +@dir %%WWWDIR%%/vendor/symfony/polyfill-php84 +@dir %%WWWDIR%%/vendor/symfony/polyfill-php84/Resources +@dir %%WWWDIR%%/vendor/symfony/polyfill-php84/Resources/stubs +@dir %%WWWDIR%%/vendor/symfony/property-access +@dir %%WWWDIR%%/vendor/symfony/property-access/Exception +@dir %%WWWDIR%%/vendor/symfony/property-info +@dir %%WWWDIR%%/vendor/symfony/property-info/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/property-info/Extractor +@dir %%WWWDIR%%/vendor/symfony/property-info/PhpStan +@dir %%WWWDIR%%/vendor/symfony/property-info/Util +@dir %%WWWDIR%%/vendor/symfony/routing +@dir %%WWWDIR%%/vendor/symfony/routing/Annotation +@dir %%WWWDIR%%/vendor/symfony/routing/Attribute +@dir %%WWWDIR%%/vendor/symfony/routing/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/routing/Exception +@dir %%WWWDIR%%/vendor/symfony/routing/Generator +@dir %%WWWDIR%%/vendor/symfony/routing/Generator/Dumper +@dir %%WWWDIR%%/vendor/symfony/routing/Loader +@dir %%WWWDIR%%/vendor/symfony/routing/Loader/Configurator +@dir %%WWWDIR%%/vendor/symfony/routing/Loader/Configurator/Traits +@dir %%WWWDIR%%/vendor/symfony/routing/Loader/schema +@dir %%WWWDIR%%/vendor/symfony/routing/Loader/schema/routing +@dir %%WWWDIR%%/vendor/symfony/routing/Matcher +@dir %%WWWDIR%%/vendor/symfony/routing/Matcher/Dumper +@dir %%WWWDIR%%/vendor/symfony/routing/Requirement +@dir %%WWWDIR%%/vendor/symfony/serializer +@dir %%WWWDIR%%/vendor/symfony/serializer/Annotation +@dir %%WWWDIR%%/vendor/symfony/serializer/Attribute +@dir %%WWWDIR%%/vendor/symfony/serializer/CacheWarmer +@dir %%WWWDIR%%/vendor/symfony/serializer/Command +@dir %%WWWDIR%%/vendor/symfony/serializer/Context +@dir %%WWWDIR%%/vendor/symfony/serializer/Context/Encoder +@dir %%WWWDIR%%/vendor/symfony/serializer/Context/Normalizer +@dir %%WWWDIR%%/vendor/symfony/serializer/DataCollector +@dir %%WWWDIR%%/vendor/symfony/serializer/Debug +@dir %%WWWDIR%%/vendor/symfony/serializer/DependencyInjection +@dir %%WWWDIR%%/vendor/symfony/serializer/Encoder +@dir %%WWWDIR%%/vendor/symfony/serializer/Exception +@dir %%WWWDIR%%/vendor/symfony/serializer/Extractor +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping/Factory +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/schema +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/schema/dic +@dir %%WWWDIR%%/vendor/symfony/serializer/Mapping/Loader/schema/dic/serializer-mapping +@dir %%WWWDIR%%/vendor/symfony/serializer/NameConverter +@dir %%WWWDIR%%/vendor/symfony/serializer/Normalizer @dir %%WWWDIR%%/vendor/symfony/service-contracts @dir %%WWWDIR%%/vendor/symfony/service-contracts/Attribute @dir %%WWWDIR%%/vendor/symfony/service-contracts/Test @@ -7430,10 +13623,55 @@ @dir %%WWWDIR%%/vendor/symfony/string/Slugger @dir %%WWWDIR%%/vendor/symfony/translation-contracts @dir %%WWWDIR%%/vendor/symfony/translation-contracts/Test +@dir %%WWWDIR%%/vendor/symfony/var-dumper +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Caster +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Cloner +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Command +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Dumper +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Exception +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Resources +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Resources/bin +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Resources/css +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Resources/functions +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Resources/js +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Server +@dir %%WWWDIR%%/vendor/symfony/var-dumper/Test @dir %%WWWDIR%%/vendor/symfony/var-exporter @dir %%WWWDIR%%/vendor/symfony/var-exporter/Exception @dir %%WWWDIR%%/vendor/symfony/var-exporter/Internal @dir %%WWWDIR%%/vendor/tecnickcom +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/example +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/debian/source +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/phpmd +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/resources/rpm +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Linear/CodeOneTwoEight +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Aztec +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/Datamatrix +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/PdfFourOneSeven +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/src/Type/Square/QrCode +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Linear/CodeOneTwoEight +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-barcode/test/Square +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/example +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/debian/source +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/resources/rpm +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/src/Model +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test +@dir %%WWWDIR%%/vendor/tecnickcom/tc-lib-color/test/Model @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/config @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/fonts @@ -7444,6 +13682,18 @@ @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/fonts/freefont-20120503 @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/include @dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/include/barcodes +@dir %%WWWDIR%%/vendor/tecnickcom/tcpdf/tools +@dir %%WWWDIR%%/vendor/thecodingmachine +@dir %%WWWDIR%%/vendor/thecodingmachine/safe +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.1 +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.2 +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.3 +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.4 +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/8.5 +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/generated/Exceptions +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/lib +@dir %%WWWDIR%%/vendor/thecodingmachine/safe/lib/Exceptions @dir %%WWWDIR%%/vendor/thenetworg @dir %%WWWDIR%%/vendor/thenetworg/oauth2-azure @dir %%WWWDIR%%/vendor/thenetworg/oauth2-azure/src @@ -7455,25 +13705,29 @@ @dir %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Helper @dir %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Provider @dir %%WWWDIR%%/vendor/thenetworg/oauth2-azure/tests/Token -@dir %%WWWDIR%%/vendor/true -@dir %%WWWDIR%%/vendor/true/punycode -@dir %%WWWDIR%%/vendor/true/punycode/src -@dir %%WWWDIR%%/vendor/true/punycode/src/Exception @dir %%WWWDIR%%/vendor/twig +@dir %%WWWDIR%%/vendor/twig/markdown-extra +@dir %%WWWDIR%%/vendor/twig/markdown-extra/Resources @dir %%WWWDIR%%/vendor/twig/string-extra @dir %%WWWDIR%%/vendor/twig/twig @dir %%WWWDIR%%/vendor/twig/twig/src @dir %%WWWDIR%%/vendor/twig/twig/src/Attribute @dir %%WWWDIR%%/vendor/twig/twig/src/Cache @dir %%WWWDIR%%/vendor/twig/twig/src/Error +@dir %%WWWDIR%%/vendor/twig/twig/src/ExpressionParser +@dir %%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Infix +@dir %%WWWDIR%%/vendor/twig/twig/src/ExpressionParser/Prefix @dir %%WWWDIR%%/vendor/twig/twig/src/Extension @dir %%WWWDIR%%/vendor/twig/twig/src/Loader @dir %%WWWDIR%%/vendor/twig/twig/src/Node @dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression @dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Binary @dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Filter +@dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/FunctionNode +@dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Ternary @dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Test @dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Unary +@dir %%WWWDIR%%/vendor/twig/twig/src/Node/Expression/Variable @dir %%WWWDIR%%/vendor/twig/twig/src/NodeVisitor @dir %%WWWDIR%%/vendor/twig/twig/src/Profiler @dir %%WWWDIR%%/vendor/twig/twig/src/Profiler/Dumper @@ -7488,6 +13742,7 @@ @dir %%WWWDIR%%/vendor/twig/twig/src/Util @dir %%WWWDIR%%/vendor/wapmorgan @dir %%WWWDIR%%/vendor/wapmorgan/unified-archive +@dir %%WWWDIR%%/vendor/wapmorgan/unified-archive/bin @dir %%WWWDIR%%/vendor/wapmorgan/unified-archive/docs @dir %%WWWDIR%%/vendor/wapmorgan/unified-archive/src @dir %%WWWDIR%%/vendor/wapmorgan/unified-archive/src/Commands @@ -7498,6 +13753,25 @@ @dir %%WWWDIR%%/vendor/webmozart @dir %%WWWDIR%%/vendor/webmozart/assert @dir %%WWWDIR%%/vendor/webmozart/assert/src +@dir %%WWWDIR%%/vendor/webonyx +@dir %%WWWDIR%%/vendor/webonyx/graphql-php +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/docs +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/docs/type-definitions +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Error +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Executor/Promise/Adapter +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Language +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Language/AST +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Server +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Server/Exception +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Type +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Definition +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Type/Validation +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Utils +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator +@dir %%WWWDIR%%/vendor/webonyx/graphql-php/src/Validator/Rules @dir %%WWWDIR%%/version @owner @group diff --git a/www/moodle44/Makefile b/www/moodle44/Makefile index 803204ba13b8..850a37ca3a7e 100644 --- a/www/moodle44/Makefile +++ b/www/moodle44/Makefile @@ -1,5 +1,5 @@ PORTNAME= moodle -PORTVERSION= 4.4.10 +PORTVERSION= 4.4.11 CATEGORIES= www education MASTER_SITES= https://packaging.moodle.org/stable404/ \ LOCAL/wen @@ -11,7 +11,7 @@ WWW= https://www.moodle.org/ LICENSE= GPLv3 -CONFLICTS= moodle45-4.5.[0-9]* moodle50-5.0-[0-9]* +CONFLICTS= moodle45-4.5.[0-9]* moodle50-5.0-[0-9]* moodle51-5.1 USES= cpe php:flavors tar:tgz USE_PHP= ctype curl dom exif fileinfo filter gd \ diff --git a/www/moodle44/distinfo b/www/moodle44/distinfo index d7372cfe2a90..e4ae3a32d8bf 100644 --- a/www/moodle44/distinfo +++ b/www/moodle44/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754949931 -SHA256 (moodle-4.4.10.tgz) = 2ccf9f2b204f867687e38c31e6631ff5ae4810762b4bc86d6d6edad6566c0e99 -SIZE (moodle-4.4.10.tgz) = 72712584 +TIMESTAMP = 1759836213 +SHA256 (moodle-4.4.11.tgz) = 2ce3f961dd5720fbdac1ce2132e1b5ad70c72f74fbcd22cfdb77e4306d547c45 +SIZE (moodle-4.4.11.tgz) = 72703324 diff --git a/www/moodle45/Makefile b/www/moodle45/Makefile index 95e8eb7afe09..b40cf3346459 100644 --- a/www/moodle45/Makefile +++ b/www/moodle45/Makefile @@ -1,5 +1,5 @@ PORTNAME= moodle -PORTVERSION= 4.5.6 +PORTVERSION= 4.5.7 # 4.5 is LTS version CATEGORIES= www education MASTER_SITES= https://packaging.moodle.org/stable405/ \ LOCAL/wen @@ -11,7 +11,7 @@ WWW= https://www.moodle.org/ LICENSE= GPLv3 -CONFLICTS= moodle44-4.4.[0-9]* moodle50-5.0.[0-9]* +CONFLICTS= moodle44-4.4.[0-9]* moodle50-5.0.[0-9]* moodle51-5.1 USES= cpe php:flavors tar:tgz USE_PHP= ctype curl dom exif fileinfo filter gd \ diff --git a/www/moodle45/distinfo b/www/moodle45/distinfo index 5931a0438884..8bbbbd07e56b 100644 --- a/www/moodle45/distinfo +++ b/www/moodle45/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754923475 -SHA256 (moodle-4.5.6.tgz) = fad27ecef39b4a6980995e3ba46fae8c69478bf7223cf5bbf3ab942b6a68802a -SIZE (moodle-4.5.6.tgz) = 74430958 +TIMESTAMP = 1759835865 +SHA256 (moodle-4.5.7.tgz) = 0e4b1bec0f4f2641257dec07ba10dd23d47e66857e7fb22cd12ce418ae61d972 +SIZE (moodle-4.5.7.tgz) = 74457388 diff --git a/www/moodle50/Makefile b/www/moodle50/Makefile index 19deb11a6d97..67d95231a68c 100644 --- a/www/moodle50/Makefile +++ b/www/moodle50/Makefile @@ -1,5 +1,5 @@ PORTNAME= moodle -PORTVERSION= 5.0.2 +PORTVERSION= 5.0.3 CATEGORIES= www education MASTER_SITES= https://packaging.moodle.org/stable500/ \ LOCAL/wen @@ -11,7 +11,7 @@ WWW= https://www.moodle.org/ LICENSE= GPLv3 -CONFLICTS= moodle44-4.4.[0-9]* moodle45-4.5.[0-9]* +CONFLICTS= moodle44-4.4.[0-9]* moodle45-4.5.[0-9]* moodle51-5.1 USES= cpe php:flavors tar:tgz USE_PHP= ctype curl dom exif fileinfo filter gd \ diff --git a/www/moodle50/distinfo b/www/moodle50/distinfo index d288bf241e6b..c76f07943d8f 100644 --- a/www/moodle50/distinfo +++ b/www/moodle50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754922654 -SHA256 (moodle-5.0.2.tgz) = a7d917ad49ec14d1c9de4e44c1260efe25cd94dd406a7386967d534121620942 -SIZE (moodle-5.0.2.tgz) = 74229689 +TIMESTAMP = 1759835318 +SHA256 (moodle-5.0.3.tgz) = 4a0e48fbf9ef5dd8aac809f62a2e339c519d9796a2a6c3023a293677fd50cc93 +SIZE (moodle-5.0.3.tgz) = 74260507 diff --git a/www/moodle51/Makefile b/www/moodle51/Makefile new file mode 100644 index 000000000000..2291867bde94 --- /dev/null +++ b/www/moodle51/Makefile @@ -0,0 +1,60 @@ +PORTNAME= moodle +PORTVERSION= 5.1 +CATEGORIES= www education +MASTER_SITES= https://packaging.moodle.org/stable501/ \ + LOCAL/wen +PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//}${PHP_PKGNAMESUFFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Course management system based on social constructionism +WWW= https://www.moodle.org/ + +LICENSE= GPLv3 + +CONFLICTS= moodle44-4.4.[0-9]* moodle45-4.5.[0-9]* moodle50-5.0.[0-9]* + +USES= cpe php:flavors tar:tgz +USE_PHP= ctype curl dom exif fileinfo filter gd \ + iconv intl mbstring opcache \ + session simplexml soap sodium tokenizer \ + xml xmlreader xmlrpc zip zlib + +WRKSRC= ${WRKDIR}/moodle + +OPTIONS_SINGLE= BACKEND +OPTIONS_SINGLE_BACKEND= MYSQL PGSQL +OPTIONS_DEFINE= LDAP +OPTIONS_DEFAULT= MYSQL + +MYSQL_USE= php=mysqli +PGSQL_USE= php=pgsql +LDAP_USE= php=ldap + +NO_BUILD= yes +PLIST= ${WRKDIR}/plist +SUB_FILES= pkg-message +SUB_LIST= MOODLEDIR=${MOODLEDIR} \ + MOODLEDATADIR=${MOODLEDATADIR} + +MOODLEDIR?= www/moodle +MOODLEDATADIR?= moodledata + +pre-install: + @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} + @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} + @${ECHO_CMD} "@mode 755" >> ${PLIST} + @${ECHO} @dir ${MOODLEDATADIR} >> ${PLIST} + @${ECHO_CMD} "@mode" >> ${PLIST} + @${ECHO_CMD} "@group" >> ${PLIST} + @${ECHO_CMD} "@owner" >> ${PLIST} + +# Here for safety I do not set moodle diretory 0755 permission +# It require user write config.php manually then. + @${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${MOODLEDIR}?g" >>${PLIST} + @${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dir ${MOODLEDIR}?g" >> ${PLIST} + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${MOODLEDIR} + @${INSTALL} -d ${STAGEDIR}${PREFIX}/${MOODLEDATADIR} + +.include <bsd.port.mk> diff --git a/www/moodle51/distinfo b/www/moodle51/distinfo new file mode 100644 index 000000000000..2c37d4ef80ff --- /dev/null +++ b/www/moodle51/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759802436 +SHA256 (moodle-5.1.tgz) = 7b9807f4300127aaa6c270d785ec5661b6dfe181e505bd28c118180dfd67938a +SIZE (moodle-5.1.tgz) = 74525670 diff --git a/www/moodle51/files/pkg-message.in b/www/moodle51/files/pkg-message.in new file mode 100644 index 000000000000..71b2b1bc63e2 --- /dev/null +++ b/www/moodle51/files/pkg-message.in @@ -0,0 +1,59 @@ +[ +{ type: install + message: <<EOM +1) Create a user and a database for Moodle to store all + its tables in (or choose an existing database). + It doesn't matter what the database or user names are, + as this will be configured in a later step. + NOTE: this package assumes that either the phpX-pgsql, + phpX-mysql, or phpX-mssql packages are installed. + +2) Add the following to your Apache configuration file + httpd.conf, and restart the server: + + Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/public/ + AcceptPathInfo On + <Directory %%PREFIX%%/%%MOODLEDIR%%/public/> + AllowOverride None + Require all granted + </Directory> + +3) Visit your Moodle site with a browser (i.e., + http://your.server.com/moodle/), and you should + be taken to the install.php script, which will lead + you through creating a config.php file and then + setting up Moodle, creating an admin account, etc. + + At one step, you will get a message saying that the + installer script was not able to automatically create + the config.php file. Just download it and copy it to + %%PREFIX%%/%%MOODLEDIR%%/config.php. Beware that it + will contain the database password in cleartext, so + set up whatever file permissions you deem more adequate. + For instance, user=root, group=www, mask=640. + +4) Set up a cron task to invoke the file admin/cron.php + every five minutes or so. For instance: + */5 * * * * fetch http://your.server.com/moodle/admin/cron.php + +For more information, see the INSTALL DOCUMENTATION: + + http://docs.moodle.org/en/Installing_Moodle + +It may be worth reading the installation docs even if Moodle seems +to be working at first, to ensure your PHP settings and database +configuration will allow Moodle to operate properly. +EOM +} +{ type: upgrade + message: <<EOM +If you are upgrading from an earlier version of Moodle, check out +possible additional steps at: + + https://docs.moodle.org/400/en/Upgrading + +If you have real trouble, please visit the Moodle course +"Using Moodle" on moodle.org. +EOM +} +] diff --git a/www/moodle51/pkg-descr b/www/moodle51/pkg-descr new file mode 100644 index 000000000000..8d24b9357db9 --- /dev/null +++ b/www/moodle51/pkg-descr @@ -0,0 +1,5 @@ +Moodle is a course management system (CMS) - a free, Open Source software +package designed using sound pedagogical principles, to help educators +create effective online learning communities. You can use it on any +computer you have handy (including webhosts), yet it can scale from a +single-teacher site to a 40,000-student University. diff --git a/www/py-crossplane/Makefile b/www/py-crossplane/Makefile index a77c38f4dfd7..905f417f3cfa 100644 --- a/www/py-crossplane/Makefile +++ b/www/py-crossplane/Makefile @@ -5,7 +5,7 @@ DISTVERSIONPREFIX= v CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= osa@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= NGINX configurations converter into JSON and back WWW= https://github.com/nginxinc/crossplane diff --git a/www/unit/Makefile b/www/unit/Makefile index 4544f45f4acd..123f9d84d11f 100644 --- a/www/unit/Makefile +++ b/www/unit/Makefile @@ -4,7 +4,7 @@ CATEGORIES= www MASTER_SITES?= https://unit.nginx.org/download/ DISTFILES?= ${PORTNAME}-${PORTVERSION}.tar.gz -MAINTAINER= osa@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= Dynamic web application server WWW= https://unit.nginx.org diff --git a/www/webtrees22/Makefile b/www/webtrees22/Makefile index f2fae14cd8a1..7a18bae595af 100644 --- a/www/webtrees22/Makefile +++ b/www/webtrees22/Makefile @@ -1,5 +1,5 @@ PORTNAME= webtrees -DISTVERSION= 2.2.1 +DISTVERSION= 2.2.4 CATEGORIES= www MASTER_SITES= https://github.com/fisharebest/${PORTNAME}/releases/download/${PORTVERSION}/ PKGNAMESUFFIX= 22${PHP_PKGNAMESUFFIX} @@ -32,7 +32,8 @@ OPTIONS_DEFINE= DOCS do-install: -${MKDIR} ${STAGEDIR}${WWWDIR} - @cd ${WRKSRC}/${PORTNAME} && ${COPYTREE_BIN} . ${STAGEDIR}${WWWDIR} "! -name *\.md" + @cd ${WRKSRC}/${PORTNAME} && ${COPYTREE_BIN} . ${STAGEDIR}${WWWDIR} "! -name *\.md" \ + "! -name .DS_Store" @(cd ${WRKSRC}/${PORTNAME}; ${FIND} . -not -type d) | ${SORT} | \ ${SED} -ne 's,^${PORTNAME}/,${WWWDIR_REL}/,p' >> ${TMPPLIST} @${ECHO_CMD} \ diff --git a/www/webtrees22/distinfo b/www/webtrees22/distinfo index fe5b5373fddd..65b56e844f48 100644 --- a/www/webtrees22/distinfo +++ b/www/webtrees22/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1733337659 -SHA256 (webtrees-2.2.1.zip) = f500d7e839441a71cae10d8c81bb7f6c4753e3885b40f3d954f575971e27ef42 -SIZE (webtrees-2.2.1.zip) = 34116725 +TIMESTAMP = 1755802453 +SHA256 (webtrees-2.2.4.zip) = dd42701d1c6b751cae426ed318c80c30710aeca4fb3c7157bbb75bdbe0a4db45 +SIZE (webtrees-2.2.4.zip) = 32114773 diff --git a/www/webtrees22/pkg-plist b/www/webtrees22/pkg-plist index 2b3add5d515c..d82dd6f68e9d 100644 --- a/www/webtrees22/pkg-plist +++ b/www/webtrees22/pkg-plist @@ -198,12 +198,21 @@ %%WWWDIR%%/app/Census/RegisterOfEngland1939.php %%WWWDIR%%/app/Census/RegisterOfScotland1939.php %%WWWDIR%%/app/Census/RegisterOfWales1939.php +%%WWWDIR%%/app/Cli/Commands/AbstractCommand.php %%WWWDIR%%/app/Cli/Commands/CompilePoFiles.php +%%WWWDIR%%/app/Cli/Commands/ConfigIni.php +%%WWWDIR%%/app/Cli/Commands/SiteOffline.php +%%WWWDIR%%/app/Cli/Commands/SiteOnline.php +%%WWWDIR%%/app/Cli/Commands/SiteSetting.php %%WWWDIR%%/app/Cli/Commands/TreeCreate.php %%WWWDIR%%/app/Cli/Commands/TreeExport.php +%%WWWDIR%%/app/Cli/Commands/TreeImport.php %%WWWDIR%%/app/Cli/Commands/TreeList.php +%%WWWDIR%%/app/Cli/Commands/TreeSetting.php %%WWWDIR%%/app/Cli/Commands/UserCreate.php %%WWWDIR%%/app/Cli/Commands/UserList.php +%%WWWDIR%%/app/Cli/Commands/UserSetting.php +%%WWWDIR%%/app/Cli/Commands/UserTreeSetting.php %%WWWDIR%%/app/Cli/Console.php %%WWWDIR%%/app/ColorGenerator.php %%WWWDIR%%/app/CommonMark/CensusTableContinueParser.php @@ -552,6 +561,7 @@ %%WWWDIR%%/app/Header.php %%WWWDIR%%/app/Helpers/functions.php %%WWWDIR%%/app/Html.php +%%WWWDIR%%/app/Http/Dispatcher.php %%WWWDIR%%/app/Http/Exceptions/HttpAccessDeniedException.php %%WWWDIR%%/app/Http/Exceptions/HttpBadRequestException.php %%WWWDIR%%/app/Http/Exceptions/HttpException.php @@ -566,6 +576,7 @@ %%WWWDIR%%/app/Http/Middleware/AuthManager.php %%WWWDIR%%/app/Http/Middleware/AuthMember.php %%WWWDIR%%/app/Http/Middleware/AuthModerator.php +%%WWWDIR%%/app/Http/Middleware/AuthNotRobot.php %%WWWDIR%%/app/Http/Middleware/BadBotBlocker.php %%WWWDIR%%/app/Http/Middleware/BaseUrl.php %%WWWDIR%%/app/Http/Middleware/BootModules.php @@ -580,7 +591,6 @@ %%WWWDIR%%/app/Http/Middleware/ErrorHandler.php %%WWWDIR%%/app/Http/Middleware/HandleExceptions.php %%WWWDIR%%/app/Http/Middleware/LoadRoutes.php -%%WWWDIR%%/app/Http/Middleware/NoRouteFound.php %%WWWDIR%%/app/Http/Middleware/PublicFiles.php %%WWWDIR%%/app/Http/Middleware/ReadConfigIni.php %%WWWDIR%%/app/Http/Middleware/RegisterGedcomTags.php @@ -780,6 +790,7 @@ %%WWWDIR%%/app/Http/RequestHandlers/ModulesThemesAction.php %%WWWDIR%%/app/Http/RequestHandlers/ModulesThemesPage.php %%WWWDIR%%/app/Http/RequestHandlers/NotePage.php +%%WWWDIR%%/app/Http/RequestHandlers/NotFound.php %%WWWDIR%%/app/Http/RequestHandlers/PasswordRequestAction.php %%WWWDIR%%/app/Http/RequestHandlers/PasswordRequestPage.php %%WWWDIR%%/app/Http/RequestHandlers/PasswordResetAction.php @@ -999,7 +1010,7 @@ %%WWWDIR%%/app/Module/GeonamesAutocomplete.php %%WWWDIR%%/app/Module/GoogleAnalyticsModule.php %%WWWDIR%%/app/Module/GoogleMaps.php -%%WWWDIR%%/app/Module/GoogleWebmasterToolsModule.php +%%WWWDIR%%/app/Module/GoogleSearchConsole.php %%WWWDIR%%/app/Module/HereMaps.php %%WWWDIR%%/app/Module/HitCountFooterModule.php %%WWWDIR%%/app/Module/HourglassChartModule.php @@ -1014,6 +1025,7 @@ %%WWWDIR%%/app/Module/LanguageAfrikaans.php %%WWWDIR%%/app/Module/LanguageAlbanian.php %%WWWDIR%%/app/Module/LanguageArabic.php +%%WWWDIR%%/app/Module/LanguageArmenian.php %%WWWDIR%%/app/Module/LanguageBasque.php %%WWWDIR%%/app/Module/LanguageBosnian.php %%WWWDIR%%/app/Module/LanguageBulgarian.php @@ -1300,12 +1312,15 @@ %%WWWDIR%%/app/Services/IndividualFactsService.php %%WWWDIR%%/app/Services/LeafletJsService.php %%WWWDIR%%/app/Services/LinkedRecordService.php +%%WWWDIR%%/app/Services/MaintenanceModeService.php %%WWWDIR%%/app/Services/MapDataService.php %%WWWDIR%%/app/Services/MediaFileService.php %%WWWDIR%%/app/Services/MessageService.php %%WWWDIR%%/app/Services/MigrationService.php %%WWWDIR%%/app/Services/ModuleService.php +%%WWWDIR%%/app/Services/NetworkService.php %%WWWDIR%%/app/Services/PendingChangesService.php +%%WWWDIR%%/app/Services/PhpService.php %%WWWDIR%%/app/Services/RateLimitService.php %%WWWDIR%%/app/Services/RelationshipService.php %%WWWDIR%%/app/Services/RomanNumeralsService.php @@ -1323,58 +1338,10 @@ %%WWWDIR%%/app/SiteUser.php %%WWWDIR%%/app/Soundex.php %%WWWDIR%%/app/Source.php -%%WWWDIR%%/app/Statistics/Google/ChartAge.php -%%WWWDIR%%/app/Statistics/Google/ChartBirth.php -%%WWWDIR%%/app/Statistics/Google/ChartChildren.php -%%WWWDIR%%/app/Statistics/Google/ChartCommonGiven.php -%%WWWDIR%%/app/Statistics/Google/ChartCommonSurname.php -%%WWWDIR%%/app/Statistics/Google/ChartDeath.php -%%WWWDIR%%/app/Statistics/Google/ChartDistribution.php -%%WWWDIR%%/app/Statistics/Google/ChartDivorce.php -%%WWWDIR%%/app/Statistics/Google/ChartFamilyLargest.php -%%WWWDIR%%/app/Statistics/Google/ChartFamilyWithSources.php -%%WWWDIR%%/app/Statistics/Google/ChartIndividualWithSources.php -%%WWWDIR%%/app/Statistics/Google/ChartMarriage.php -%%WWWDIR%%/app/Statistics/Google/ChartMarriageAge.php -%%WWWDIR%%/app/Statistics/Google/ChartMedia.php -%%WWWDIR%%/app/Statistics/Google/ChartMortality.php -%%WWWDIR%%/app/Statistics/Google/ChartNoChildrenFamilies.php -%%WWWDIR%%/app/Statistics/Google/ChartSex.php -%%WWWDIR%%/app/Statistics/Repository/BrowserRepository.php -%%WWWDIR%%/app/Statistics/Repository/ContactRepository.php -%%WWWDIR%%/app/Statistics/Repository/EventRepository.php -%%WWWDIR%%/app/Statistics/Repository/FamilyDatesRepository.php -%%WWWDIR%%/app/Statistics/Repository/FamilyRepository.php -%%WWWDIR%%/app/Statistics/Repository/FavoritesRepository.php -%%WWWDIR%%/app/Statistics/Repository/GedcomRepository.php -%%WWWDIR%%/app/Statistics/Repository/HitCountRepository.php -%%WWWDIR%%/app/Statistics/Repository/IndividualRepository.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/BrowserRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/ContactRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/EventRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/FamilyDatesRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/FavoritesRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/GedcomRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/HitCountRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/IndividualRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/LatestUserRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/MediaRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/MessageRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/NewsRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/PlaceRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/ServerRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/Interfaces/UserRepositoryInterface.php -%%WWWDIR%%/app/Statistics/Repository/LatestUserRepository.php -%%WWWDIR%%/app/Statistics/Repository/MediaRepository.php -%%WWWDIR%%/app/Statistics/Repository/MessageRepository.php -%%WWWDIR%%/app/Statistics/Repository/NewsRepository.php -%%WWWDIR%%/app/Statistics/Repository/PlaceRepository.php -%%WWWDIR%%/app/Statistics/Repository/ServerRepository.php -%%WWWDIR%%/app/Statistics/Repository/UserRepository.php -%%WWWDIR%%/app/Statistics/Service/CenturyService.php -%%WWWDIR%%/app/Statistics/Service/ColorService.php %%WWWDIR%%/app/Statistics/Service/CountryService.php %%WWWDIR%%/app/Statistics.php +%%WWWDIR%%/app/StatisticsData.php +%%WWWDIR%%/app/StatisticsFormat.php %%WWWDIR%%/app/Submission.php %%WWWDIR%%/app/Submitter.php %%WWWDIR%%/app/SurnameTradition/DefaultSurnameTradition.php @@ -1824,6 +1791,7 @@ %%WWWDIR%%/resources/lang/hi/messages.php %%WWWDIR%%/resources/lang/hr/messages.php %%WWWDIR%%/resources/lang/hu/messages.php +%%WWWDIR%%/resources/lang/hy/messages.php %%WWWDIR%%/resources/lang/id/messages.php %%WWWDIR%%/resources/lang/is/messages.php %%WWWDIR%%/resources/lang/it/messages.php @@ -2043,6 +2011,7 @@ %%WWWDIR%%/resources/views/help/romanized.phtml %%WWWDIR%%/resources/views/help/source-events.phtml %%WWWDIR%%/resources/views/help/surname.phtml +%%WWWDIR%%/resources/views/icons/account.phtml %%WWWDIR%%/resources/views/icons/add.phtml %%WWWDIR%%/resources/views/icons/analytics.phtml %%WWWDIR%%/resources/views/icons/anniversary.phtml @@ -2524,6 +2493,7 @@ %%WWWDIR%%/vendor/bin/vobject %%WWWDIR%%/vendor/brick/math/composer.json %%WWWDIR%%/vendor/brick/math/LICENSE +%%WWWDIR%%/vendor/brick/math/psalm-baseline.xml %%WWWDIR%%/vendor/brick/math/src/BigDecimal.php %%WWWDIR%%/vendor/brick/math/src/BigInteger.php %%WWWDIR%%/vendor/brick/math/src/BigNumber.php @@ -4939,12 +4909,14 @@ %%WWWDIR%%/vendor/illuminate/collections/Collection.php %%WWWDIR%%/vendor/illuminate/collections/composer.json %%WWWDIR%%/vendor/illuminate/collections/Enumerable.php +%%WWWDIR%%/vendor/illuminate/collections/functions.php %%WWWDIR%%/vendor/illuminate/collections/helpers.php %%WWWDIR%%/vendor/illuminate/collections/HigherOrderCollectionProxy.php %%WWWDIR%%/vendor/illuminate/collections/ItemNotFoundException.php %%WWWDIR%%/vendor/illuminate/collections/LazyCollection.php %%WWWDIR%%/vendor/illuminate/collections/MultipleItemsFoundException.php %%WWWDIR%%/vendor/illuminate/collections/Traits/EnumeratesValues.php +%%WWWDIR%%/vendor/illuminate/collections/Traits/TransformsToResourceCollection.php %%WWWDIR%%/vendor/illuminate/conditionable/composer.json %%WWWDIR%%/vendor/illuminate/conditionable/HigherOrderWhenProxy.php %%WWWDIR%%/vendor/illuminate/conditionable/Traits/Conditionable.php @@ -4952,11 +4924,15 @@ %%WWWDIR%%/vendor/illuminate/container/Attributes/Authenticated.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Cache.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Config.php +%%WWWDIR%%/vendor/illuminate/container/Attributes/Context.php %%WWWDIR%%/vendor/illuminate/container/Attributes/CurrentUser.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Database.php %%WWWDIR%%/vendor/illuminate/container/Attributes/DB.php +%%WWWDIR%%/vendor/illuminate/container/Attributes/Give.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Log.php %%WWWDIR%%/vendor/illuminate/container/Attributes/RouteParameter.php +%%WWWDIR%%/vendor/illuminate/container/Attributes/Scoped.php +%%WWWDIR%%/vendor/illuminate/container/Attributes/Singleton.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Storage.php %%WWWDIR%%/vendor/illuminate/container/Attributes/Tag.php %%WWWDIR%%/vendor/illuminate/container/BoundMethod.php @@ -4985,6 +4961,7 @@ %%WWWDIR%%/vendor/illuminate/contracts/Broadcasting/ShouldBeUnique.php %%WWWDIR%%/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php %%WWWDIR%%/vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php +%%WWWDIR%%/vendor/illuminate/contracts/Broadcasting/ShouldRescue.php %%WWWDIR%%/vendor/illuminate/contracts/Bus/Dispatcher.php %%WWWDIR%%/vendor/illuminate/contracts/Bus/QueueingDispatcher.php %%WWWDIR%%/vendor/illuminate/contracts/Cache/Factory.php @@ -5011,6 +4988,7 @@ %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/Castable.php %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/CastsAttributes.php %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/CastsInboundAttributes.php +%%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/ComparesCastableAttributes.php %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/DeviatesCastableAttributes.php %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/SerializesCastableAttributes.php %%WWWDIR%%/vendor/illuminate/contracts/Database/Eloquent/SupportsPartialRelations.php @@ -5040,6 +5018,7 @@ %%WWWDIR%%/vendor/illuminate/contracts/Foundation/MaintenanceMode.php %%WWWDIR%%/vendor/illuminate/contracts/Hashing/Hasher.php %%WWWDIR%%/vendor/illuminate/contracts/Http/Kernel.php +%%WWWDIR%%/vendor/illuminate/contracts/Log/ContextLogProcessor.php %%WWWDIR%%/vendor/illuminate/contracts/Mail/Attachable.php %%WWWDIR%%/vendor/illuminate/contracts/Mail/Factory.php %%WWWDIR%%/vendor/illuminate/contracts/Mail/Mailable.php @@ -5083,6 +5062,7 @@ %%WWWDIR%%/vendor/illuminate/contracts/Support/CanBeEscapedWhenCastToString.php %%WWWDIR%%/vendor/illuminate/contracts/Support/DeferrableProvider.php %%WWWDIR%%/vendor/illuminate/contracts/Support/DeferringDisplayableValue.php +%%WWWDIR%%/vendor/illuminate/contracts/Support/HasOnceHash.php %%WWWDIR%%/vendor/illuminate/contracts/Support/Htmlable.php %%WWWDIR%%/vendor/illuminate/contracts/Support/Jsonable.php %%WWWDIR%%/vendor/illuminate/contracts/Support/MessageBag.php @@ -5093,6 +5073,7 @@ %%WWWDIR%%/vendor/illuminate/contracts/Translation/HasLocalePreference.php %%WWWDIR%%/vendor/illuminate/contracts/Translation/Loader.php %%WWWDIR%%/vendor/illuminate/contracts/Translation/Translator.php +%%WWWDIR%%/vendor/illuminate/contracts/Validation/CompilableRules.php %%WWWDIR%%/vendor/illuminate/contracts/Validation/DataAwareRule.php %%WWWDIR%%/vendor/illuminate/contracts/Validation/Factory.php %%WWWDIR%%/vendor/illuminate/contracts/Validation/ImplicitRule.php @@ -5111,6 +5092,7 @@ %%WWWDIR%%/vendor/illuminate/database/ClassMorphViolationException.php %%WWWDIR%%/vendor/illuminate/database/composer.json %%WWWDIR%%/vendor/illuminate/database/Concerns/BuildsQueries.php +%%WWWDIR%%/vendor/illuminate/database/Concerns/BuildsWhereDateClauses.php %%WWWDIR%%/vendor/illuminate/database/Concerns/CompilesJsonPaths.php %%WWWDIR%%/vendor/illuminate/database/Concerns/ExplainsQueries.php %%WWWDIR%%/vendor/illuminate/database/Concerns/ManagesTransactions.php @@ -5162,7 +5144,11 @@ %%WWWDIR%%/vendor/illuminate/database/DetectsLostConnections.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/CollectedBy.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/ObservedBy.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/Scope.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/ScopedBy.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/UseEloquentBuilder.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/UseFactory.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Attributes/UsePolicy.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/BroadcastableModelEventOccurred.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/BroadcastsEvents.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/BroadcastsEventsAfterCommit.php @@ -5174,7 +5160,10 @@ %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsEncryptedCollection.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsEnumArrayObject.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsEnumCollection.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsFluent.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsHtmlString.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsStringable.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/AsUri.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/Attribute.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Casts/Json.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Collection.php @@ -5188,10 +5177,11 @@ %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HasUniqueIds.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HasUniqueStringIds.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HasUuids.php -%%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HasVersion7Uuids.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HasVersion4Uuids.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/HidesAttributes.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/PreventsCircularRecursion.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/QueriesRelationships.php +%%WWWDIR%%/vendor/illuminate/database/Eloquent/Concerns/TransformsToResource.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Factories/BelongsToManyRelationship.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Factories/BelongsToRelationship.php %%WWWDIR%%/vendor/illuminate/database/Eloquent/Factories/CrossJoinSequence.php @@ -5248,6 +5238,7 @@ %%WWWDIR%%/vendor/illuminate/database/Events/MigrationEvent.php %%WWWDIR%%/vendor/illuminate/database/Events/MigrationsEnded.php %%WWWDIR%%/vendor/illuminate/database/Events/MigrationsEvent.php +%%WWWDIR%%/vendor/illuminate/database/Events/MigrationsPruned.php %%WWWDIR%%/vendor/illuminate/database/Events/MigrationsStarted.php %%WWWDIR%%/vendor/illuminate/database/Events/MigrationStarted.php %%WWWDIR%%/vendor/illuminate/database/Events/ModelPruningFinished.php @@ -5270,6 +5261,7 @@ %%WWWDIR%%/vendor/illuminate/database/Migrations/Migration.php %%WWWDIR%%/vendor/illuminate/database/Migrations/MigrationCreator.php %%WWWDIR%%/vendor/illuminate/database/Migrations/MigrationRepositoryInterface.php +%%WWWDIR%%/vendor/illuminate/database/Migrations/MigrationResult.php %%WWWDIR%%/vendor/illuminate/database/Migrations/Migrator.php %%WWWDIR%%/vendor/illuminate/database/Migrations/stubs/migration.create.stub %%WWWDIR%%/vendor/illuminate/database/Migrations/stubs/migration.stub @@ -5339,6 +5331,7 @@ %%WWWDIR%%/vendor/illuminate/support/DefaultProviders.php %%WWWDIR%%/vendor/illuminate/support/Defer/DeferredCallback.php %%WWWDIR%%/vendor/illuminate/support/Defer/DeferredCallbackCollection.php +%%WWWDIR%%/vendor/illuminate/support/EncodedHtmlString.php %%WWWDIR%%/vendor/illuminate/support/Env.php %%WWWDIR%%/vendor/illuminate/support/Exceptions/MathException.php %%WWWDIR%%/vendor/illuminate/support/Facades/App.php @@ -5365,6 +5358,7 @@ %%WWWDIR%%/vendor/illuminate/support/Facades/Lang.php %%WWWDIR%%/vendor/illuminate/support/Facades/Log.php %%WWWDIR%%/vendor/illuminate/support/Facades/Mail.php +%%WWWDIR%%/vendor/illuminate/support/Facades/MaintenanceMode.php %%WWWDIR%%/vendor/illuminate/support/Facades/Notification.php %%WWWDIR%%/vendor/illuminate/support/Facades/ParallelTesting.php %%WWWDIR%%/vendor/illuminate/support/Facades/Password.php @@ -5402,7 +5396,6 @@ %%WWWDIR%%/vendor/illuminate/support/Onceable.php %%WWWDIR%%/vendor/illuminate/support/Optional.php %%WWWDIR%%/vendor/illuminate/support/Pluralizer.php -%%WWWDIR%%/vendor/illuminate/support/Process/PhpExecutableFinder.php %%WWWDIR%%/vendor/illuminate/support/ProcessUtils.php %%WWWDIR%%/vendor/illuminate/support/Reflector.php %%WWWDIR%%/vendor/illuminate/support/ServiceProvider.php @@ -5424,12 +5417,15 @@ %%WWWDIR%%/vendor/illuminate/support/Testing/Fakes/QueueFake.php %%WWWDIR%%/vendor/illuminate/support/Timebox.php %%WWWDIR%%/vendor/illuminate/support/Traits/CapsuleManagerTrait.php +%%WWWDIR%%/vendor/illuminate/support/Traits/Conditionable.php %%WWWDIR%%/vendor/illuminate/support/Traits/Dumpable.php %%WWWDIR%%/vendor/illuminate/support/Traits/ForwardsCalls.php %%WWWDIR%%/vendor/illuminate/support/Traits/InteractsWithData.php %%WWWDIR%%/vendor/illuminate/support/Traits/Localizable.php %%WWWDIR%%/vendor/illuminate/support/Traits/ReflectsClosures.php %%WWWDIR%%/vendor/illuminate/support/Traits/Tappable.php +%%WWWDIR%%/vendor/illuminate/support/Uri.php +%%WWWDIR%%/vendor/illuminate/support/UriQueryString.php %%WWWDIR%%/vendor/illuminate/support/ValidatedInput.php %%WWWDIR%%/vendor/illuminate/support/ViewErrorBag.php %%WWWDIR%%/vendor/intervention/gif/composer.json @@ -5555,6 +5551,7 @@ %%WWWDIR%%/vendor/intervention/image/src/Drivers/AbstractDriver.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/AbstractEncoder.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/AbstractFontProcessor.php +%%WWWDIR%%/vendor/intervention/image/src/Drivers/AbstractFrame.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Gd/Analyzers/ColorspaceAnalyzer.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Gd/Analyzers/HeightAnalyzer.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Gd/Analyzers/PixelColorAnalyzer.php @@ -5693,6 +5690,7 @@ %%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/ScaleModifier.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/SharpenModifier.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/SliceAnimationModifier.php +%%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/StripMetaModifier.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/TextModifier.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Imagick/Modifiers/TrimModifier.php %%WWWDIR%%/vendor/intervention/image/src/Drivers/Specializable.php @@ -5829,710 +5827,32 @@ %%WWWDIR%%/vendor/intervention/image/src/Typography/FontFactory.php %%WWWDIR%%/vendor/intervention/image/src/Typography/Line.php %%WWWDIR%%/vendor/intervention/image/src/Typography/TextBlock.php -%%WWWDIR%%/vendor/io-developer/php-whois/.devcontainer/devcontainer.json -%%WWWDIR%%/vendor/io-developer/php-whois/.devcontainer/docker-compose.yml -%%WWWDIR%%/vendor/io-developer/php-whois/.devcontainer/Dockerfile -%%WWWDIR%%/vendor/io-developer/php-whois/.github/workflows/tests.yml -%%WWWDIR%%/vendor/io-developer/php-whois/.gitignore -%%WWWDIR%%/vendor/io-developer/php-whois/bin/php-whois -%%WWWDIR%%/vendor/io-developer/php-whois/bin/php-whois.php -%%WWWDIR%%/vendor/io-developer/php-whois/composer.json -%%WWWDIR%%/vendor/io-developer/php-whois/docker-compose.yml -%%WWWDIR%%/vendor/io-developer/php-whois/Dockerfile -%%WWWDIR%%/vendor/io-developer/php-whois/LICENSE -%%WWWDIR%%/vendor/io-developer/php-whois/run-tests.sh -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Config.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.asn.servers.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.tld.parser.auto.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.tld.parser.block.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.tld.parser.common.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.tld.parser.indent.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Configs/module.tld.servers.json -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/DataObject.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Exceptions/ConnectionException.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Exceptions/ServerMismatchException.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Exceptions/WhoisException.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Factory.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/DateHelper.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/DomainHelper.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/GroupFilter.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/GroupHelper.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/GroupSelector.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/GroupTrait.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/ParserHelper.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Helpers/TextHelper.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/IFactory.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Loaders/CurlLoader.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Loaders/ILoader.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Loaders/MemcachedLoader.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Loaders/SocketLoader.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnInfo.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnInfoDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnModule.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnParserDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnResponse.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnResponseDeprected.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnRouteInfo.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnRouteInfoDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Asn/AsnServer.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Module.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/ModuleType.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/Parsers/AutoParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/Parsers/BlockParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/Parsers/CommonParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/Parsers/IndentParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldInfo.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldInfoDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldModule.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldParserDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldResponse.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldResponseDeprected.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Modules/Tld/TldServer.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Punycode/IntlPunycode.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Punycode/IPunycode.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/Whois.php -%%WWWDIR%%/vendor/io-developer/php-whois/src/Iodev/Whois/WhoisDeprecated.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/bootstrap.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Helpers/text_data/encoding.fin.in.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Helpers/text_data/encoding.fin.out.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Helpers/text_data/encoding.ukr.in.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Helpers/text_data/encoding.ukr.out.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Helpers/TextHelperTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Loaders/FakeSocketLoader.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/AsnParsingTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/AsnResponseTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS32934/whois.radb.net.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS32934/whois.radb.net.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS32934/whois.ripe.net.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS62041/whois.radb.net.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS62041/whois.radb.net.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS62041/whois.ripe.net.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Asn/parsing_data/AS62041/whois.ripe.net.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/Parsers/TestCommonParser.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ac/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ac/google.ac.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ac/google.ac.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ae/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ae/google.ae.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ae/google.ae.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.af/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.af/google.com.af.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.af/google.com.af.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.africa/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.africa/google.africa.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.africa/google.africa.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ag/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ag/google.com.ag.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ag/google.com.ag.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ai/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ai/google.com.ai.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ai/google.com.ai.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.am/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.am/google.am.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.am/google.am.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.am/google.com.am.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.am/google.com.am.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ar/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ar/google.com.ar.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ar/google.com.ar.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.army/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.army/nic.army.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.army/nic.army.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.art/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.art/google.art.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.art/google.art.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.as/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.as/google.as.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.as/google.as.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.at/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.at/google.at.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.at/google.at.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.attorney/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.attorney/nic.attorney.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.attorney/nic.attorney.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.au/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.au/google.com.au.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.au/google.com.au.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.baby/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.baby/google.baby.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.baby/google.baby.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.band/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.band/nic.band.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.band/nic.band.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.be/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.be/google.be.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.be/google.be.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.be/youtu.be.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.be/youtu.be.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bg/google.bg.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bg/google.bg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bi/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bi/google.bi.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bi/google.bi.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bj/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bj/google.bj.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bj/google.bj.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bm/bermudanic.bm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bm/bermudanic.bm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bn/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bn/google.com.bn.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bn/google.com.bn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bo/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bo/google.com.bo.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bo/google.com.bo.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.br/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.br/google.com.br.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.br/google.com.br.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bw/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bw/google.co.bw.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bw/google.co.bw.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.by/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.by/google.by.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.by/google.by.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.by/google.com.by.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.by/google.com.by.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bz/google.com.bz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.bz/google.com.bz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cafe/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cafe/nic.cafe.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cafe/nic.cafe.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cam/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cam/google.cam.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cam/google.cam.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cat/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cat/google.cat.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cat/google.cat.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cc/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cc/google.cc.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cc/google.cc.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cf/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cf/google.cf.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cf/google.cf.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ci/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ci/google.ci.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ci/google.ci.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cl/google.cl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cm/google.cm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cm/google.cm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cn/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cn/google.cn.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cn/google.cn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.co/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.co/google.co.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.co/google.co.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.co/google.com.co.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.co/google.com.co.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cologne/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cologne/google.cologne.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cologne/google.cologne.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.com/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.com/google.com_registrar_whois.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.com/google.com_registrar_whois.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.com/google.com.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.com/google.com.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cr/google.co.cr.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cr/google.co.cr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cz/google.cz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.cz/google.cz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.de/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.de/google.de.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.de/google.de.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.de/xn--fw-via.de.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.de/xn--fw-via.de.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.degree/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.degree/nic.degree.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.degree/nic.degree.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dentist/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dentist/nic.dentist.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dentist/nic.dentist.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dk/google.dk.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dk/google.dk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dm/google.dm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dm/google.dm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.do/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.do/google.com.do.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.do/google.com.do.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dog/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dog/nic.dog.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dog/nic.dog.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dz/google.dz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.dz/google.dz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.earth/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.earth/google.earth.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.earth/google.earth.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ec/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ec/google.com.ec.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ee/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ee/google.ee.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ee/google.ee.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.engineer/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.engineer/nic.engineer.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.engineer/nic.engineer.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.es/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.es/google.es.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.es/google.es.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.eu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.eu/google.eu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.eu/google.eu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fi/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fi/google.fi.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fi/google.fi.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fi/xn--sisministeri-icb5x.fi.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fi/xn--sisministeri-icb5x.fi.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.film/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.film/google.film.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.film/google.film.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fj/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fj/google.com.fj.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fm/google.fm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fm/google.fm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fr/google.fr.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.fr/google.fr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ga/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ga/google.ga.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gay/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gay/google.gay.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gay/google.gay.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gd/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gd/google.gd.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gd/google.gd.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gf/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gf/google.gf.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gg/google.gg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gi/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gi/google.com.gi.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gi/google.com.gi.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gives/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gives/nic.gives.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gives/nic.gives.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gl/google.gl.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gl/google.gl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gov/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gov/usa.gov.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gov/usa.gov.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.group/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.group/nic.group.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.group/nic.group.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gy/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gy/google.gy.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.gy/google.gy.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hk/google.com.hk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hk.com/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hk.com/udr.hk.com.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hk.com/udr.hk.com.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hr/google.hr.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hr/google.hr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ht/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ht/google.ht.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ht/google.ht.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hu/google.hu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.hu/google.hu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.icu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.icu/google.icu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.icu/google.icu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.id/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.id/google.co.id.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.id/google.co.id.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ie/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ie/google.ie.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ie/google.ie.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.il/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.il/google.co.il.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.il/google.co.il.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.im/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.im/google.im.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.in/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.in/google.co.in.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.in/google.co.in.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.info/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.info/info.info.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.info/info.info.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/codepen.io.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/codepen.io.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/github.io.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/github.io.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/google.io.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.io/google.io.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.iq/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.iq/google.iq.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.iq/google.iq.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ir/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ir/mhf.ir.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ir/mhf.ir.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.is/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.is/google.is.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.is/google.is.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it/google.it.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it/google.it.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it/nintendo.it.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it/nintendo.it.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it.ao/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it.ao/google.it.ao.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.it.ao/google.it.ao.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.je/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.je/google.je.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jewelry/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jewelry/microsoft.jewelry.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jewelry/microsoft.jewelry.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jp/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jp/google.co.jp.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jp/google.co.jp.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jp/shop.jp.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.jp/shop.jp.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kg/google.kg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ki/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ki/google.ki.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ki/google.ki.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kids/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kids/google.kids.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kids/google.kids.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.koeln/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.koeln/google.koeln.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.koeln/google.koeln.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kr/google.co.kr.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kr/google.co.kr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kw/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kw/google.com.kw.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kw/google.com.kw.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kz/google.kz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.kz/google.kz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.la/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.la/google.la.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.la/google.la.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lawyer/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lawyer/nic.lawyer.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lawyer/nic.lawyer.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lc/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lc/google.com.lc.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lc/google.com.lc.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.live/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.live/microsoft.live.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.live/microsoft.live.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.llc/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.llc/google.llc.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.llc/google.llc.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.loan/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.loan/google.loan.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.loan/google.loan.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lt/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lt/google.lt.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lt/google.lt.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ltd/donuts.ltd.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ltd/donuts.ltd.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ltd/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lu/google.lu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lu/google.lu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lv/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lv/google.lv.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.lv/google.lv.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ly/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ly/google.com.ly.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ma/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ma/google.co.ma.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ma/google.co.ma.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.market/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.market/nic.market.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.market/nic.market.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.md/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.md/google.md.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.md/google.md.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.me/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.me/google.me.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.me/google.me.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mg/google.mg.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mg/google.mg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mk/google.mk.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mk/google.mk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ml/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ml/google.ml.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mn/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mn/google.mn.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mn/google.mn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mortgage/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mortgage/nic.mortgage.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mortgage/nic.mortgage.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ms/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ms/google.ms.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ms/google.ms.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mu/google.mu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mu/google.mu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mx/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mx/google.com.mx.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mz/google.co.mz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.mz/google.co.mz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.na/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.na/google.com.na.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.na/google.com.na.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.navy/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.navy/nic.navy.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.navy/nic.navy.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.net/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.net/speedtest.net_registrar_whois.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.net/speedtest.net_registrar_whois.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.net/speedtest.net.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.net/speedtest.net.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.news/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.news/google.news.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.news/google.news.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nf/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nf/google.com.nf.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nf/google.com.nf.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ng/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ng/google.com.ng.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ng/google.com.ng.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nl/google.nl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.no/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.no/google.no.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.no/google.no.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nu/google.nu.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nu/google.nu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/free_progressbuilders.co.nz.nz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/free_secuirty-services.co.nz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/google.co.nz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/google.co.nz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/payrollmatters.co.nz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/payrollmatters.co.nz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/smarttech.nz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.nz/smarttech.nz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.om/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.om/google.com.om.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.om/google.com.om.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.org/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.org/linux.org.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.org/linux.org.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.page/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.page/microsoft.page.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.page/microsoft.page.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pe/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pe/google.com.pe.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pe/google.com.pe.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pl/google.pl.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pl/google.pl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.plus/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.plus/google.plus.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.plus/google.plus.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pr/google.com.pr.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.pr/google.com.pr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.promo/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.promo/google.promo.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.promo/google.promo.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ps/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ps/google.ps.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ps/google.ps.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.qa/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.qa/google.com.qa.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.qa/google.com.qa.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rehab/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rehab/nic.rehab.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rehab/nic.rehab.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ren/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ren/nic.ren.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ren/nic.ren.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.republican/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.republican/nic.republican.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.republican/nic.republican.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rip/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rip/nic.rip.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rip/nic.rip.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/anaf.ro.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/anaf.ro.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/google.ro.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/google.ro.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/rotld.ro.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ro/rotld.ro.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rs/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rs/google.rs.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rs/google.rs.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ru/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ru/google.ru.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ru/google.ru.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rw/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rw/google.rw.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.rw/google.rw.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sa/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sa/google.com.sa.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sale/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sale/nic.sale.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sale/nic.sale.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sb/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sb/google.com.sb.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sb/google.com.sb.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sc/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sc/google.sc.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sc/google.sc.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.se/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.se/google.se.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.se/google.se.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.se/xn--ppettider-z7a.se.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.se/xn--ppettider-z7a.se.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sg/google.com.sg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sh/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sh/google.sh.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sh/google.sh.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.si/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.si/google.si.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.si/google.si.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sk/google.sk.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sk/google.sk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sl/google.com.sl.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sl/google.com.sl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sm/google.sm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sn/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.sn/google.sn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.so/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.so/google.so.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.so/google.so.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.software/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.software/nic.software.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.software/nic.software.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.st/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.st/google.st.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.st/google.st.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.studio/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.studio/microsoft.studio.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.studio/microsoft.studio.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.team/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.team/microsoft.team.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.team/microsoft.team.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tg/google.tg.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tg/google.tg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.th/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.th/google.co.th.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.th/google.co.th.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tk/google.tk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tl/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tl/google.tl.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tl/google.tl.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tm/google.tm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tm/google.tm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tn/ati.tn.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tn/ati.tn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tn/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tn/google.com.tn.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tn/google.com.tn.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.to/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.to/google.to.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tours/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tours/microsoft.tours.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tours/microsoft.tours.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tr/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tr/google.com.tr-win1252.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tr/google.com.tr.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tube/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tube/google.tube.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tube/google.tube.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tw/cabco.com.tw.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tw/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tw/google.com.tw.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tz/google.co.tz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.tz/google.co.tz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ua/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ua/google.com.ua.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ua/google.com.ua.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uk/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uk/google.co.uk.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uk/google.co.uk.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.us/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.us/google.us.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.us/google.us.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uy/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uy/google.uy.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uz/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uz/google.uz.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.uz/google.uz.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vc/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vc/google.com.vc.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vc/google.com.vc.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ve/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ve/google.co.ve.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vet/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vet/nic.vet.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vet/nic.vet.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vg/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vg/google.vg.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vg/google.vg.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.video/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.video/nic.video.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.video/nic.video.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vip/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vip/google.vip.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vip/google.vip.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vu/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.vu/google.vu.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ws/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ws/google.ws.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.ws/google.ws.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xin/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xin/microsoft.xin.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xin/microsoft.xin.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--p1ai/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--p1ai/xn--80a1acny.xn--p1ai.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--p1ai/xn--80a1acny.xn--p1ai.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--ses554g/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--ses554g/google.xn--ses554g.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.xn--ses554g/google.xn--ses554g.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.zm/free.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.zm/google.co.zm.json -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/parsing_data/.zm/google.co.zm.txt -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldConfigTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldInfoTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldModuleServerTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldParsingTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldResponseTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/Modules/Tld/TldServerTest.php -%%WWWDIR%%/vendor/io-developer/php-whois/tests/Iodev/Whois/WhoisTest.php +%%WWWDIR%%/vendor/laravel/serializable-closure/composer.json +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Contracts/Serializable.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Contracts/Signer.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Exceptions/InvalidSignatureException.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/SerializableClosure.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Serializers/Native.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Serializers/Signed.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Signers/Hmac.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Support/ClosureScope.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Support/ClosureStream.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Support/ReflectionClosure.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/Support/SelfReference.php +%%WWWDIR%%/vendor/laravel/serializable-closure/src/UnsignedSerializableClosure.php %%WWWDIR%%/vendor/league/commonmark/.phpstorm.meta.php %%WWWDIR%%/vendor/league/commonmark/composer.json %%WWWDIR%%/vendor/league/commonmark/LICENSE %%WWWDIR%%/vendor/league/commonmark/src/CommonMarkConverter.php %%WWWDIR%%/vendor/league/commonmark/src/ConverterInterface.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Bracket.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Delimiter.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterInterface.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterParser.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/DelimiterStack.php +%%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/CacheableDelimiterProcessorInterface.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorCollection.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorCollectionInterface.php %%WWWDIR%%/vendor/league/commonmark/src/Delimiter/Processor/DelimiterProcessorInterface.php @@ -6786,6 +6106,7 @@ %%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParserState.php %%WWWDIR%%/vendor/league/commonmark/src/Parser/MarkdownParserStateInterface.php %%WWWDIR%%/vendor/league/commonmark/src/Parser/ParserLogicException.php +%%WWWDIR%%/vendor/league/commonmark/src/Reference/MemoryLimitedReferenceMap.php %%WWWDIR%%/vendor/league/commonmark/src/Reference/Reference.php %%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceableInterface.php %%WWWDIR%%/vendor/league/commonmark/src/Reference/ReferenceInterface.php @@ -6993,6 +6314,8 @@ %%WWWDIR%%/vendor/middlewares/client-ip/.github/workflows/main.yaml %%WWWDIR%%/vendor/middlewares/client-ip/composer.json %%WWWDIR%%/vendor/middlewares/client-ip/LICENSE +%%WWWDIR%%/vendor/middlewares/client-ip/phpcs.xml +%%WWWDIR%%/vendor/middlewares/client-ip/phpunit.xml %%WWWDIR%%/vendor/middlewares/client-ip/src/ClientIp.php %%WWWDIR%%/vendor/mlocati/ip-lib/composer.json %%WWWDIR%%/vendor/mlocati/ip-lib/ip-lib.php @@ -8000,14 +7323,6 @@ %%WWWDIR%%/vendor/nyholm/psr7-server/LICENSE %%WWWDIR%%/vendor/nyholm/psr7-server/src/ServerRequestCreator.php %%WWWDIR%%/vendor/nyholm/psr7-server/src/ServerRequestCreatorInterface.php -%%WWWDIR%%/vendor/oscarotero/middleland/composer.json -%%WWWDIR%%/vendor/oscarotero/middleland/LICENSE -%%WWWDIR%%/vendor/oscarotero/middleland/src/Dispatcher.php -%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Accept.php -%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/MatcherInterface.php -%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/NegativeResultTrait.php -%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Path.php -%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Pattern.php %%WWWDIR%%/vendor/phpdocumentor/reflection-common/.github/workflows/push.yml %%WWWDIR%%/vendor/phpdocumentor/reflection-common/.scrutinizer.yml %%WWWDIR%%/vendor/phpdocumentor/reflection-common/.travis.yml @@ -8306,7 +7621,6 @@ %%WWWDIR%%/vendor/ralouphie/getallheaders/LICENSE %%WWWDIR%%/vendor/ralouphie/getallheaders/src/getallheaders.php %%WWWDIR%%/vendor/ramsey/collection/composer.json -%%WWWDIR%%/vendor/ramsey/collection/conventional-commits.json %%WWWDIR%%/vendor/ramsey/collection/LICENSE %%WWWDIR%%/vendor/ramsey/collection/src/AbstractArray.php %%WWWDIR%%/vendor/ramsey/collection/src/AbstractCollection.php @@ -8607,6 +7921,7 @@ %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolClearerPass.php %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolPass.php %%WWWDIR%%/vendor/symfony/cache/DependencyInjection/CachePoolPrunerPass.php +%%WWWDIR%%/vendor/symfony/cache/Exception/BadMethodCallException.php %%WWWDIR%%/vendor/symfony/cache/Exception/CacheException.php %%WWWDIR%%/vendor/symfony/cache/Exception/InvalidArgumentException.php %%WWWDIR%%/vendor/symfony/cache/Exception/LogicException.php @@ -8637,14 +7952,22 @@ %%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterNodeProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxy.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxyTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/RedisTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/BgsaveTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/CopyTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/FtTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GeosearchTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GetrangeTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/GetWithMetaTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/HsetTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/IsTrackedTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/MoveTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/NullableReturnTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/Relay/PfcountTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/Relay11Trait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/Relay/SwapdbTrait.php +%%WWWDIR%%/vendor/symfony/cache/Traits/RelayClusterProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RelayProxy.php %%WWWDIR%%/vendor/symfony/cache/Traits/RelayProxyTrait.php %%WWWDIR%%/vendor/symfony/cache/Traits/ValueWrapper.php @@ -8654,6 +7977,7 @@ %%WWWDIR%%/vendor/symfony/cache-contracts/composer.json %%WWWDIR%%/vendor/symfony/cache-contracts/ItemInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/LICENSE +%%WWWDIR%%/vendor/symfony/cache-contracts/NamespacedPoolInterface.php %%WWWDIR%%/vendor/symfony/cache-contracts/TagAwareCacheInterface.php %%WWWDIR%%/vendor/symfony/clock/Clock.php %%WWWDIR%%/vendor/symfony/clock/ClockAwareTrait.php @@ -8667,13 +7991,16 @@ %%WWWDIR%%/vendor/symfony/clock/Resources/now.php %%WWWDIR%%/vendor/symfony/clock/Test/ClockSensitiveTrait.php %%WWWDIR%%/vendor/symfony/console/Application.php +%%WWWDIR%%/vendor/symfony/console/Attribute/Argument.php %%WWWDIR%%/vendor/symfony/console/Attribute/AsCommand.php +%%WWWDIR%%/vendor/symfony/console/Attribute/Option.php %%WWWDIR%%/vendor/symfony/console/CI/GithubActionReporter.php %%WWWDIR%%/vendor/symfony/console/Color.php %%WWWDIR%%/vendor/symfony/console/Command/Command.php %%WWWDIR%%/vendor/symfony/console/Command/CompleteCommand.php %%WWWDIR%%/vendor/symfony/console/Command/DumpCompletionCommand.php %%WWWDIR%%/vendor/symfony/console/Command/HelpCommand.php +%%WWWDIR%%/vendor/symfony/console/Command/InvokableCommand.php %%WWWDIR%%/vendor/symfony/console/Command/LazyCommand.php %%WWWDIR%%/vendor/symfony/console/Command/ListCommand.php %%WWWDIR%%/vendor/symfony/console/Command/LockableTrait.php @@ -8703,6 +8030,7 @@ %%WWWDIR%%/vendor/symfony/console/Descriptor/ReStructuredTextDescriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/TextDescriptor.php %%WWWDIR%%/vendor/symfony/console/Descriptor/XmlDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Event/ConsoleAlarmEvent.php %%WWWDIR%%/vendor/symfony/console/Event/ConsoleCommandEvent.php %%WWWDIR%%/vendor/symfony/console/Event/ConsoleErrorEvent.php %%WWWDIR%%/vendor/symfony/console/Event/ConsoleEvent.php @@ -8746,6 +8074,9 @@ %%WWWDIR%%/vendor/symfony/console/Helper/TableRows.php %%WWWDIR%%/vendor/symfony/console/Helper/TableSeparator.php %%WWWDIR%%/vendor/symfony/console/Helper/TableStyle.php +%%WWWDIR%%/vendor/symfony/console/Helper/TreeHelper.php +%%WWWDIR%%/vendor/symfony/console/Helper/TreeNode.php +%%WWWDIR%%/vendor/symfony/console/Helper/TreeStyle.php %%WWWDIR%%/vendor/symfony/console/Input/ArgvInput.php %%WWWDIR%%/vendor/symfony/console/Input/ArrayInput.php %%WWWDIR%%/vendor/symfony/console/Input/Input.php @@ -8826,6 +8157,7 @@ %%WWWDIR%%/vendor/symfony/expression-language/Node/GetAttrNode.php %%WWWDIR%%/vendor/symfony/expression-language/Node/NameNode.php %%WWWDIR%%/vendor/symfony/expression-language/Node/Node.php +%%WWWDIR%%/vendor/symfony/expression-language/Node/NullCoalescedNameNode.php %%WWWDIR%%/vendor/symfony/expression-language/Node/NullCoalesceNode.php %%WWWDIR%%/vendor/symfony/expression-language/Node/UnaryNode.php %%WWWDIR%%/vendor/symfony/expression-language/ParsedExpression.php @@ -8844,10 +8176,14 @@ %%WWWDIR%%/vendor/symfony/mailer/Event/MessageEvent.php %%WWWDIR%%/vendor/symfony/mailer/Event/MessageEvents.php %%WWWDIR%%/vendor/symfony/mailer/Event/SentMessageEvent.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/DkimSignedMessageListener.php %%WWWDIR%%/vendor/symfony/mailer/EventListener/EnvelopeListener.php %%WWWDIR%%/vendor/symfony/mailer/EventListener/MessageListener.php %%WWWDIR%%/vendor/symfony/mailer/EventListener/MessageLoggerListener.php %%WWWDIR%%/vendor/symfony/mailer/EventListener/MessengerTransportListener.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/SmimeCertificateRepositoryInterface.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/SmimeEncryptedMessageListener.php +%%WWWDIR%%/vendor/symfony/mailer/EventListener/SmimeSignedMessageListener.php %%WWWDIR%%/vendor/symfony/mailer/Exception/ExceptionInterface.php %%WWWDIR%%/vendor/symfony/mailer/Exception/HttpTransportException.php %%WWWDIR%%/vendor/symfony/mailer/Exception/IncompleteDsnException.php @@ -8866,8 +8202,10 @@ %%WWWDIR%%/vendor/symfony/mailer/Messenger/MessageHandler.php %%WWWDIR%%/vendor/symfony/mailer/Messenger/SendEmailMessage.php %%WWWDIR%%/vendor/symfony/mailer/SentMessage.php +%%WWWDIR%%/vendor/symfony/mailer/Test/AbstractTransportFactoryTestCase.php %%WWWDIR%%/vendor/symfony/mailer/Test/Constraint/EmailCount.php %%WWWDIR%%/vendor/symfony/mailer/Test/Constraint/EmailIsQueued.php +%%WWWDIR%%/vendor/symfony/mailer/Test/IncompleteDsnTestTrait.php %%WWWDIR%%/vendor/symfony/mailer/Test/TransportFactoryTestCase.php %%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractApiTransport.php %%WWWDIR%%/vendor/symfony/mailer/Transport/AbstractHttpTransport.php @@ -9062,6 +8400,7 @@ %%WWWDIR%%/vendor/symfony/string/Inflector/EnglishInflector.php %%WWWDIR%%/vendor/symfony/string/Inflector/FrenchInflector.php %%WWWDIR%%/vendor/symfony/string/Inflector/InflectorInterface.php +%%WWWDIR%%/vendor/symfony/string/Inflector/SpanishInflector.php %%WWWDIR%%/vendor/symfony/string/LazyString.php %%WWWDIR%%/vendor/symfony/string/LICENSE %%WWWDIR%%/vendor/symfony/string/Resources/data/wcswidth_table_wide.php @@ -9069,12 +8408,14 @@ %%WWWDIR%%/vendor/symfony/string/Resources/functions.php %%WWWDIR%%/vendor/symfony/string/Slugger/AsciiSlugger.php %%WWWDIR%%/vendor/symfony/string/Slugger/SluggerInterface.php +%%WWWDIR%%/vendor/symfony/string/TruncateMode.php %%WWWDIR%%/vendor/symfony/string/UnicodeString.php %%WWWDIR%%/vendor/symfony/translation/Catalogue/AbstractOperation.php %%WWWDIR%%/vendor/symfony/translation/Catalogue/MergeOperation.php %%WWWDIR%%/vendor/symfony/translation/Catalogue/OperationInterface.php %%WWWDIR%%/vendor/symfony/translation/Catalogue/TargetOperation.php %%WWWDIR%%/vendor/symfony/translation/CatalogueMetadataAwareInterface.php +%%WWWDIR%%/vendor/symfony/translation/Command/TranslationLintCommand.php %%WWWDIR%%/vendor/symfony/translation/Command/TranslationPullCommand.php %%WWWDIR%%/vendor/symfony/translation/Command/TranslationPushCommand.php %%WWWDIR%%/vendor/symfony/translation/Command/TranslationTrait.php @@ -9162,6 +8503,8 @@ %%WWWDIR%%/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd %%WWWDIR%%/vendor/symfony/translation/Resources/schemas/xliff-core-2.0.xsd %%WWWDIR%%/vendor/symfony/translation/Resources/schemas/xml.xsd +%%WWWDIR%%/vendor/symfony/translation/Test/AbstractProviderFactoryTestCase.php +%%WWWDIR%%/vendor/symfony/translation/Test/IncompleteDsnTestTrait.php %%WWWDIR%%/vendor/symfony/translation/Test/ProviderFactoryTestCase.php %%WWWDIR%%/vendor/symfony/translation/Test/ProviderTestCase.php %%WWWDIR%%/vendor/symfony/translation/TranslatableMessage.php @@ -9254,6 +8597,7 @@ %%WWWDIR%%/vendor/symfony/var-exporter/Instantiator.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Exporter.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/Hydrator.php +%%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyDecoratorTrait.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectRegistry.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectState.php %%WWWDIR%%/vendor/symfony/var-exporter/Internal/LazyObjectTrait.php @@ -9269,165 +8613,6 @@ %%WWWDIR%%/vendor/tecnickcom/tcpdf/CHANGELOG.TXT %%WWWDIR%%/vendor/tecnickcom/tcpdf/composer.json %%WWWDIR%%/vendor/tecnickcom/tcpdf/config/tcpdf_config.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_1d_html.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_1d_png.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_1d_svg.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_1d_svgi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_html.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_png.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_html.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_png.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svg.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_html.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_png.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svg.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_2d_include.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/config/tcpdf_config_alt.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/cert/tcpdf.crt -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/cert/tcpdf.fdf -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/cert/tcpdf.p12 -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/chapter_demo_1.txt -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/chapter_demo_2.txt -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/table_data_demo.txt -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/data/utf8test.txt -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_001.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_002.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_003.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_004.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_005.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_006.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_007.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_008.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_009.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_010.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_011.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_012.pdf -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_012.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_013.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_014.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_015.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_016.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_017.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_018.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_019.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_020.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_021.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_022.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_023.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_024.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_025.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_026.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_027.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_028.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_029.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_030.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_031.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_032.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_033.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_034.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_035.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_036.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_037.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_038.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_039.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_040.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_041.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_042.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_043.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_044.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_045.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_046.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_047.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_048.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_049.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_050.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_051.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_052.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_053.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_054.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_055.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_056.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_057.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_058.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_059.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_060.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_061.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_062.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_063.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_064.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_065.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_066.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/example_067.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/_blank.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/alpha.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/image_demo.jpg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/image_with_alpha.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/img.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/logo_example.gif -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/logo_example.jpg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/logo_example.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tcpdf_box.ai -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tcpdf_box.svg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tcpdf_cell.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tcpdf_logo.jpg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tcpdf_signature.png -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/testsvg.svg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/images/tux.svg -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/index.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/afr.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ara.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/aze.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/bel.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/bra.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/bul.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/cat.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ces.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/chi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/cym.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/dan.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/eng.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/est.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/eus.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/far.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/fra.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ger.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/gle.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/glg.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/hat.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/heb.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/hrv.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/hun.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/hye.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ind.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ita.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/jpn.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/kat.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/kor.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/mkd.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/mlt.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/msa.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/nld.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/nob.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/pol.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/por.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ron.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/rus.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/slv.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/spa.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/sqi.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/srp.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/swa.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/swe.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/ukr.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/urd.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/yid.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/lang/zho.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/examples/tcpdf_include.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/fonts/ae_fonts_2.0/ChangeLog %%WWWDIR%%/vendor/tecnickcom/tcpdf/fonts/ae_fonts_2.0/COPYING %%WWWDIR%%/vendor/tecnickcom/tcpdf/fonts/ae_fonts_2.0/README @@ -9633,8 +8818,6 @@ %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_autoconfig.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_barcodes_1d.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_barcodes_2d.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_import.php -%%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf_parser.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tcpdf.php %%WWWDIR%%/vendor/tecnickcom/tcpdf/tools/.htaccess %%WWWDIR%%/vendor/tecnickcom/tcpdf/tools/convert_fonts_examples.txt @@ -9844,7 +9027,6 @@ %%WWWDIR%%/vendor/webmozart/assert/src/Assert.php %%WWWDIR%%/vendor/webmozart/assert/src/Mixin.php @dir %%WWWDIR%%/modules_v4 -@dir %%WWWDIR%%/vendor/io-developer/php-whois/.github/ISSUE_TEMPLATE @dir %%WWWDIR%%/vendor/psr/http-message/docs @dir %%WWWDIR%%/vendor/symfony/mime/Resources/bin @dir %%WWWDIR%%/vendor/symfony/string/Resources/bin diff --git a/x11-wm/qtile/Makefile b/x11-wm/qtile/Makefile index c06ca13c20d7..95b49381c0c2 100644 --- a/x11-wm/qtile/Makefile +++ b/x11-wm/qtile/Makefile @@ -1,6 +1,5 @@ PORTNAME= qtile -PORTVERSION= 0.18.1 -PORTREVISION= 5 +PORTVERSION= 0.33.0 CATEGORIES= x11-wm MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,14 +20,15 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>1.1.0:devel/py-cffi@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools-scm>0:devel/py-setuptools-scm@${PY_FLAVOR} LIB_DEPENDS= libpangocairo-1.0.so:x11-toolkits/pango \ libpulse.so:audio/pulseaudio -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xcffib>=0.5.0:x11/py-xcffib@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>1.1.0:devel/py-cffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>1.4.1:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cairocffi>=0.9:graphics/py-cairocffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xcffib>=0.5.0:x11/py-xcffib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} -USE_GNOME= pygobject3 - USES= gnome python localbase -USE_PYTHON= distutils autoplist noflavors +USE_GNOME= pygobject3 +USE_PYTHON= autoplist pep517 NO_ARCH= yes SUB_FILES= qtile.desktop diff --git a/x11-wm/qtile/distinfo b/x11-wm/qtile/distinfo index 7c00ddf05ab0..0d84de6fb2b2 100644 --- a/x11-wm/qtile/distinfo +++ b/x11-wm/qtile/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1632153244 -SHA256 (qtile-0.18.1.tar.gz) = c5a0507f0406c88119f0064671b4d27fb45e8191e608d2e6ceeba83fbb110b92 -SIZE (qtile-0.18.1.tar.gz) = 403309 +TIMESTAMP = 1759793219 +SHA256 (qtile-0.33.0.tar.gz) = 84b470a2aa3fa089c09e7db4c6ed9d4c57cbd5a77f77c4cb6487a1c4a67117cf +SIZE (qtile-0.33.0.tar.gz) = 653484 diff --git a/x11-wm/qtile/files/patch-pyproject.toml b/x11-wm/qtile/files/patch-pyproject.toml new file mode 100644 index 000000000000..61515c1f5766 --- /dev/null +++ b/x11-wm/qtile/files/patch-pyproject.toml @@ -0,0 +1,12 @@ +--- pyproject.toml.orig 2025-10-06 20:30:00 UTC ++++ pyproject.toml +@@ -13,8 +13,7 @@ build-backend = "builder" + name = "qtile" + description = "A pure-Python tiling window manager." + dynamic = ["version", "readme", "dependencies", "optional-dependencies"] +-license = "MIT" +-license-files = [ "LICENSE" ] ++license = {file = "LICENSE"} + classifiers = [ + "Intended Audience :: End Users/Desktop", + "Operating System :: POSIX :: BSD :: FreeBSD", diff --git a/x11-wm/qtile/pkg-plist b/x11-wm/qtile/pkg-plist index 63d3f8108db4..f242e7f0cbec 100644 --- a/x11-wm/qtile/pkg-plist +++ b/x11-wm/qtile/pkg-plist @@ -1,7 +1 @@ -%%PYTHON_SITELIBDIR%%/libqtile/__pycache__/_ffi_pango%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/libqtile/__pycache__/_ffi_pango%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/libqtile/_ffi_pango.py -%%PYTHON_SITELIBDIR%%/libqtile/backend/x11/__pycache__/_ffi_xcursors%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/libqtile/backend/x11/__pycache__/_ffi_xcursors%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/libqtile/backend/x11/_ffi_xcursors.py share/xsessions/qtile.desktop diff --git a/x11/py-xcffib/Makefile b/x11/py-xcffib/Makefile index 4d8ccebdc8ff..873ab8009a98 100644 --- a/x11/py-xcffib/Makefile +++ b/x11/py-xcffib/Makefile @@ -1,6 +1,5 @@ PORTNAME= xcffib -PORTVERSION= 0.11.1 -PORTREVISION= 1 +PORTVERSION= 1.11.2 CATEGORIES= x11 python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,13 +11,14 @@ WWW= https://github.com/tych0/xcffib LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.1.0:devel/py-cffi@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}cffi>=1.1.0:devel/py-cffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} LIB_DEPENDS= libxcb.so:x11/libxcb -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.1.0:devel/py-cffi@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist pep517 NO_ARCH= yes diff --git a/x11/py-xcffib/distinfo b/x11/py-xcffib/distinfo index 2a2b5748688a..20fde3a047e0 100644 --- a/x11/py-xcffib/distinfo +++ b/x11/py-xcffib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1623712193 -SHA256 (xcffib-0.11.1.tar.gz) = 12949cfe2e68c806efd57596bb9bf3c151f399d4b53e15d1101b2e9baaa66f5a -SIZE (xcffib-0.11.1.tar.gz) = 84713 +TIMESTAMP = 1759791622 +SHA256 (xcffib-1.11.2.tar.gz) = e27e1bad25452824736d967d4db8a32b366606d682a5b963185f629598c5f5dd +SIZE (xcffib-1.11.2.tar.gz) = 111390 diff --git a/x11/py-xcffib/pkg-plist b/x11/py-xcffib/pkg-plist deleted file mode 100644 index e8aaecab66f0..000000000000 --- a/x11/py-xcffib/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -%%PYTHON_SITELIBDIR%%/xcffib/_ffi.py -%%PYTHON2%%%%PYTHON_SITELIBDIR%%/xcffib/_ffi.pyc -%%PYTHON2%%%%PYTHON_SITELIBDIR%%/xcffib/_ffi.pyo -%%PYTHON3%%%%PYTHON_SITELIBDIR%%/xcffib/__pycache__/_ffi.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc -%%PYTHON3%%%%PYTHON_SITELIBDIR%%/xcffib/__pycache__/_ffi.cpython-%%PYTHON_SUFFIX%%.pyc |