aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Makhmatkhanov <rm@FreeBSD.org>2023-09-04 09:15:33 +0000
committerRuslan Makhmatkhanov <rm@FreeBSD.org>2023-09-04 09:15:33 +0000
commit4ddc86a19ed4fecf66d719d01249fbcca745b787 (patch)
tree0b299f7277743831dbe6ea92a589cfdf19f946e3
parentd3f53b990a90b242e9408349fe4a3713568ef1f8 (diff)
downloadports-4ddc86a19ed4fecf66d719d01249fbcca745b787.tar.gz
ports-4ddc86a19ed4fecf66d719d01249fbcca745b787.zip
devel/pycharm-pro: update to 2023.2.1
Update pycharm-pro to latest version. This is mainly Makefile sync with other jetbrains ports and pycharm-ce. Release notes: https://www.jetbrains.com/pycharm/whatsnew/2023-2/ PR: 273225 Approved by: Guido Kollerie <guido@kollerie.com>
-rw-r--r--devel/pycharm-pro/Makefile62
-rw-r--r--devel/pycharm-pro/distinfo6
-rw-r--r--devel/pycharm-pro/files/pkg-message.in10
-rw-r--r--devel/pycharm-pro/files/pycharm-pro.desktop.in2
-rw-r--r--devel/pycharm-pro/files/pycharm.in9
-rw-r--r--devel/pycharm-pro/pkg-plist1434
6 files changed, 874 insertions, 649 deletions
diff --git a/devel/pycharm-pro/Makefile b/devel/pycharm-pro/Makefile
index 7a55d2e972a2..406991bef1a4 100644
--- a/devel/pycharm-pro/Makefile
+++ b/devel/pycharm-pro/Makefile
@@ -1,6 +1,5 @@
PORTNAME= pycharm-pro
-PORTVERSION= 2022.2.2
-PORTREVISION= 2
+DISTVERSION= 2023.2.1
CATEGORIES= devel java python
MASTER_SITES= https://download.jetbrains.com/python/ \
http://download.jetbrains.com/python/
@@ -15,16 +14,18 @@ LICENSE_NAME= Subscription license agreement for business and organizations
LICENSE_TEXT= See: https://www.jetbrains.com/store/license.html
LICENSE_PERMS= no-dist-mirror no-dist-sell pkg-mirror no-pkg-sell auto-accept
+BUILD_DEPENDS= jna>0:devel/jna
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
- intellij-pty4j>=0.11.4:java/intellij-pty4j \
- openjfx14>=0:java/openjfx14
+ jetbrains-pty4j>=0.12.13:devel/jetbrains-pty4j \
+ jetbrains-sqlite>=232.8660.185:devel/jetbrains-sqlite
-USES= python:run shebangfix
-
-SHEBANG_FILES= bin/restart.py
+USES= cpe python:run shebangfix
+CPE_VENDOR= jetbrains
USE_JAVA= yes
-JAVA_VERSION= 11+
+JAVA_VERSION= 17+
+
+SHEBANG_FILES= bin/restart.py
WRKSRC= ${WRKDIR}/pycharm-${PORTVERSION}
@@ -36,23 +37,40 @@ NO_BUILD= yes
SUB_FILES+= pkg-message pycharm ${PORTNAME}.desktop
SUB_LIST+= IDEA_HOME=${IDEA_HOME}
-do-install:
- @${MKDIR} ${STAGEDIR}${DATADIR}
- @${TAR} -czf - -C ${WRKSRC} . | ${TAR} xzf - -C ${STAGEDIR}${DATADIR}
-# Linux/Windows/OS X only so remove them
- @${RM} ${STAGEDIR}${DATADIR}/bin/*fsnotifier* ${STAGEDIR}${DATADIR}/bin/*.so
+# Remove non-native binaries
+post-extract:
+ @${RM} ${WRKSRC}/bin/*fsnotifier* ${WRKSRC}/bin/*.so ${WRKSRC}/bin/repair
+ @${FIND} ${WRKSRC}/lib ${WRKSRC}/plugins -name '*.so' -delete
+ @${FIND} ${WRKSRC}/lib ${WRKSRC}/plugins -type d -empty -delete
+ @${RM} -r ${WRKSRC}/plugins/cwm-plugin/quiche-native
+ @${RM} -r ${WRKSRC}/plugins/python/helpers/pydev/pydevd_attach_to_process
# Remove the bundled native Pty4J support libraries, they are replaced
-# by java/intellij-pty4j
- @${RM} -r ${STAGEDIR}${DATADIR}/lib/pty4j-native
+# by devel/jetbrains-pty4j
+ @${RM} -r ${WRKSRC}/lib/pty4j
# Remove bundled linux-only JRE
- @${RM} -r ${STAGEDIR}${DATADIR}/jbr
- @${RM} -r ${STAGEDIR}${DATADIR}/helpers/pydev/pydevd_attach_to_process
- ${INSTALL_SCRIPT} ${WRKDIR}/pycharm ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
- ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/
-# Use pty4j replacement provided by java/intellij-pty4j
- ${LN} -sf ${IDEA_HOME}/lib/libpty ${STAGEDIR}${DATADIR}/lib/pty4j-native
+ @${RM} -r ${WRKSRC}/jbr
+# TODO: Remove and enable fsnotifier when devel/libinotify is fixed
+# Disable filewatcher warning message on IDEA startup
+ ${ECHO} "idea.filewatcher.disabled=true" >> ${WRKSRC}/bin/idea.properties
# Use fsnotifier replacement provided by java/intellij-fsnotifier
- ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
+ ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${WRKSRC}/bin/idea.properties
+
+do-install:
+ @${MKDIR} ${STAGEDIR}${DATADIR}
+ cd "${WRKSRC}" && ${FIND} . | ${CPIO} -pdum -R root:wheel ${STAGEDIR}${DATADIR}
+ ${INSTALL_SCRIPT} ${WRKDIR}/pycharm ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+ ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}
+# Install FreeBSD native lib provided by devel/jna
+ @${MKDIR} ${WRKDIR}/jna
+ @(cd ${WRKDIR}/jna && ${JAR} xf ${JAVAJARDIR}/jna.jar com/sun/jna/freebsd-x86-64/libjnidispatch.so)
+ ${MKDIR} ${STAGEDIR}${DATADIR}/lib/jna/amd64
+ ${INSTALL_LIB} ${WRKDIR}/jna/com/sun/jna/freebsd-x86-64/libjnidispatch.so ${STAGEDIR}${DATADIR}/lib/jna/amd64/
+# Use pty4j replacement provided by devel/jetbrains-pty4j
+ ${MKDIR} ${STAGEDIR}${DATADIR}/lib/pty4j/freebsd/x86-64
+ ${LN} -sf ../../../../../jetbrains/pty4j/amd64/libpty.so ${STAGEDIR}${DATADIR}/lib/pty4j/freebsd/x86-64/libpty.so
+# Use sqlite replacement provided by devel/jetbrains-sqlite
+ ${MKDIR} ${STAGEDIR}${DATADIR}/lib/native/linux-x86_64
+ ${LN} -sf ../../../../jetbrains/sqlite/amd64/libsqliteij.so ${STAGEDIR}${DATADIR}/lib/native/linux-x86_64/libsqliteij.so
# Fix "Typeahead timeout is exceeded" error
${ECHO} "action.aware.typeAhead=false" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
# Fix slow render
diff --git a/devel/pycharm-pro/distinfo b/devel/pycharm-pro/distinfo
index 0b18c1334ba1..b6b3291eb197 100644
--- a/devel/pycharm-pro/distinfo
+++ b/devel/pycharm-pro/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1663923901
-SHA256 (pycharm-professional-2022.2.2.tar.gz) = b7bfb86026fba669bb22429ab0840afba5047680202762070cfbb1f181d53d0e
-SIZE (pycharm-professional-2022.2.2.tar.gz) = 697011515
+TIMESTAMP = 1692955579
+SHA256 (pycharm-professional-2023.2.1.tar.gz) = 8f7c0aca8f2a832164426393e55d543b3b56867f2497d8844547fb03e217f160
+SIZE (pycharm-professional-2023.2.1.tar.gz) = 758623797
diff --git a/devel/pycharm-pro/files/pkg-message.in b/devel/pycharm-pro/files/pkg-message.in
index 4f51a6347d23..1e6f444bc43f 100644
--- a/devel/pycharm-pro/files/pkg-message.in
+++ b/devel/pycharm-pro/files/pkg-message.in
@@ -2,11 +2,13 @@
{ type: install
message: <<EOM
There is experimental native (faster) file watching support which is
-enabled by default. Currently there are problems with watching large
-trees (>600 files). To disable it, edit
-%%DATADIR%%/bin/idea.properties and append:
+disabled by default. Currently there are problems with watching large
+trees. To enable edit %%DATADIR%%/bin/idea.properties and append
- idea.filewatcher.disabled=true
+ idea.filewatcher.disabled=false
+ idea.filewatcher.executable.path=%%IDEA_HOME%%/bin/fsnotifier
+
+Only enable fsnotifier if your projects have < 600 files.
EOM
}
]
diff --git a/devel/pycharm-pro/files/pycharm-pro.desktop.in b/devel/pycharm-pro/files/pycharm-pro.desktop.in
index 83558c328772..b5d509799fcd 100644
--- a/devel/pycharm-pro/files/pycharm-pro.desktop.in
+++ b/devel/pycharm-pro/files/pycharm-pro.desktop.in
@@ -5,7 +5,7 @@ Type=Application
Name=JetBrains PyCharm Professional Edition IDE
GenericName=JetBrains PyCharm Professional Edition IDE
Icon=%%DATADIR%%/bin/pycharm.svg
-Exec=%%DATADIR%%/bin/pycharm.sh
+Exec=%%PREFIX%%/bin/pycharm-pro
Comment=Develop with pleasure!
Terminal=false
StartupNotify=true
diff --git a/devel/pycharm-pro/files/pycharm.in b/devel/pycharm-pro/files/pycharm.in
index b06aa05a1f7d..f7c75269e99c 100644
--- a/devel/pycharm-pro/files/pycharm.in
+++ b/devel/pycharm-pro/files/pycharm.in
@@ -1,7 +1,6 @@
#!/bin/sh
-
-if [ -z "${JAVA_VERSION}" ]; then
- export JAVA_VERSION=11
-fi
-
+#
+# Wrapper to enforce usable Java versions
+#
+export JAVA_VERSION=%%JAVA_VERSION%%
exec "%%DATADIR%%/bin/pycharm.sh" "$@"
diff --git a/devel/pycharm-pro/pkg-plist b/devel/pycharm-pro/pkg-plist
index b02d6eb522e1..d393044d9a4a 100644
--- a/devel/pycharm-pro/pkg-plist
+++ b/devel/pycharm-pro/pkg-plist
@@ -3,16 +3,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/Install-Linux-tar.txt
%%DATADIR%%/bin/brokenPlugins.db
%%DATADIR%%/bin/format.sh
-%%DATADIR%%/bin/icons/icons-v1-1.0-d.db
-%%DATADIR%%/bin/icons/icons-v1-1.0.db
-%%DATADIR%%/bin/icons/icons-v1-1.25-d.db
-%%DATADIR%%/bin/icons/icons-v1-1.25.db
-%%DATADIR%%/bin/icons/icons-v1-1.5-d.db
-%%DATADIR%%/bin/icons/icons-v1-1.5.db
-%%DATADIR%%/bin/icons/icons-v1-2.0-d.db
-%%DATADIR%%/bin/icons/icons-v1-2.0.db
-%%DATADIR%%/bin/icons/icons-v1-2.5-d.db
-%%DATADIR%%/bin/icons/icons-v1-2.5.db
%%DATADIR%%/bin/idea.properties
%%DATADIR%%/bin/idea.vmoptions
%%DATADIR%%/bin/idea64.vmoptions
@@ -23,286 +13,81 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/bin/pycharm.svg
%%DATADIR%%/bin/pycharm64.vmoptions
%%DATADIR%%/bin/remote-dev-server.sh
-%%DATADIR%%/bin/repair
%%DATADIR%%/bin/restart.py
%%DATADIR%%/build.txt
%%DATADIR%%/debug-eggs/pydevd-pycharm.egg
%%DATADIR%%/help/ReferenceCard.pdf
%%DATADIR%%/help/ReferenceCardForMac.pdf
-%%DATADIR%%/lib/3rd-party-rt.jar
%%DATADIR%%/lib/annotations-java5.jar
+%%DATADIR%%/lib/app-client.jar
%%DATADIR%%/lib/app.jar
-%%DATADIR%%/lib/asm-9.2.jar
-%%DATADIR%%/lib/asm-analysis-9.2.jar
-%%DATADIR%%/lib/asm-commons-9.2.jar
-%%DATADIR%%/lib/asm-tree-9.2.jar
-%%DATADIR%%/lib/asm-util-9.2.jar
%%DATADIR%%/lib/async-profiler.jar
-%%DATADIR%%/lib/build-marker-PY-222.4167.33
+%%DATADIR%%/lib/bouncy-castle.jar
+%%DATADIR%%/lib/build-marker-PY-232.9559.58
%%DATADIR%%/lib/byte-buddy-agent.jar
%%DATADIR%%/lib/cds/classesLogAgent.jar
-%%DATADIR%%/lib/dbus-java-3.2.1.jar
%%DATADIR%%/lib/error-prone-annotations.jar
%%DATADIR%%/lib/external-system-rt.jar
%%DATADIR%%/lib/externalProcess-rt.jar
%%DATADIR%%/lib/forms_rt.jar
%%DATADIR%%/lib/groovy.jar
-%%DATADIR%%/lib/grpc-netty-shaded.jar
-%%DATADIR%%/lib/intellij-coverage-agent-1.0.673.jar
+%%DATADIR%%/lib/grpc.jar
+%%DATADIR%%/lib/intellij-coverage-agent-1.0.723.jar
%%DATADIR%%/lib/intellij-test-discovery.jar
-%%DATADIR%%/lib/java-utils-1.0.6.jar
%%DATADIR%%/lib/jetbrains-annotations.jar
-%%DATADIR%%/lib/jffi-1.3.9-native.jar
-%%DATADIR%%/lib/jffi-1.3.9.jar
-%%DATADIR%%/lib/jna.jar
-%%DATADIR%%/lib/jnr-a64asm-1.0.0.jar
-%%DATADIR%%/lib/jnr-ffi-2.2.12.jar
-%%DATADIR%%/lib/jnr-x86asm-1.0.2.jar
+%%DATADIR%%/lib/jna/amd64/libjnidispatch.so
%%DATADIR%%/lib/jps-model.jar
%%DATADIR%%/lib/jsch-agent.jar
%%DATADIR%%/lib/junit4.jar
-%%DATADIR%%/lib/junixsocket-core.jar
-%%DATADIR%%/lib/lz4-java.jar
-%%DATADIR%%/lib/platform-objectSerializer-annotations.jar
-%%DATADIR%%/lib/platform-statistics-devkit.jar
+%%DATADIR%%/lib/lib-client.jar
+%%DATADIR%%/lib/lib.jar
+%%DATADIR%%/lib/modules.jar
+%%DATADIR%%/lib/native/linux-x86_64/libsqliteij.so
+%%DATADIR%%/lib/platform-loader.jar
+%%DATADIR%%/lib/product-client.jar
+%%DATADIR%%/lib/product.jar
%%DATADIR%%/lib/protobuf.jar
-%%DATADIR%%/lib/pty4j-native
-%%DATADIR%%/lib/pty4j.jar
-%%DATADIR%%/lib/rd-core.jar
-%%DATADIR%%/lib/rd-framework.jar
-%%DATADIR%%/lib/rd-swing.jar
-%%DATADIR%%/lib/rd-text.jar
+%%DATADIR%%/lib/pty4j/freebsd/x86-64/libpty.so
+%%DATADIR%%/lib/rd.jar
%%DATADIR%%/lib/src/pycharm-openapi-src.zip
%%DATADIR%%/lib/stats.jar
%%DATADIR%%/lib/testFramework.jar
+%%DATADIR%%/lib/util-8.jar
%%DATADIR%%/lib/util.jar
%%DATADIR%%/lib/util_rt.jar
-%%DATADIR%%/lib/winp.jar
-%%DATADIR%%/license/XStream_license.txt
-%%DATADIR%%/license/ant_license.txt
-%%DATADIR%%/license/asm_license.txt
-%%DATADIR%%/license/eclipse_license.txt
-%%DATADIR%%/license/eclipse_license2.txt
-%%DATADIR%%/license/gson_license.txt
-%%DATADIR%%/license/imgscalr_license.txt
%%DATADIR%%/license/javahelp_license.txt
%%DATADIR%%/license/javolution_license.txt
-%%DATADIR%%/license/jaxb_license.txt
-%%DATADIR%%/license/jaxen_license.txt
-%%DATADIR%%/license/jdom_license.txt
-%%DATADIR%%/license/jgoodies_forms_license.txt
-%%DATADIR%%/license/junit_license.txt
-%%DATADIR%%/license/kryo-license.txt
-%%DATADIR%%/license/log4j_license.txt
-%%DATADIR%%/license/microba_license.txt
-%%DATADIR%%/license/miglayout_swing_license.txt
-%%DATADIR%%/license/nanoxml_license.txt
-%%DATADIR%%/license/oromatcher_license.txt
-%%DATADIR%%/license/picoContainer_license.txt
%%DATADIR%%/license/saxon-conditions.html
-%%DATADIR%%/license/swingx_license.txt
%%DATADIR%%/license/third-party-libraries.html
-%%DATADIR%%/license/trove4j_license.txt
-%%DATADIR%%/license/winp_license.txt
-%%DATADIR%%/license/xerces_license.txt
-%%DATADIR%%/license/xmlrpc_license.txt
+%%DATADIR%%/license/third-party-libraries.json
%%DATADIR%%/license/yourkit-license-redist.txt
-%%DATADIR%%/plugins/AngularJS/lib/AngularJS.jar
-%%DATADIR%%/plugins/AngularJS/ngCli/commands/generate-impl.js
-%%DATADIR%%/plugins/AngularJS/ngCli/commands/generate.json
-%%DATADIR%%/plugins/AngularJS/ngCli/generate.js
-%%DATADIR%%/plugins/AngularJS/ngCli/generateVirtual.js
-%%DATADIR%%/plugins/AngularJS/ngCli/rerouteModulesToProject.js
-%%DATADIR%%/plugins/AngularJS/ngCli/runner.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsInfoProvider.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider140.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider60.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider62.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider70.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider80.js
-%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider90.js
-%%DATADIR%%/plugins/CSS/lib/css-openapi.jar
-%%DATADIR%%/plugins/CSS/lib/css.jar
%%DATADIR%%/plugins/DatabaseTools/lib/aether-dependency-resolver.jar
+%%DATADIR%%/plugins/DatabaseTools/lib/database-minicats.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-openapi.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-plugin.jar
%%DATADIR%%/plugins/DatabaseTools/lib/jdbc-console.jar
-%%DATADIR%%/plugins/Docker/lib/Docker.jar
-%%DATADIR%%/plugins/IntelliLang/lib/IntelliLang.jar
-%%DATADIR%%/plugins/IntelliLang/lib/java-langInjection-jps.jar
-%%DATADIR%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/debugConnectionForwarder.js
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/debugConnector.js
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-9-rt.jar
-%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-rt.jar
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-stringifier.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-tree.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-util.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/lib/grunt-intellij-util.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/tasks/grunt-tasks-fetcher.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-reporter.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-test-results-processor.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-util.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/node-core-modules/node-core-modules-loader.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/nodejs/library/yarn/intellij-yarn-pnp-deps-tree-loader.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/bin/batch-matcher
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/CHANGELOG.md
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/LICENSE
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/README.md
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/bin/semver.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/package.json
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/range.bnf
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/semver.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package-lock.json
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package.json
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/semver-range-matcher.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/test/.gitignore
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/test/package.json
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/test/version-range-test.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/jasmine-reporter.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-cli.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-config.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-jasmine-reporter.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-plugin.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-stringifier.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-tree.js
-%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-util.js
-%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-6a850e46a072.ijx
-%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-6a850e46a072.txt
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/browser.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/cancellationToken.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/es2019decorators.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/flow.utilities.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.collection.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.core.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.generator.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.iterable.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.promise.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.proxy.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.reflect.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.wellknown.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.array.include.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.object.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asyncgenerator.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.array.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.object.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.bigint.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.date.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.number.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.promise.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.sharedmemory.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.promise.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.weakref.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.array.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.error.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.object.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2022.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es5.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es6.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.full.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.string.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.weakref.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.scripthost.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.iterable.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/react.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/tsserverlibrary.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/typesMap.json
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/watchGuard.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/websql.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/xpath.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/bom.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/core.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/dom.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/indexeddb.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/intl.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/node.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react-dom.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/serviceworkers.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/streams.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/webassembly.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/js-language-service.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ide-watcher.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/logger-impl.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/out-path-process.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/service-loader.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/compile-info-holder.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-common-session-1x_21.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-1x.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-21.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-1x.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-21.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts15impl.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-default-options.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-plugin.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-latest.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-provider.js
-%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/util.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/.gitignore
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-api.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-common.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin-provider.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint8-plugin.js
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package-lock.json
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package.json
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-api.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-common.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin-provider.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint8-plugin.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/typings/js-lanuage-api.d.ts
-%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/tsconfig.json
-%%DATADIR%%/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar
-%%DATADIR%%/plugins/PerforceIntegration/lib/PerforceIntegration.jar
-%%DATADIR%%/plugins/cloud-config/lib/cloud-config.jar
-%%DATADIR%%/plugins/coffeescript-core/lib/coffeescript-core.jar
+%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-connector-basic.jar
+%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-file.jar
+%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-http.jar
+%%DATADIR%%/plugins/angularJS/lib/angularJS.jar
+%%DATADIR%%/plugins/angularJS/ngCli/commands/generate-impl.js
+%%DATADIR%%/plugins/angularJS/ngCli/commands/generate.json
+%%DATADIR%%/plugins/angularJS/ngCli/generate.js
+%%DATADIR%%/plugins/angularJS/ngCli/generateVirtual.js
+%%DATADIR%%/plugins/angularJS/ngCli/rerouteModulesToProject.js
+%%DATADIR%%/plugins/angularJS/ngCli/runner.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsInfoProvider.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider140.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider60.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider62.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider70.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider80.js
+%%DATADIR%%/plugins/angularJS/ngCli/schematicsProvider90.js
+%%DATADIR%%/plugins/charts/lib/charts.jar
+%%DATADIR%%/plugins/cloudConfig/lib/cloudConfig.jar
+%%DATADIR%%/plugins/clouds-docker-gateway/lib/clouds-docker-gateway.jar
+%%DATADIR%%/plugins/clouds-docker-impl/lib/clouds-docker-impl.jar
%%DATADIR%%/plugins/color-scheme-github/lib/color-scheme-github.jar
%%DATADIR%%/plugins/color-scheme-monokai/lib/color-scheme-monokai.jar
%%DATADIR%%/plugins/color-scheme-twilight/lib/color-scheme-twilight.jar
@@ -310,6 +95,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/completionMlRanking/lib/completionMlRanking.jar
%%DATADIR%%/plugins/configurationScript/lib/configurationScript.jar
%%DATADIR%%/plugins/copyright/lib/copyright.jar
+%%DATADIR%%/plugins/css-impl/lib/css-impl.jar
%%DATADIR%%/plugins/cwm-plugin-projector/lib/cwm-plugin-projector.jar
%%DATADIR%%/plugins/cwm-plugin-projector/lib/projector/projector.jar
%%DATADIR%%/plugins/cwm-plugin/jre-build.txt
@@ -321,7 +107,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin-terminal.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-common.jar
-%%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-ssh.jar
%%DATADIR%%/plugins/cwm-plugin/lib/ice4j.jar
%%DATADIR%%/plugins/cwm-plugin/lib/java-websocket.jar
%%DATADIR%%/plugins/cwm-plugin/lib/jitsi-utils.jar
@@ -331,13 +116,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/cwm-plugin/lib/projector-client-common.jar
%%DATADIR%%/plugins/cwm-plugin/lib/projector-client-swing.jar
%%DATADIR%%/plugins/cwm-plugin/lib/quiche-jna-stubs.jar
-%%DATADIR%%/plugins/cwm-plugin/lib/rd-text.jar
%%DATADIR%%/plugins/cwm-plugin/lib/tls-channel.jar
-%%DATADIR%%/plugins/cwm-plugin/quiche-native/darwin-aarch64/libquiche.dylib
-%%DATADIR%%/plugins/cwm-plugin/quiche-native/darwin-x86-64/libquiche.dylib
-%%DATADIR%%/plugins/cwm-plugin/quiche-native/linux-aarch64/libquiche.so
-%%DATADIR%%/plugins/cwm-plugin/quiche-native/linux-x86-64/libquiche.so
-%%DATADIR%%/plugins/cwm-plugin/quiche-native/win32-x86-64/quiche.dll
%%DATADIR%%/plugins/dev/lib/dev.jar
%%DATADIR%%/plugins/dynamicPluginsTests-performanceTesting/lib/dynamicPluginsTests-performanceTesting.jar
%%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar
@@ -352,40 +131,274 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/gateway-plugin/lib/remote-dev-workers/remote-dev-worker-linux-amd64
%%DATADIR%%/plugins/gateway-plugin/lib/remote-dev-workers/remote-dev-worker-linux-arm64
%%DATADIR%%/plugins/gateway-plugin/lib/remote-dev-workers/remote-dev-worker-windows-amd64.exe
+%%DATADIR%%/plugins/gateway-plugin/lib/remote-dev-workers/remote-dev-worker-windows-arm64.exe
%%DATADIR%%/plugins/gateway-plugin/resources/gateway.vmoptions
%%DATADIR%%/plugins/gateway-terminal/lib/gateway-terminal.jar
%%DATADIR%%/plugins/gherkin/lib/gherkin.jar
-%%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar
-%%DATADIR%%/plugins/git4idea/lib/git4idea.jar
-%%DATADIR%%/plugins/github/lib/github.jar
+%%DATADIR%%/plugins/gnuGetText/lib/gnuGetText.jar
%%DATADIR%%/plugins/grazie/lib/grazie.jar
-%%DATADIR%%/plugins/haml/lib/haml.jar
-%%DATADIR%%/plugins/hg4idea/lib/hg4idea.jar
-%%DATADIR%%/plugins/htmltools/lib/htmltools.jar
-%%DATADIR%%/plugins/indexing-shared-ultimate/lib/indexing-shared-ultimate.jar
+%%DATADIR%%/plugins/grid-core-impl/lib/grid-core.jar
+%%DATADIR%%/plugins/grid-core-impl/lib/jdbc-console-types.jar
+%%DATADIR%%/plugins/grid-impl/lib/grid.jar
+%%DATADIR%%/plugins/html-tools/lib/html-tools.jar
+%%DATADIR%%/plugins/indexing-shared-ultimate-plugin-bundled/lib/indexing-shared-ultimate-plugin-bundled.jar
%%DATADIR%%/plugins/indexing-shared/lib/indexing-shared.jar
-%%DATADIR%%/plugins/ini4idea/lib/ini4idea.jar
+%%DATADIR%%/plugins/ini/lib/ini.jar
+%%DATADIR%%/plugins/javascript-debugger/debugConnectionForwarder.js
+%%DATADIR%%/plugins/javascript-debugger/debugConnector.js
+%%DATADIR%%/plugins/javascript-debugger/debugConnectorPortPublisher.js
+%%DATADIR%%/plugins/javascript-debugger/debugConnectorUtil.js
+%%DATADIR%%/plugins/javascript-debugger/lib/ChromeConnector.jar
+%%DATADIR%%/plugins/javascript-debugger/lib/FirefoxConnector.jar
+%%DATADIR%%/plugins/javascript-debugger/lib/javascript-debugger.jar
+%%DATADIR%%/plugins/javascript-debugger/lib/nashorn-debugger-9-rt.jar
+%%DATADIR%%/plugins/javascript-debugger/lib/nashorn-debugger-rt.jar
+%%DATADIR%%/plugins/javascript-impl/helpers/base-test-reporter/intellij-stringifier.js
+%%DATADIR%%/plugins/javascript-impl/helpers/base-test-reporter/intellij-tree.js
+%%DATADIR%%/plugins/javascript-impl/helpers/base-test-reporter/intellij-util.js
+%%DATADIR%%/plugins/javascript-impl/helpers/buildTools/grunt/lib/grunt-intellij-util.js
+%%DATADIR%%/plugins/javascript-impl/helpers/buildTools/grunt/tasks/grunt-tasks-fetcher.js
+%%DATADIR%%/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js
+%%DATADIR%%/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-reporter.js
+%%DATADIR%%/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js
+%%DATADIR%%/plugins/javascript-impl/helpers/jest-intellij/lib/jest-intellij-util.js
+%%DATADIR%%/plugins/javascript-impl/helpers/node-core-modules/node-core-modules-loader.js
+%%DATADIR%%/plugins/javascript-impl/helpers/nodejs/library/yarn/intellij-yarn-pnp-deps-tree-loader.js
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/bin/batch-matcher
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/CHANGELOG.md
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/LICENSE
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/README.md
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/bin/semver.js
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/package.json
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/range.bnf
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/node_modules/semver/semver.js
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/package-lock.json
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/package.json
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/semver-range-matcher.js
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/test/.gitignore
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/test/package.json
+%%DATADIR%%/plugins/javascript-impl/helpers/package-version-range-matcher/test/version-range-test.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/jasmine-reporter.d.ts
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-cli.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-config.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-jasmine-reporter.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-plugin.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-stringifier.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-tree.js
+%%DATADIR%%/plugins/javascript-impl/helpers/protractor-intellij/lib/protractor-intellij-util.js
+%%DATADIR%%/plugins/javascript-impl/helpers/vitest-intellij/node_modules/vitest-intellij-reporter-safe.js
+%%DATADIR%%/plugins/javascript-impl/helpers/vitest-intellij/vitest-intellij-reporter.js
+%%DATADIR%%/plugins/javascript-impl/helpers/vitest-intellij/vitest-intellij-util.js
+%%DATADIR%%/plugins/javascript-impl/js/js-predefined-1d06a55b98c1-8314e18161f9.ijx
+%%DATADIR%%/plugins/javascript-impl/js/js-predefined-1d06a55b98c1-8314e18161f9.txt
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/browser.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/cancellationToken.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/diagnosticMessages.json
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/es2019decorators.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/flow.utilities.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.decorators.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.decorators.legacy.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.dom.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.collection.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.core.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.generator.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.iterable.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.promise.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.proxy.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.reflect.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.symbol.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2015.symbol.wellknown.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.array.include.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2016.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.object.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.asyncgenerator.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.array.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.object.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.bigint.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.date.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.number.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.promise.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.sharedmemory.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.promise.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2021.weakref.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.array.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.error.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.object.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.regexp.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.sharedmemory.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2022.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2023.array.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2023.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es2023.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es5.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.es6.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.full.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.string.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.esnext.weakref.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.scripthost.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/lib.webworker.iterable.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/react.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/tsserver.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/tsserverlibrary.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/typesMap.json
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/typingsInstaller.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/watchGuard.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/websql.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/external/xpath.d.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/bom.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/core.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/dom.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/indexeddb.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/intl.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/node.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/react-dom.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/react.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/serviceworkers.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/streams.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/flow/webassembly.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/js-language-service.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/js-lanuage-api.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/.gitignore
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ide-get-element-type.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ide-watcher.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/init.ts
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/logger-impl.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/node_modules/tsc-ide-plugin/ide-get-element-type.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/node_modules/tsc-ide-plugin/index.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/node_modules/tsc-ide-plugin/package.json
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/out-path-process.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/service-loader.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/compile-info-holder.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-common-session-1x_21.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-project-service-1x.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-project-service-21.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-session-1x.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts-session-21.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/session/old/ts15impl.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-default-options.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-plugin.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-session-latest.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/ts-session-provider.js
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/tsconfig.json
+%%DATADIR%%/plugins/javascript-impl/jsLanguageServicesImpl/typescript/util.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/.gitignore
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/eslint-api.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/eslint-common.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/eslint-plugin-provider.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/eslint-plugin.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/eslint8-plugin.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/bin/standard17-plugin.js
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/package-lock.json
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/package.json
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/eslint-api.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/eslint-common.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/eslint-plugin-provider.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/eslint-plugin.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/eslint8-plugin.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/standard17-plugin.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/src/typings/js-lanuage-api.d.ts
+%%DATADIR%%/plugins/javascript-impl/languageService/eslint/tsconfig.json
+%%DATADIR%%/plugins/javascript-impl/lib/javascript-impl.jar
+%%DATADIR%%/plugins/javascript-intentions/lib/javascript-intentions.jar
+%%DATADIR%%/plugins/jsonpath/lib/jsonpath.jar
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/LICENSE.txt
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/README.md
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/fakePlugin.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellij.conf.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijCli.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijCoverageReporter.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijPlugin.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijReporter.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijRunner.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/intellijUtil.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/karma-browser-tracker.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/karma-intellij-debug.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/karma-intellij-parameters.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/kjhtml/intellij-restore-specFilter-after-kjhtml.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/kjhtml/intellij-save-specFilter-before-kjhtml.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/kjhtml/karma-intellij-adapter.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/kjhtml/kjhtml-specFilter-patch.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/ng-template.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/lib/tree.js
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/package.json
+%%DATADIR%%/plugins/karma/js_reporter/karma-intellij/static/delay-karma-start-in-debug-mode.js
+%%DATADIR%%/plugins/karma/lib/karma.jar
%%DATADIR%%/plugins/less/lib/less.jar
-%%DATADIR%%/plugins/localization/lib/localization.jar
%%DATADIR%%/plugins/markdown/lib/markdown.jar
%%DATADIR%%/plugins/microservices-ui/lib/microservices-ui.jar
-%%DATADIR%%/plugins/performanceTesting/bin/libyjpagent.dylib
-%%DATADIR%%/plugins/performanceTesting/bin/libyjpagent.so
-%%DATADIR%%/plugins/performanceTesting/bin/libyjpagent64.so
-%%DATADIR%%/plugins/performanceTesting/bin/yjpagent.dll
-%%DATADIR%%/plugins/performanceTesting/bin/yjpagent64.dll
-%%DATADIR%%/plugins/performanceTesting/lib/byte-buddy-agent.jar
+%%DATADIR%%/plugins/nextjs/lib/nextjs.jar
+%%DATADIR%%/plugins/nodeJS-remoteInterpreter/lib/nodeJS-remoteInterpreter.jar
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/.gitignore
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/LICENSE
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/README.md
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/mocha-intellij-stringifier.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/mochaIntellijReporter.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/mochaIntellijTree.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/mochaIntellijUtil.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/mochaTreeUtil.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/lib/single-element-queue.js
+%%DATADIR%%/plugins/nodeJS/js/mocha-intellij/package.json
+%%DATADIR%%/plugins/nodeJS/js/nodeunit/nodeunit-intellij-starter.js
+%%DATADIR%%/plugins/nodeJS/lib/nodeJS.jar
+%%DATADIR%%/plugins/packageChecker/lib/packageChecker.jar
+%%DATADIR%%/plugins/performanceTesting-async/lib/performanceTesting-async.jar
%%DATADIR%%/plugins/performanceTesting/lib/performanceTesting.jar
-%%DATADIR%%/plugins/performanceTesting/lib/yjp-controller-api-redist.jar
%%DATADIR%%/plugins/platform-images/lib/platform-images.jar
+%%DATADIR%%/plugins/platform-langInjection/lib/IntelliLang.jar
+%%DATADIR%%/plugins/platform-langInjection/lib/java-langInjection-jps.jar
+%%DATADIR%%/plugins/platform-langInjection/lib/platform-langInjection.jar
+%%DATADIR%%/plugins/postcss/lib/postcss.jar
+%%DATADIR%%/plugins/prettierJS/lib/prettierJS.jar
+%%DATADIR%%/plugins/prettierJS/prettierLanguageService/convert-prettier-config.js
+%%DATADIR%%/plugins/prettierJS/prettierLanguageService/prettier-plugin-provider.js
+%%DATADIR%%/plugins/prettierJS/prettierLanguageService/prettier-plugin.js
%%DATADIR%%/plugins/properties/lib/properties.jar
%%DATADIR%%/plugins/puppet/lib/puppet.jar
%%DATADIR%%/plugins/puppet/lib/stubs/builtin.pp
%%DATADIR%%/plugins/puppet/lib/stubs/builtin_variables.pp
%%DATADIR%%/plugins/puppet/lib/stubs/stub_functions.rb
+%%DATADIR%%/plugins/pycharm-pro-customization/lib/pycharm-pro-customization.jar
%%DATADIR%%/plugins/pycharm-pro-sharedIndexes-bundled/lib/pycharm-pro-sharedIndexes-bundled.jar
-%%DATADIR%%/plugins/pycharm-pro-sharedIndexes-bundled/python-sdk/python-sdk-01a76a212fcb-20ae17c0ad73.ijx
-%%DATADIR%%/plugins/pycharm-pro-sharedIndexes-bundled/python-sdk/python-sdk-01a76a212fcb-20ae17c0ad73.txt
+%%DATADIR%%/plugins/pycharm-pro-sharedIndexes-bundled/python-sdk/python-sdk-31761ecb2e0b-0a4b8ce1ca43.ijx
+%%DATADIR%%/plugins/pycharm-pro-sharedIndexes-bundled/python-sdk/python-sdk-31761ecb2e0b-0a4b8ce1ca43.txt
%%DATADIR%%/plugins/python-pyscript/lib/python-pyscript.jar
%%DATADIR%%/plugins/python-sharedIndexes-downloadable/lib/python-sharedIndexes-downloadable.jar
%%DATADIR%%/plugins/python-sharedIndexes/lib/python-sharedIndexes.jar
@@ -541,38 +554,122 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/conda_packaging_tool.py
%%DATADIR%%/plugins/python/helpers/coverage_runner/__init__.py
%%DATADIR%%/plugins/python/helpers/coverage_runner/run_coverage.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/__init__.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/__init__.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/__main__.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/annotate.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/backunittest.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/backward.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/bytecode.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/cmdline.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/collector.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/config.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/control.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/data.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/debug.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/env.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/execfile.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/files.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/html.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/misc.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/multiproc.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/parser.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/phystokens.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/pickle2json.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/plugin.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/plugin_support.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/python.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/pytracer.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/report.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/results.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/summary.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/templite.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/version.py
-%%DATADIR%%/plugins/python/helpers/coveragepy/coverage/xmlreport.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/__init__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/__init__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/__main__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/annotate.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/bytecode.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/cmdline.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/collector.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/config.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/context.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/control.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/datastack.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/datastack.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/filedisp.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/filedisp.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/module.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/stats.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/tracer.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/tracer.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/ctracer/util.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/data.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/debug.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/disposition.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/env.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/exceptions.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/execfile.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/files.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/fullcoverage/encodings.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/html.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/coverage_html.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/favicon_32.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/index.html
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/keybd_closed.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/keybd_open.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/pyfile.html
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/style.css
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/htmlfiles/style.scss
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/inorout.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/jsonreport.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/lcovreport.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/misc.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/multiproc.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/numbits.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/parser.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/phystokens.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/plugin.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/plugin_support.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/python.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/pytracer.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/report.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/results.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/sqldata.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/summary.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/templite.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/tomlconfig.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/version.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_new/coverage/xmlreport.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/__init__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/__init__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/__main__.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/annotate.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/backward.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/bytecode.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/cmdline.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/collector.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/config.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/context.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/control.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/datastack.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/datastack.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/filedisp.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/filedisp.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/module.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/stats.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/tracer.c
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/tracer.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/ctracer/util.h
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/data.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/debug.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/disposition.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/env.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/execfile.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/files.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/fullcoverage/encodings.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/html.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/coverage_html.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/favicon_32.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/index.html
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/jquery.ba-throttle-debounce.min.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/jquery.hotkeys.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/jquery.isonscreen.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/jquery.min.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/jquery.tablesorter.min.js
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/keybd_closed.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/keybd_open.png
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/pyfile.html
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/style.css
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/htmlfiles/style.scss
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/inorout.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/jsonreport.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/misc.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/multiproc.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/numbits.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/parser.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/phystokens.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/plugin.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/plugin_support.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/python.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/pytracer.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/report.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/results.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/sqldata.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/summary.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/templite.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/tomlconfig.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/version.py
+%%DATADIR%%/plugins/python/helpers/coveragepy_old/coverage/xmlreport.py
%%DATADIR%%/plugins/python/helpers/docstring_formatter.py
%%DATADIR%%/plugins/python/helpers/epydoc/__init__.py
%%DATADIR%%/plugins/python/helpers/epydoc/apidoc.py
@@ -602,6 +699,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/epydoc/markup/pyval_repr.py
%%DATADIR%%/plugins/python/helpers/epydoc/markup/restructuredtext.py
%%DATADIR%%/plugins/python/helpers/epydoc/util.py
+%%DATADIR%%/plugins/python/helpers/exec.txt
%%DATADIR%%/plugins/python/helpers/extra_syspath.py
%%DATADIR%%/plugins/python/helpers/generator3/__init__.py
%%DATADIR%%/plugins/python/helpers/generator3/__main__.py
@@ -1011,6 +1109,8 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_runner_tools.py
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_serial_tree_manager.py
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_tox_runner.py
+%%DATADIR%%/plugins/python/helpers/pycharm/_jb_tox_runner_3.py
+%%DATADIR%%/plugins/python/helpers/pycharm/_jb_tox_runner_4.py
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_trialtest_runner.py
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_unittest_runner.py
%%DATADIR%%/plugins/python/helpers/pycharm/_jb_utils.py
@@ -1134,6 +1234,9 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/_pydev_runfiles/pydev_runfiles_pytest2.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydev_runfiles/pydev_runfiles_unittest.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydev_runfiles/pydev_runfiles_xml_rpc.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_asyncio_util/__init__.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_asyncio_util/pydevd_asyncio_utils.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_asyncio_util/pydevd_nest_asyncio.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/__init__.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevconsole_code_for_ironpython.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_additional_thread_info.py
@@ -1154,16 +1257,15 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython.c
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython.pxd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython.pyx
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_27_64.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_310_64.cpython-310-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_36_64.cpython-36m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_37_64.cpython-37m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_38_64.cpython-38-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_darwin_39_64.cpython-39-darwin.so
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_312.c
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_32.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_64.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_310_32.cp310-win32.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_310_64.cp310-win_amd64.pyd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_311_32.cp311-win32.pyd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_311_64.cp311-win_amd64.pyd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_312_32.cp312-win32.pyd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_312_64.cp312-win_amd64.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_36_32.cp36-win32.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_36_64.cp36-win_amd64.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_37_32.cp37-win32.pyd
@@ -1180,14 +1282,17 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_extension_api.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_extension_utils.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_frame.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_frame_type_handler.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_frame_utils.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_import_class.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_io.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_ipython_console_output.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_kill_all_pydevd_threads.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_plugin_utils.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_process_net_command.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_referrers.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_reload.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_repr_utils.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_resolver.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_save_locals.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_signature.py
@@ -1204,39 +1309,19 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_vars.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_vm_type.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/pydevd_xml.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/tables/__init__.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/tables/pydevd_pandas.py
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/__init__.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/internal_pycore.h
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_eval_main.py
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator.c
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator.pxd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator.pyx
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.c
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp310-win32.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp310-win_amd64.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp36-win32.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp36-win_amd64.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp37-win32.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp37-win_amd64.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp38-win32.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp38-win_amd64.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp39-win32.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cp39-win_amd64.pyd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cpython-310-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cpython-36m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cpython-37m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cpython-38-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.cpython-39-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.pxd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_common.pyx
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_darwin_310_64.cpython-310-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_darwin_36_64.cpython-36m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_darwin_37_64.cpython-37m-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_darwin_38_64.cpython-38-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_darwin_39_64.cpython-39-darwin.so
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_py39_and_above.c
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_py39_and_above.pxd
-%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_py39_and_above.pyx
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_36_38.c
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_36_38.pxd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_36_38.pyx
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_39_310.c
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_39_310.pxd
+%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_39_310.pyx
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_win32_310_32.cp310-win32.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_win32_310_64.cp310-win_amd64.pyd
%%DATADIR%%/plugins/python/helpers/pydev/_pydevd_frame_eval/pydevd_frame_evaluator_win32_36_32.cp36-win32.pyd
@@ -1255,13 +1340,14 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/build_binaries_windows.py
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/build_common.py
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/generate_code.py
+%%DATADIR%%/plugins/python/helpers/pydev/build_tools/generate_debugger_import_errors/generate_import_error.py
+%%DATADIR%%/plugins/python/helpers/pydev/build_tools/generate_debugger_import_errors/generation_utils.py
+%%DATADIR%%/plugins/python/helpers/pydev/build_tools/generate_debugger_import_errors/start_generation.py
+%%DATADIR%%/plugins/python/helpers/pydev/build_tools/msvccompiler_wrapper.py
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/names_to_rename.py
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/pydevd_release_process.txt
%%DATADIR%%/plugins/python/helpers/pydev/build_tools/rename_pep8.py
-%%DATADIR%%/plugins/python/helpers/pydev/conftest.py
%%DATADIR%%/plugins/python/helpers/pydev/interpreterInfo.py
-%%DATADIR%%/plugins/python/helpers/pydev/jython_test_deps/ant.jar
-%%DATADIR%%/plugins/python/helpers/pydev/jython_test_deps/junit.jar
%%DATADIR%%/plugins/python/helpers/pydev/merge_pydev_pycharm.txt
%%DATADIR%%/plugins/python/helpers/pydev/pycharm-console.rst
%%DATADIR%%/plugins/python/helpers/pydev/pycharm-readme.rst
@@ -1292,77 +1378,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/pydev/pydev_sitecustomize/sitecustomize.py
%%DATADIR%%/plugins/python/helpers/pydev/pydevconsole.py
%%DATADIR%%/plugins/python/helpers/pydev/pydevd.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/README.txt
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/_always_live_program.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/_check.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/_test_attach_to_process.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/_test_attach_to_process_linux.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/add_code_to_python_process.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_amd64.dll
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_linux_amd64.so
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_linux_x86.so
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_pydevd.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_script.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_x86.dll
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_x86.dylib
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/attach_x86_64.dylib
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/py_settrace.hpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/py_settrace_37.hpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/py_utils.hpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/py_version.hpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/python.h
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/common/ref_utils.hpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/linux_and_mac/.gitignore
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/linux_and_mac/attach.cpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/linux_and_mac/compile_linux.sh
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/linux_and_mac/compile_mac.sh
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/__init__.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/breakpoint.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/compat.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/crash.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/debug.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/disasm.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/event.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/interactive.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/module.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/README
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/__init__.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/do_example.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/do_exchain.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/do_exploitable.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/do_symfix.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/process.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/registry.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/search.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/sql.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/system.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/textio.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/thread.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/util.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/__init__.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/advapi32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/context_amd64.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/context_i386.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/dbghelp.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/defines.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/gdi32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/kernel32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/ntdll.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/peb_teb.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/psapi.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/shell32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/shlwapi.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/user32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/version.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/window.py
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/attach.cpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/attach.h
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/compile_windows.bat
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/stdafx.cpp
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/stdafx.h
-%%DATADIR%%/plugins/python/helpers/pydev/pydevd_attach_to_process/windows/targetver.h
%%DATADIR%%/plugins/python/helpers/pydev/pydevd_concurrency_analyser/__init__.py
%%DATADIR%%/plugins/python/helpers/pydev/pydevd_concurrency_analyser/pydevd_concurrency_logger.py
%%DATADIR%%/plugins/python/helpers/pydev/pydevd_concurrency_analyser/pydevd_thread_wrappers.py
@@ -1633,7 +1648,10 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/daily.yml
%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/mypy_primer.yml
%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/mypy_primer_comment.yml
+%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/stubsabot.yml
+%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/stubtest_stdlib.yml
%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/tests.yml
+%%DATADIR%%/plugins/python/helpers/typeshed/.github/workflows/typecheck_typeshed_code.yml
%%DATADIR%%/plugins/python/helpers/typeshed/.gitignore
%%DATADIR%%/plugins/python/helpers/typeshed/.pre-commit-config.yaml
%%DATADIR%%/plugins/python/helpers/typeshed/CONTRIBUTING.md
@@ -1643,10 +1661,11 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/pyproject.toml
%%DATADIR%%/plugins/python/helpers/typeshed/pyrightconfig.json
%%DATADIR%%/plugins/python/helpers/typeshed/pyrightconfig.stricter.json
+%%DATADIR%%/plugins/python/helpers/typeshed/pyrightconfig.testcases.json
%%DATADIR%%/plugins/python/helpers/typeshed/requirements-tests.txt
%%DATADIR%%/plugins/python/helpers/typeshed/scripts/create_baseline_stubs.py
%%DATADIR%%/plugins/python/helpers/typeshed/scripts/generate_proto_stubs.sh
-%%DATADIR%%/plugins/python/helpers/typeshed/scripts/update-stubtest-allowlist.py
+%%DATADIR%%/plugins/python/helpers/typeshed/scripts/stubsabot.py
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/@python2/BaseHTTPServer.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/@python2/CGIHTTPServer.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/@python2/ConfigParser.pyi
@@ -2064,6 +2083,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_compat_pickle.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_compression.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_csv.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_ctypes.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_curses.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_decimal.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/_dummy_thread.pyi
@@ -2107,7 +2127,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/base_futures.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/base_subprocess.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/base_tasks.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/compat.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/constants.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/coroutines.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/events.pyi
@@ -2129,6 +2148,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/taskgroups.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/tasks.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/threads.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/timeouts.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/transports.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/trsock.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/asyncio/unix_events.pyi
@@ -2175,6 +2195,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/ctypes/wintypes.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/curses/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/curses/ascii.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/curses/has_key.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/curses/panel.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/curses/textpad.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/dataclasses.pyi
@@ -2336,7 +2357,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/logging/handlers.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/lzma.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/macpath.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/macurl2path.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/mailbox.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/mailcap.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/marshal.pyi
@@ -2354,15 +2374,24 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/context.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/dummy/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/dummy/connection.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/forkserver.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/heap.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/managers.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/pool.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/popen_fork.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/popen_forkserver.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/process.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/queues.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/reduction.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/resource_sharer.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/resource_tracker.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/shared_memory.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/sharedctypes.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/spawn.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/synchronize.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/multiprocessing/util.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/netrc.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/nis.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/nntplib.pyi
@@ -2541,9 +2570,27 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/zipimport.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/zlib.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stdlib/zoneinfo/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/numpy_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/numpy_float_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pil_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_float_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_float_gpu_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_gpu_capture_output.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/d3dshot.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/display.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/dll/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/dll/d3d.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/dll/dxgi.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/dll/shcore.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/D3DShot/d3dshot/dll/user32.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/DateTimeRange/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/DateTimeRange/datetimerange/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Deprecated/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/DateTimeRange/datetimerange/__version__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Deprecated/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Deprecated/deprecated/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Deprecated/deprecated/classic.pyi
@@ -2588,7 +2635,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/extensions/toc.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/extensions/wikilinks.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/inlinepatterns.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/pep562.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/postprocessors.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/preprocessors.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Markdown/markdown/serializers.pyi
@@ -2688,6 +2734,8 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Pillow/PIL/_util.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Pillow/PIL/_version.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/Pillow/PIL/features.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyAutoGUI/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyAutoGUI/pyautogui/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/__init__.pyi
@@ -2695,6 +2743,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/connections.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/CLIENT.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/COMMAND.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/CR.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/ER.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/FIELD_TYPE.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/constants/FLAG.pyi
@@ -2705,6 +2754,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/err.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/times.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyMySQL/pymysql/util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyYAML/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyYAML/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyYAML/yaml/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/PyYAML/yaml/_yaml.pyi
@@ -2767,7 +2817,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/connectors/pyodbc.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/cresultproxy.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/databases/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dbapi.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/firebird/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/firebird/base.pyi
@@ -2998,11 +3047,15 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/base.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/os.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/ospath.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/tempfile/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/tempfile/temptypes.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/binary.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/text.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/annoy/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/annoy/annoy/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/annoy/annoy/annoylib.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/appdirs/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/appdirs/appdirs.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/atomicwrites/@tests/stubtest_allowlist.txt
@@ -3064,7 +3117,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/babel/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/babel/_compat.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/babel/core.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/babel/dates.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/babel/babel/languages.pyi
@@ -3090,11 +3142,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports.ssl_match_hostname/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports.ssl_match_hostname/backports/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports.ssl_match_hostname/backports/ssl_match_hostname/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports_abc/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports_abc/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/backports_abc/backports_abc.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/beautifulsoup4/@tests/requirements-stubtest.txt
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/beautifulsoup4/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/beautifulsoup4/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/beautifulsoup4/bs4/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/beautifulsoup4/bs4/builder/__init__.pyi
@@ -3109,10 +3156,10 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/callbacks.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/css_sanitizer.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/html5lib_shim.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/linkifier.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/sanitizer.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/bleach/bleach/utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/boto/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/boto/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/boto/boto/__init__.pyi
@@ -3324,8 +3371,25 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/caldav/caldav/objects.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/certifi/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/certifi/certifi.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/characteristic/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/characteristic/characteristic/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/_cffi_backend.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/api.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/backend_ctypes.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/cffi_opcode.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/commontypes.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/cparser.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/error.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/ffiplatform.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/lock.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/model.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/pkgconfig.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/recompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/setuptools_ext.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/vengine_cpy.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/vengine_gen.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cffi/cffi/verifier.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/chardet/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/chardet/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/chardet/chardet/__init__.pyi
@@ -3348,6 +3412,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/click-spinner/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/click-spinner/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/click-spinner/click_spinner/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/click-spinner/click_spinner/_version.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/colorama/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/colorama/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/colorama/colorama/__init__.pyi
@@ -3376,7 +3441,8 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/contextvars/contextvars.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/croniter/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/croniter/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/croniter/croniter.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/croniter/croniter/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/croniter/croniter/croniter.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/cryptography/__init__.pyi
@@ -3427,9 +3493,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/cryptography/x509/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/cryptography/x509/extensions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/cryptography/cryptography/x509/oid.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dataclasses/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dataclasses/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dataclasses/dataclasses.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dateparser/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dateparser/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dateparser/dateparser/__init__.pyi
@@ -3463,6 +3526,8 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/decorator/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/decorator/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/decorator/decorator.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dj-database-url/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/dj-database-url/dj_database_url.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/docopt/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/docopt/docopt.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/docutils/@tests/stubtest_allowlist.txt
@@ -3509,21 +3574,15 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/docutils/docutils/writers/s5_html.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/docutils/docutils/writers/xetex.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/editdistance/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/editdistance/editdistance.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/editdistance/editdistance/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/editdistance/editdistance/bycython.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/core.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/en.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/es.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/it.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/pt.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/emoji/emoji/unicode_codes/data_dict.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/entrypoints/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/entrypoints/entrypoints.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/enum34/@python2/enum.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/enum34/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/filelock/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/filelock/filelock/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/first/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/first/first.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/flake8-2020/METADATA.toml
@@ -3554,6 +3613,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/actions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/deprecation.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/enums.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/errors.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/fonts.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/fpdf.pyi
@@ -3565,21 +3625,24 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/syntax.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/template.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/transitions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/ttfonts.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/fpdf2/fpdf/util.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/freezegun/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/freezegun/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/freezegun/freezegun/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/freezegun/freezegun/api.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/frozendict/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/frozendict/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/frozendict/frozendict.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/events.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/printing.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/prompt.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/types.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/unwinder.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/gdb/gdb/xmethod.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/hdbcli/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/hdbcli/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/hdbcli/hdbcli/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/hdbcli/hdbcli/dbapi.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/hdbcli/hdbcli/resultrow.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/html5lib/@tests/requirements-stubtest.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/html5lib/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/html5lib/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/html5lib/html5lib/__init__.pyi
@@ -3663,11 +3726,10 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/invoke/invoke/terminals.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/invoke/invoke/util.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/invoke/invoke/watchers.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ipaddress/@python2/ipaddress.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ipaddress/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/ast.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/compat.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/exceptions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/functions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jmespath/jmespath/lexer.pyi
@@ -3678,7 +3740,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_format.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_legacy_validators.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_reflect.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_types.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/_validators.pyi
@@ -3686,6 +3747,14 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/exceptions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/protocols.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/jsonschema/jsonschema/validators.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/_canonical_names.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/_generic.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/_keyboard_event.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/_mouse_event.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/keyboard/keyboard/mouse.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ldap3/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ldap3/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ldap3/ldap3/__init__.pyi
@@ -4148,7 +4217,16 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/paramiko/paramiko/ssh_gss.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/paramiko/paramiko/transport.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/paramiko/paramiko/util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/paramiko/paramiko/win_openssh.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/paramiko/paramiko/win_pageant.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/exceptions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/expressions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/grammar.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/nodes.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/parsimonious/parsimonious/utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/passlib/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/passlib/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/passlib/passlib/__init__.pyi
@@ -4227,6 +4305,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/polib/polib.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/prettytable/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/prettytable/prettytable/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/prettytable/prettytable/colortable.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/prettytable/prettytable/prettytable.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/psutil/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/psutil/METADATA.toml
@@ -4260,6 +4339,8 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyOpenSSL/OpenSSL/SSL.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyOpenSSL/OpenSSL/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyOpenSSL/OpenSSL/crypto.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyOpenSSL/OpenSSL/rand.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyOpenSSL/OpenSSL/version.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyRFC3339/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyRFC3339/pyrfc3339/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyRFC3339/pyrfc3339/generator.pyi
@@ -4280,6 +4361,28 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyflakes/pyflakes/checker.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyflakes/pyflakes/messages.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyflakes/pyflakes/reporter.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/__main__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/building/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/building/build_main.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/building/datastruct.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/compat.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/depend/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/depend/analysis.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/depend/imphookapi.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/isolated/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/isolated/_parent.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/lib/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/modulegraph.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/utils/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/conda.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/win32.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyinstaller/pyi_splash/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pynput/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pynput/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pynput/pynput/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pynput/pynput/_info.pyi
@@ -4312,6 +4415,23 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-gflags/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-gflags/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-gflags/gflags.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/_asn1.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/base.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/cryptography_backend.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/ecdsa_backend.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/native.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/backends/rsa_backend.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/constants.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/exceptions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/jwe.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/jwk.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/jws.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/jwt.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-jose/jose/utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-nmap/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-nmap/nmap/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/python-nmap/nmap/nmap.pyi
@@ -4323,6 +4443,9 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/exceptions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/lazy.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/reference.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/tzfile.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pytz/pytz/tzinfo.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyvmomi/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/pyvmomi/METADATA.toml
@@ -4338,6 +4461,14 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/client.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/connection.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/lock.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/retry.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/sentinel.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/asyncio/utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/backoff.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/client.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/cluster.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/commands/__init__.pyi
@@ -4377,6 +4508,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/ocsp.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/retry.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/sentinel.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/typing.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/redis/redis/utils.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/regex/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/regex/METADATA.toml
@@ -4385,117 +4517,82 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/regex/regex/_regex_core.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/regex/regex/regex.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/@tests/test_cases/check_post.py
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/__version__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/adapters.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/api.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/auth.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/compat.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/cookies.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/exceptions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/help.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/hooks.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/models.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/packages/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/packages.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/sessions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/status_codes.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/structures.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/requests/requests/utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/retry/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/retry/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/retry/retry/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/retry/retry/api.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/common/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/common/exceptions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/android/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/android/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/blackberry/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/blackberry/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/chrome/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/chrome/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/chrome/remote_connection.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/chrome/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/chrome/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/action_chains.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/action_builder.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/input_device.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/interaction.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/key_actions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/key_input.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/mouse_button.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/pointer_actions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/actions/pointer_input.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/alert.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/by.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/desired_capabilities.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/html5/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/html5/application_cache.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/keys.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/proxy.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/touch_actions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/common/utils.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/edge/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/edge/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/edge/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/edge/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/extension_connection.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/firefox_binary.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/firefox_profile.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/remote_connection.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/firefox/webelement.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/ie/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/ie/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/ie/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/ie/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/opera/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/opera/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/opera/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/phantomjs/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/phantomjs/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/phantomjs/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/command.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/errorhandler.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/file_detector.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/mobile.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/remote_connection.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/switch_to.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/utils.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/remote/webelement.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/safari/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/safari/permissions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/safari/remote_connection.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/safari/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/safari/webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/abstract_event_listener.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/color.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/event_firing_webdriver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/events.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/expected_conditions.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/select.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/ui.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/support/wait.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/webkitgtk/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/webkitgtk/options.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/webkitgtk/service.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/selenium/selenium/webdriver/webkitgtk/webdriver.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/pkg_resources/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/pkg_resources/py31compat.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_deprecation_warning.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/archive_util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/bcppcompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/ccompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/cmd.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist_dumb.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist_msi.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist_rpm.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/build.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/build_clib.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/build_ext.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/build_py.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/build_scripts.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/check.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/clean.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/config.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install_data.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install_egg_info.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install_headers.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install_lib.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/install_scripts.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/py37compat.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/register.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/sdist.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/command/upload.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/config.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/core.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/cygwinccompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/debug.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/dep_util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/dir_util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/dist.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/errors.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/extension.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/fancy_getopt.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/file_util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/filelist.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/log.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/msvccompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/spawn.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/sysconfig.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/text_file.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/unixccompiler.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/util.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/_distutils/version.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/archive_util.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/build_meta.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/command/__init__.pyi
@@ -4532,7 +4629,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/glob.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/installer.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/launch.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/lib2to3_ex.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/monkey.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/msvc.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/setuptools/setuptools/namespaces.pyi
@@ -4553,41 +4649,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/singledispatch/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/singledispatch/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/singledispatch/singledispatch.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/BaseHTTPServer.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/CGIHTTPServer.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/SimpleHTTPServer.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/_dummy_thread.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/_thread.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/cPickle.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/collections_abc.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/configparser.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/copyreg.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/email_mime_base.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/email_mime_multipart.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/email_mime_nonmultipart.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/email_mime_text.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/html_entities.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/html_parser.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/http_client.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/http_cookiejar.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/http_cookies.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/queue.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/reprlib.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/socketserver.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/__init__.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/error.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/parse.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/request.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/response.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib/robotparser.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib_error.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib_parse.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib_request.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib_response.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/urllib_robotparser.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@python2/six/moves/xmlrpc_client.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/six/six/__init__.pyi
@@ -4638,6 +4699,11 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/slumber/slumber/exceptions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/slumber/slumber/serialize.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/slumber/slumber/utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stdlib-list/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stdlib-list/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stdlib-list/stdlib_list/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stdlib-list/stdlib_list/_version.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stdlib-list/stdlib_list/base.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/__init__.pyi
@@ -4650,6 +4716,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/deletable_api_resource.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/listable_api_resource.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/nested_resource_class_methods.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/searchable_api_resource.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/singleton_api_resource.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/updateable_api_resource.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/abstract/verify_mixin.pyi
@@ -4704,7 +4771,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/login_link.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/mandate.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/order.pyi
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/order_return.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/payment_intent.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/payment_method.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/payout.pyi
@@ -4726,6 +4792,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/reporting/report_type.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/reversal.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/review.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/search_result_object.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/setup_attempt.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/setup_intent.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/stripe/stripe/api_resources/sigma/__init__.pyi
@@ -4774,6 +4841,48 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/toml/toml/tz.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/toposort/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/toposort/toposort.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/@tests/requirements-stubtest.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_dist_ver.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_main.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_monitor.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_tqdm.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_tqdm_gui.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_tqdm_notebook.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_tqdm_pandas.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/_utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/asyncio.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/auto.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/autonotebook.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/cli.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/bells.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/concurrent.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/discord.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/itertools.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/logging.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/slack.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/telegram.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/contrib/utils_worker.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/dask.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/gui.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/keras.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/notebook.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/rich.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/std.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/tk.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tqdm/tqdm/version.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter-languages/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter-languages/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter-languages/tree_sitter_languages/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter-languages/tree_sitter_languages/core.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter/tree_sitter/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tree-sitter/tree_sitter/binding.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ttkthemes/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ttkthemes/ttkthemes/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ttkthemes/ttkthemes/_imgops.pyi
@@ -4786,8 +4895,11 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/typed-ast/typed_ast/ast27.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/typed-ast/typed_ast/ast3.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/typed-ast/typed_ast/conversions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tzlocal/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tzlocal/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tzlocal/tzlocal/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tzlocal/tzlocal/utils.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/tzlocal/tzlocal/windows_tz.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ujson/METADATA.toml
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/ujson/ujson.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/@tests/stubtest_allowlist.txt
@@ -4797,6 +4909,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/connection.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/connectionpool.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/contrib/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/contrib/socks.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/exceptions.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/fields.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/filepost.pyi
@@ -4808,6 +4921,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/response.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/__init__.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/connection.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/queue.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/request.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/response.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/urllib3/urllib3/util/retry.pyi
@@ -4842,9 +4956,45 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/waitress/waitress/trigger.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/waitress/waitress/utilities.pyi
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/waitress/waitress/wasyncore.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/whatthepatch/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/whatthepatch/apply.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/whatthepatch/exceptions.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/whatthepatch/patch.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/whatthepatch/whatthepatch/snippets.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xmltodict/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xmltodict/xmltodict.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xxhash/@tests/stubtest_allowlist.txt
%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xxhash/METADATA.toml
-%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xxhash/xxhash.pyi
-%%DATADIR%%/plugins/python/helpers/virtualenv.pyz
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xxhash/xxhash/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/xxhash/xxhash/version.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/METADATA.toml
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/__init__.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/adjacency_graphs.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/feedback.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/frequency_lists.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/matching.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/scoring.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/stubs/zxcvbn/zxcvbn/time_estimates.pyi
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/README.md
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/asyncio/check_coroutines.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/asyncio/check_gather.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_dict.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_iteration.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_list.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_object.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_pow.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_sum.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/builtins/check_tuple.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/check_codecs.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/check_contextlib.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/check_logging.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/check_threading.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/check_unittest.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/typing/check_all.py
+%%DATADIR%%/plugins/python/helpers/typeshed/test_cases/stdlib/typing/check_pattern.py
+%%DATADIR%%/plugins/python/helpers/virtualenv-20.13.0.pyz
+%%DATADIR%%/plugins/python/helpers/virtualenv-20.16.7.pyz
%%DATADIR%%/plugins/python/jupyter-web/3rdpartylicenses.txt
%%DATADIR%%/plugins/python/jupyter-web/87.js
%%DATADIR%%/plugins/python/jupyter-web/cancel.png
@@ -4894,7 +5044,10 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/python/jupyter-web/trash_@2X.png
%%DATADIR%%/plugins/python/lib/java-websocket.jar
%%DATADIR%%/plugins/python/lib/python.jar
-%%DATADIR%%/plugins/pythonIDE/lib/python-ide.jar
+%%DATADIR%%/plugins/qml-plugin/lib/qml-plugin.jar
+%%DATADIR%%/plugins/qodana/lib/qodana.jar
+%%DATADIR%%/plugins/qt-plugin/lib/qt-plugin.jar
+%%DATADIR%%/plugins/reStructuredText/lib/reStructuredText.jar
%%DATADIR%%/plugins/remote-dev-server/bin/launcher.sh
%%DATADIR%%/plugins/remote-dev-server/lib/remote-dev-server.jar
%%DATADIR%%/plugins/remote-dev-server/selfcontained/X11/xkb/compat/README
@@ -5191,7 +5344,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libGLX.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libGLdispatch.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libX11-xcb.so.1
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libX11.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libX11.so.6
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libXau.so.6
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libXcomposite.so.1
@@ -5222,14 +5374,11 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libdbus-1.so.3
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libdrm.so.2
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libdw.so.1
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libe2p.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libelf.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libexpat.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libffi.so.6
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfontconfig.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfontenc.so.1
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfreebl3.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfreeblpriv3.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfreetype.so.6
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libfribidi.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libgbm.so.1
@@ -5247,28 +5396,18 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libkrb5support.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/liblz4.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/liblzma.so.5
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libnspr4.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libnss3.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libnssckbi.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libnssdbm3.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libnssutil3.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libpango-1.0.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libpci.so.3
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libpcre.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libpixman-1.so.0
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libplc4.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libplds4.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libpng15.so.15
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libsecret-1.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libsmime3.so
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libsoftokn3.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libsqlite3.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libssl.so.10
-%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libssl3.so
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libstdc++.so.6
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libsystemd.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libthai.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libuuid.so.1
+%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libwayland-client.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libwayland-server.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libxcb-render.so.0
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libxcb-shm.so.0
@@ -5277,24 +5416,36 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libxkbfile.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libxshmfence.so.1
%%DATADIR%%/plugins/remote-dev-server/selfcontained/lib/libz.so.1
-%%DATADIR%%/plugins/remote-run/lib/remote-run.jar
-%%DATADIR%%/plugins/rest/lib/rest.jar
+%%DATADIR%%/plugins/remoteRun/lib/remoteRun.jar
%%DATADIR%%/plugins/restClient/lib/restClient.jar
%%DATADIR%%/plugins/sass/lib/sass.jar
%%DATADIR%%/plugins/searchEverywhereMl/lib/searchEverywhereMl.jar
-%%DATADIR%%/plugins/settings-repository/lib/settings-repository.jar
+%%DATADIR%%/plugins/settingsSync/lib/settingsSync.jar
%%DATADIR%%/plugins/sh/lib/sh.jar
%%DATADIR%%/plugins/space/lib/space-java-jps.jar
%%DATADIR%%/plugins/space/lib/space.jar
-%%DATADIR%%/plugins/stylus/lib/stylus.jar
-%%DATADIR%%/plugins/svn4idea/lib/sqlite.jar
-%%DATADIR%%/plugins/svn4idea/lib/svn4idea.jar
-%%DATADIR%%/plugins/tasks-time-tracking/lib/tasks-time-tracking.jar
+%%DATADIR%%/plugins/styled-components/lib/styled-components.jar
+%%DATADIR%%/plugins/swagger/lib/swagger.jar
+%%DATADIR%%/plugins/tailwindcss/lib/tailwindcss.jar
+%%DATADIR%%/plugins/tailwindcss/server/fsevents-72LCIACT.node
+%%DATADIR%%/plugins/tailwindcss/server/node.napi.glibc-7JUDUCUY.node
+%%DATADIR%%/plugins/tailwindcss/server/node.napi.glibc-GXL6UBYG.node
+%%DATADIR%%/plugins/tailwindcss/server/node.napi.glibc-N3T2EEZH.node
+%%DATADIR%%/plugins/tailwindcss/server/node.napi.glibc-SBC7UY4N.node
+%%DATADIR%%/plugins/tailwindcss/server/node.napi.musl-IAP67VWK.node
+%%DATADIR%%/plugins/tailwindcss/server/tailwindcss-language-server
+%%DATADIR%%/plugins/tasks-timeTracking/lib/tasks-timeTracking.jar
%%DATADIR%%/plugins/tasks/lib/tasks-core.jar
-%%DATADIR%%/plugins/terminal/.zshenv
-%%DATADIR%%/plugins/terminal/fish/config.fish
-%%DATADIR%%/plugins/terminal/jediterm-bash.in
%%DATADIR%%/plugins/terminal/lib/terminal.jar
+%%DATADIR%%/plugins/terminal/pwsh/pwsh.ps1
+%%DATADIR%%/plugins/terminal/shell-integrations/bash/bash-integration.bash
+%%DATADIR%%/plugins/terminal/shell-integrations/bash/command-block-support.bash
+%%DATADIR%%/plugins/terminal/shell-integrations/fish/command-block-support.fish
+%%DATADIR%%/plugins/terminal/shell-integrations/fish/fish-integration.fish
+%%DATADIR%%/plugins/terminal/shell-integrations/powershell/command-block-support.ps1
+%%DATADIR%%/plugins/terminal/shell-integrations/powershell/powershell-integration.ps1
+%%DATADIR%%/plugins/terminal/zsh/.zshenv
+%%DATADIR%%/plugins/terminal/zsh/hooks.zsh
%%DATADIR%%/plugins/textmate/lib/bundles/bat/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/bat/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/language-configuration.json
@@ -5308,6 +5459,11 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json
+%%DATADIR%%/plugins/textmate/lib/bundles/cmake/LICENSE
+%%DATADIR%%/plugins/textmate/lib/bundles/cmake/README.md
+%%DATADIR%%/plugins/textmate/lib/bundles/cmake/package.json
+%%DATADIR%%/plugins/textmate/lib/bundles/cmake/syntaxes/CMake.tmLanguage
+%%DATADIR%%/plugins/textmate/lib/bundles/cmake/syntaxes/CMakeCache.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/language-configuration.json
@@ -5411,6 +5567,7 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/textmate/lib/bundles/html/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.nls.json
+%%DATADIR%%/plugins/textmate/lib/bundles/html/snippets/html.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/.vscodeignore
@@ -5457,7 +5614,6 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/textmate/lib/bundles/julia/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/syntaxes/julia.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/info.plist
-%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage
@@ -5636,6 +5792,23 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/LICENSE
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/README.md
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/language-configuration.json
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/package.json
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/snippets/terraform.json
+%%DATADIR%%/plugins/textmate/lib/bundles/terraform/syntaxes/terraform.tmGrammar.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/LICENSE.md
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/README.md
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/package.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/snippets/snippets.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/extension.js
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/hover/filters.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/hover/functions.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/hover/twig.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/languages/twig.configuration.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/snippets/snippets.json
+%%DATADIR%%/plugins/textmate/lib/bundles/twig/src/syntaxes/twig.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json
@@ -5680,9 +5853,42 @@ share/applications/pycharm-pro.desktop
%%DATADIR%%/plugins/tslint/lib/tslint.jar
%%DATADIR%%/plugins/uml/lib/uml-support.jar
%%DATADIR%%/plugins/vagrant/lib/vagrant.jar
-%%DATADIR%%/plugins/vcs-git-featuresTrainer/lib/vcs-git-featuresTrainer.jar
+%%DATADIR%%/plugins/vcs-git/lib/git4idea-rt.jar
+%%DATADIR%%/plugins/vcs-git/lib/vcs-git.jar
+%%DATADIR%%/plugins/vcs-github/lib/vcs-github.jar
+%%DATADIR%%/plugins/vcs-gitlab/lib/vcs-gitlab.jar
+%%DATADIR%%/plugins/vcs-hg/lib/vcs-hg.jar
+%%DATADIR%%/plugins/vcs-perforce/lib/vcs-perforce.jar
+%%DATADIR%%/plugins/vcs-svn/lib/vcs-svn.jar
+%%DATADIR%%/plugins/vitejs/lib/vitejs.jar
+%%DATADIR%%/plugins/vuejs/lib/vuejs.jar
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/LICENSE
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/decode.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/decode_codepoint.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/encode.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/index.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/maps/decode.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/maps/entities.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/maps/legacy.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/lib/maps/xml.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/package.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/entities/readme.md
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/LICENSE
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/README.md
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/CollectingHandler.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/FeedHandler.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/MultiplexHandler.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/Parser.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/Tokenizer.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/WritableStream.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/lib/index.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/htmlparser2/package.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/ws-typescript-vue-plugin/index.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/ws-typescript-vue-plugin/package.json
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/ws-typescript-vue-plugin/transformVueSfcFile.js
+%%DATADIR%%/plugins/vuejs/vue-service/node_modules/ws-typescript-vue-plugin/vueScriptCache.js
+%%DATADIR%%/plugins/webComponents/lib/webComponents.jar
%%DATADIR%%/plugins/webDeployment/lib/webDeployment.jar
-%%DATADIR%%/plugins/wsl-fs-helper/bin/server
-%%DATADIR%%/plugins/wsl-fs-helper/lib/wsl-fs-helper.jar
+%%DATADIR%%/plugins/webpack/lib/webpack.jar
%%DATADIR%%/plugins/yaml/lib/yaml.jar
%%DATADIR%%/product-info.json